*{

          margin: 0;
          padding: 0;
     box-sizing: border-box;
     }

body {
  font-family: 'Arial', sans-serif;
	line-height: 1.6;
   color: #333;
  background-color: #f8f9fa;
}

.container {
          max-width: 1200px;
    margin     :0 auto;
   padding: 0 20px;
}

.navbar {
               position: fixed;
	 top: 0;
  left: 0;
   width     :   100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);}

.nav-container


{
   max-width: 1200px;
   margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
    padding: 15px 20px;
}

.nav-logo .logo-img   {
   height    :     45px;
  width: auto;
}

.nav-menu {
   display: flex;
  gap     :   2rem;
}

.nav-link {
  color: white;
	 text-decoration: none;
   font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {


  color: #ffd700;


}

.nav-link::after {
  content: '';
  position   :  absolute;
    width  :     0;
		 height  :    2px;
  bottom: -5px;
   left: 0;
  background-color: #ffd700;
    transition  :       width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width:       100%;
} 

.nav-burger {
    display     :        none;
    flex-direction: column;
  cursor: pointer;
}

.burger-line {
	    width :        25px;
 height:  3px;
    background-color: white;
   margin: 3px 0;
   transition: 0.3s;

}

.hero-section {
        padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :   white;
  min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}



.hero-title {
    font-size: 3.2rem; 
	                    font-weight: bold; 
	    margin-bottom: 1.5rem; 
	   line-height: 1.2;


}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity    :   0.9;
}  

.hero-buttons {
	 display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.btn-primary,
.btn-secondary  {
  padding :15px 30px;
	border: none;
  border-radius: 50px;
  text-decoration: none;
        font-weight: 600;
   transition: all 0.3s ease;
  display  :    inline-block;
   cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color:white;
  box-shadow: 0 8px 25px rgba(255,107,107,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,107,107,0.4);

}

.btn-secondary {
    background: transparent;
    color: white;
    border    :  2px solid white;
}

.btn-secondary:hover {


   background: white;
    color: #667eea;


}

.hero-image img {
    width    :        100%;
    height: auto;
	 border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-preview {
  padding: 80px 0;
       background: white;
}

.about-preview h2 
 {
    font-size:        2.5rem; 
   margin-bottom: 3rem; 
          text-align: center; 
   color: #333;
}

.about-grid {
 display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	  gap: 2rem; 
	   margin-top: 3rem;
}

.about-item {
    text-align     :     center;
	padding: 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(240,147,251,0.3);
}

.about-item h3 {
  font-size: 1.5rem;

    margin-bottom: 1rem;
}

.services-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.section-title {
	text-align: center;
   font-size   :2.5rem;
    margin-bottom: 3rem;
  color: #333;
}

.services-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 20px;
    padding: 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-card img		{
    width: 100%;
   height: 200px;
	object-fit: cover;
   border-radius   :        15px;
   margin-bottom :     1.5rem;
}

.service-card h3 {
       margin-bottom: 1rem;
  color: #333;
    font-size     :  1.5rem;
	}

.service-card p {
  margin-bottom: 1.5rem;
    color: #666;


}  

.service-features {
		display: flex;
   flex-direction: column;
    gap: 0.5rem;
	}

.service-features span {
  background: linear-gradient(45deg, #667eea, #764ba2);
    color     : white;
    padding:        5px 15px;
    border-radius: 20px;
  font-size: 0.9rem;
  text-align   :       center;
}

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color   :   white;
    text-align: center;
}

.cta-content h2 {


  font-size: 2.5rem;
  margin-bottom: 1.5rem;


}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom     : 3rem;
  opacity: 0.9;
}

.cta-stats
	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
  margin-bottom: 3rem; 
	


}

.stat-item h3

{
	font-size: 3rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-item p {
   font-size     :  1rem;
   opacity: 0.9;
}

.btn-primary.large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.contact-section {
    padding: 80px 0;
   background: white;
}

.contact-wrapper {

	   display: grid;
		 grid-template-columns: 1fr 1fr;
	   gap: 4rem;
	         align-items: start;

}

.contact-info h2 {
	    font-size: 2.5rem;
   margin-bottom: 1.5rem;
   color: #333;
}

.contact-info p    {
   margin-bottom: 2rem;
    color: #666;
   font-size: 1.1rem;
}

.contact-details {
    display   :  flex;
    flex-direction: column;
	gap: 1.5rem;
}

.contact-item h3 {
   color: #667eea;
  margin-bottom  :       0.5rem; 
	
}

.contact-item a {
	 color: #333;
    text-decoration     :  none;
}

.contact-item a:hover {
                    color     : #667eea;
	
}

.contact-form {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   padding: 2.5rem;
               border-radius :20px;
  box-shadow: 0 20px 50px rgba(240,147,251,0.3);
}

.contact-form h3 {
    color: white;
  margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
   margin-bottom: 1.5rem;
	
}

.form-group input,
.form-group select,
.form-group textarea 
 {
    width: 100%;
    padding: 15px;
       border: none;
	border-radius: 10px;
   font-size: 1rem;
  background: rgba(255,255,255,0.9);
    transition: background 0.3s ease;
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    background: white;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
} 

.form-group textarea {
    resize    : vertical;
	 min-height:        120px;
}

.footer {
   background: #2c3e50;
  padding: 50px 0 20px;
  color: white;
}

.footer-content {
  display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
    margin-bottom :       2rem;
}

.footer-brand .footer-logo {
   height: 50px;
  width: auto;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {

	opacity: 0.8;
    line-height    : 1.6;}

.footer-links h4,
.footer-contact h4 {
	margin-bottom: 1rem;
   color    :    #ffd700;
}

.footer-links ul {
	list-style: none;}

.footer-links ul li {


   margin-bottom: 0.5rem;
	}

.footer-links ul li a,
.footer-contact a {
   color: white;
   text-decoration: none;
	opacity: 0.8;
               transition: opacity 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact a:hover {
   opacity: 1;
   color     :   #ffd700;
}

.footer-bottom


{
   border-top: 1px solid #34495e;
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;


}@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-burger {
        display: flex;
    }

    .nav-burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-stats {
        grid-template-columns: 1fr;
    }

    .section-title,
    .about-preview h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .service-card,
    .about-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
   padding: 120px 0 60px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color    :      white;
     text-align: center;
}

.about-hero-title {


   font-size: 3rem;
   font-weight  :     bold;
  margin-bottom:    1.5rem;
       line-height: 1.2;}

.about-hero-description {
  font-size:   1.2rem;
   max-width: 800px;
   margin: 0 auto;
	 opacity: 0.9;
}

.our-story {
  background: white;
    padding: 80px 0;

}

.story-content {
  display: grid;
        align-items: center;
    grid-template-columns: 1fr 1fr;
  gap    :       4rem;
}

.story-text h2 {
  margin-bottom: 2rem;
      color: #333;
           font-size: 2.5rem;
}

.story-text p {
   font-size   :  1.1rem;
	 line-height: 1.8;
    margin-bottom: 1.5rem;
   color: #666;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
	margin-top: 2rem;
}

.highlight-item  {
   text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
 color: white;
   border-radius: 15px;
}

.highlight-item h3{
	font-size: 2rem;
  margin-bottom: 0.5rem; 
	
}

.story-image img {

	         width: 100%;

        height: auto;

	border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.15);


}

.our-approach {


                    padding: 80px 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
     }

.approach-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.approach-card {
         background: white; 
   padding: 2.5rem; 
   border-radius: 20px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
  transition: transform 0.3s ease;


}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-card h3 {
   font-size: 1.5rem;
  margin-bottom: 1rem;
   color: #333;
}

.approach-card p {
     line-height: 1.7;
    color: #666;


}

.team-section {
   padding: 80px 0;
    background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.team-member {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 20px;
    padding: 2rem;
    color: white;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.team-member img {

	    width  : 100%;
    height    :     250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.member-info h3 {
  font-size: 1.8rem; 
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 1rem;
   color: #ffd700;
}

.member-description {

	   line-height: 1.6;
	opacity: 0.9;


}

.values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.values-content {
	max-width: 900px;
    margin: 0 auto;
}

.value-item {
   margin-bottom: 2.5rem;
     background: rgba(255,255,255,0.9);
       padding    :   2rem;
       border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-item h3 {
  font-size: 1.5rem;
    margin-bottom    :        1rem;
    color: #333;
}

.value-item p {
   color: #666;

	   line-height:       1.7;
}

.mission-section {


   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color :   white;
    text-align  :     center;


}

.mission-content h2 {
	                    font-size: 2.5rem;
    margin-bottom:  2rem;
     }

.mission-text {
  font-size: 1.2rem;
  max-width: 800px;
    margin: 0 auto 3rem;
  line-height: 1.8;


} 

.mission-stats {
    display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
    margin-bottom: 3rem;
}

.mission-stat h3 {
               font-size: 2.5rem;
    color: #ffd700;
  margin-bottom: 0.5rem;
}

.mission-stat p {

  opacity: 0.9;
     }

.thankyou-hero		{
    padding: 120px 0 80px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: white; 
	  min-height: 80vh; 
	   display: flex; 
	 align-items: center;
}

.thankyou-content {
	   display  :       grid;
	 grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;


}

.thankyou-message
	{
   text-align: center;
}

.success-icon {
  margin-bottom: 2rem;

}

.checkmark {
  width: 80px;
   height: 80px;
   border-radius: 50%;
   display: block;
   stroke-width: 4;
		stroke: #4caf50;
   stroke-miterlimit:   10;
        margin: 0 auto;
    box-shadow: inset 0px 0px 0px #4caf50;
    animation    :fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
          position: relative;
}

.checkmark-circle {

	  stroke-dasharray: 166;
    stroke-dashoffset: 166;
  stroke-width: 4;
   stroke-miterlimit: 10;
	 stroke: #4caf50;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
         width: 80px;
    height: 80px;
    border-radius   :   50%;
   position     : absolute;
         top: 0;
    left: 0;
 border: 4px solid #4caf50;
}

.checkmark-stem {
  position   :    absolute;
   width : 20px;
  height: 4px;
  background-color: #4caf50;
   left: 22px;
  top: 40px;
  transform: rotate(45deg);
    animation    :     stem-grow 0.3s ease-in-out 0.6s both;
   transform-origin: left;
}

.checkmark-kick {
  position: absolute;
    width: 12px;
  height   :4px;
    background-color: #4caf50;
    left: 30px;
  top: 48px;
  transform: rotate(-45deg);
  animation: kick-grow 0.3s ease-in-out 0.8s both;
	 transform-origin: left;
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 60px #4caf50;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes stem-grow {
    0% {
        transform: scale(0) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(45deg);
    }
}

@keyframes kick-grow {
    0% {
        transform: scale(0) rotate(-45deg);
    }
    100% {
        transform: scale(1) rotate(-45deg);
    }
}.thankyou-title {
    font-size: 3rem; 
  margin-bottom: 1.5rem;
}

.thankyou-description {
   font-size : 1.2rem;

  line-height: 1.7;

       opacity: 0.9;
}

.thankyou-image img {
    width: 100%;
      height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.next-steps {
     padding: 80px 0;
    background    :white;
     }


.steps-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :2rem;
}

.step-item     {
    text-align    :center;
  padding: 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
 color: white;
   border-radius: 20px;
  box-shadow: 0 15px 40px rgba(240,147,251,0.3);
}  

.step-number {

	    width: 60px;
	height: 60px;
  background: rgba(255,255,255,0.2);
	 border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
  font-size: 1.5rem;
   font-weight: bold;
	margin: 0 auto 1.5rem;
  border: 3px solid rgba(255,255,255,0.3);}

.step-item h3 {


    font-size   :1.3rem;
  margin-bottom: 1rem;
	}

.step-item p {
  opacity: 0.9;
   line-height: 1.6;
}

.while-waiting  
  {
    padding: 80px 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.waiting-intro    {

	   text-align  : center;
    font-size: 1.2rem;
   margin-bottom: 3rem;
   color: #333;
	}

.waiting-grid   {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 2rem;
}

.waiting-item {
    background  :   white;
  padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.waiting-item h3 {
     font-size: 1.4rem;

	   margin-bottom  :       1rem;

	  color: #333;
}

.waiting-item p {
   color: #666;
  line-height: 1.6;
}

.testimonial-preview {
       padding: 80px 0;
   background: white;
	}

.testimonials-grid {

               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
  border-radius: 20px;
  color: white;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);

}

.testimonial-content p

{
    font-style: italic;
  line-height: 1.7;
      margin-bottom: 1.5rem;
    opacity: 0.9;
}

.testimonial-author h4 {
	font-size: 1.2rem;
    margin-bottom     :  0.5rem;
}  

.testimonial-author span    {
    opacity    :   0.8;
  color: #ffd700;
}

.thankyou-cta {
   padding: 60px 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
   text-align: center;
}

.thankyou-cta h2 {

    font-size: 2.2rem;
   margin-bottom: 1rem;
 color: #333;

}

.thankyou-cta p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    color: #666;
}

.cta-contact-info {

	  margin-bottom: 2rem;



}

.cta-contact-info .contact-item {
  display: inline-block;
  background: rgba(255,255,255,0.9);
          padding: 1rem 2rem;
   border-radius: 10px;
                    margin: 0 1rem;
}

.cta-contact-info h3 {
   color: #333;
    margin-bottom: 0.5rem;
}

.cta-contact-info a		{
  color: #667eea;
  text-decoration: none;
   font-weight: bold;
}@media screen and (max-width: 768px) {
    .about-hero-title,
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .story-content,
    .thankyou-content {
        grid-template-columns: 1fr;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .about-hero-description,
    .thankyou-description,
    .mission-text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-title,
    .thankyou-title {
        font-size: 1.8rem;
    }
    
    .approach-card,
    .team-member,
    .value-item,
    .step-item,
    .waiting-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
}.policySection {
   padding     :80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
   text-align: left;
       margin: 0 auto;
   max-width: 800px;
}

.policyContainer h2 {
    font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
         font-weight: 700;
}

.policyContainer p {
       font-size: 1.1rem;
   line-height: 1.7;
   margin-bottom: 1.5rem;
    color: #7f8c8d;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}