* {
      margin   :   0;
    box-sizing: border-box;
   padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
   overflow-x: hidden;
}

.container {

  max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;}

.main-nav {
               position     :   fixed;
	 top:       0;
	 left: 0;
   right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
   max-width: 1200px;
    margin: 0 auto;
     padding: 0 20px;
  display: flex;
	justify-content: space-between;
		 align-items: center;
}

.nav-brand .brand-logo {
  height: 45px;
  width: auto;
	
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
  text-decoration: none;
   color: #333;
      font-weight: 500;
    transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover
	{

    color: #007bff;


}

.nav-menu a::after {
  content: '';
	position: absolute;
   bottom: -5px;
  left: 0;
   width: 0;
    height: 2px;
    background: #007bff;
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
   width   :     100%;
}

.nav-toggle {
    height: 25px;
       flex-direction: column;
    width: 30px;
   cursor: pointer;
   justify-content:space-between;
    display: none;
}

.nav-toggle span {
    height:   3px;
  background: #333;
    transform-origin: center;
   transition: all 0.3s ease;
  width: 100%;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);}

.nav-toggle.active span:nth-child(2) {
   opacity: 0;
}

.nav-toggle.active span:nth-child(3)

{
  transform: rotate(-45deg) translate(8px, -8px); 

}


.hero-section {
    margin-top: 80px;
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}  

.hero-content {
          max-width: 1200px;
        margin: 0 auto;
    padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items    :       center;
}

.hero-text h1 {
  font-size: 3.2rem;
   font-weight: 700;
   margin-bottom: 20px;
	line-height: 1.2;
}



.hero-text p {
  font-size: 1.2rem;
   margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
   gap: 20px;
   flex-wrap: wrap;
}

.btn    {
   padding    :     15px 30px;

	   text-decoration: none;

	   border-radius   :       50px;

	   font-weight: 600;

	    transition: all 0.3s ease;

	  display: inline-block;

	   text-align: center;

	   border: none;

	  cursor: pointer;

	    font-size: 16px;
}

.btn-primary {
     background: #ff6b6b;
    color: white;
}


.btn-primary:hover {


  background: #ee5a52;
  transform: translateY(-2px);


}

.btn-secondary {
	 background: transparent;
	 color: white;
   border: 2px solid white;
}

.btn-secondary:hover {
    color: #667eea;
     background: white;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-full {
	 width: 100%;
}

.hero-image img {
   width: 100%;
   border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.features-section {
    padding    : 100px 0;
   background: #f8f9fa;
}

.features-section h2 {
    text-align: center;
   font-size: 2.5rem;
         margin-bottom: 60px;
    color: #2c3e50; 
	
}

.features-grid {
          display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
   	background: white;
	border-radius: 15px;
	padding: 30px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;


}

.feature-card:hover {

	  transform: translateY(-10px);
}

.feature-image img {
   width: 100%;
  height: 200px;
  object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-card h3 
 {
   font-size: 1.5rem;
   margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p{
   color: #666;
   line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
       text-align: center;
}

.cta-content h2 {


  margin-bottom: 20px;
   font-size: 2.5rem;
     }

.cta-content p {

	    font-size: 1.2rem;
    margin-bottom   :        30px;
    opacity: 0.9;}

.process-section {
    padding : 100px 0;
    background: white;
}

.process-section h2 {
    text-align: center;
         font-size: 2.5rem;
  margin-bottom: 60px;
     color :      #2c3e50;
}

.process-steps {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap     :    40px;


}

.step {
    text-align: center;
   padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
  background: #007bff;
   color   :     white;
  border-radius: 50%;
  display    :        flex;
 align-items: center;
	justify-content: center;
  font-size: 1.5rem;
    font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {

   font-size: 1.3rem;
   margin-bottom: 15px;
   color:     #2c3e50;
}

.step p {
  color: #666;
    line-height: 1.6;
}

.testimonials-section {
  padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
     text-align: center;
     font-size: 2.5rem;
  margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;}

.testimonial {
   background   :     white;
   padding: 30px;
          border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
   color   :    #007bff;
    position: absolute;
  top    :        -10px;
	 left: 20px;
}

.testimonial p

{
  font-style:italic;
   margin-bottom: 20px;
   color: #555;
  line-height: 1.6;
}

.testimonial cite     {
	   font-weight: bold;
   color: #007bff;
}

.stats-section     {
   background: #2c3e50; 
   color: white; 
    padding: 80px 0;


}

.stats-grid  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap  :   40px;
    text-align: center;
}

.stat-number {
      font-size: 3rem;
   font-weight: bold;
	 color: #ff6b6b;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity    :    0.9;
}

.contact-section {
   padding: 100px 0;
    background:    white;

}

.contact-section h2 {
   text-align: center;
   font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.contact-content {
   display: grid;
    grid-template-columns: 1fr 2fr;
   gap   :    60px;
  align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
  margin-bottom: 30px;
     color: #2c3e50;
}

.contact-item {
   margin-bottom: 25px;
}

.contact-item strong {
	color :  #007bff;
   display: block;
   margin-bottom: 5px; 

}

.contact-form-wrapper {
   background: #f8f9fa;
    padding: 40px;
	 border-radius: 15px;
}

.form-group {


	 margin-bottom: 25px;
     }

.form-group label {
    display: block;
    margin-bottom: 8px;
      font-weight: 600;
       color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width  : 100%;
  padding: 12px 15px;
    border: 2px solid #e9ecef;
  border-radius  :      8px;
    font-size: 16px;
   transition    :  border-color 0.3s ease;
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
   border-color: #007bff; 

}


.form-group textarea {
   resize    : vertical;
     min-height: 120px;
}

.main-footer {
  background: #2c3e50;
   color: white;
   padding: 60px 0 20px;
}

.footer-content {
	   max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;}

.footer-section h4 {
  font-size: 1.2rem;
               margin-bottom: 20px;
  color: #ff6b6b;
}

.footer-section ul {
	   list-style: none;
	}

.footer-section ul li

{
   margin-bottom: 10px;
}

.footer-section ul li a {
    transition: color 0.3s ease;
		text-decoration :    none;
	  color: #bdc3c7;
}

.footer-section ul li a:hover{
  color: white;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-section p {
	     color: #bdc3c7;
   line-height: 1.6;
	}

.footer-bottom {


  border-top: 1px solid #34495e;
   margin-top: 40px;
  padding-top: 20px;
   text-align  :    center;
   color: #bdc3c7;
     }@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }
}.nav-menu a.active {
        color: #007bff;
	}

.nav-menu a.active::after {
                    width: 100%;
}

.page-header {
  margin-top: 80px;
   padding: 60px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
  text-align     :     center;
}

.header-content h1 {
	font-size: 2.8rem;
  font-weight: 700;
  margin-bottom    :   15px;
}

.header-content p {
    font-size: 1.2rem;
	opacity: 0.9;
  max-width: 600px;
  margin   : 0 auto;
}

.story-section {

	       padding :    80px 0;
    background: white;


}

.story-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}  

.story-text h2 {
   font-size: 2.2rem;
   margin-bottom: 25px;
   color : #2c3e50;
}

.story-text p	{
   margin-bottom:       20px;
   line-height: 1.7;
   color: #555;
   font-size    :16px;
}

.story-image img {
    width: 100%;
	 border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-section {
   padding: 80px 0;
	  background    :       #f8f9fa;
}

.mission-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mission-item {
  background: white;
   	padding: 40px 30px;
   	border-radius: 15px;
     box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      text-align: center;
}

.mission-item h3 {
       font-size: 1.5rem;
  margin-bottom: 20px;
       color: #007bff;
}

.mission-item p {
	line-height: 1.6;
  color: #666;
}

.team-section 
 {
    padding    :  80px 0;
   background: white;
}


.team-section h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 60px;
    color : #2c3e50;
}

.team-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-member {
  background : #f8f9fa;
   padding: 30px;
  border-radius: 15px;
    transition: transform 0.3s ease;


}

.team-member:hover {
  transform: translateY(-5px);
}

.member-info h3 {
   font-size: 1.4rem;
    margin-bottom     :  8px;
   color: #2c3e50;
}

.member-role {
   color    :        #007bff;
   font-weight: 600;
   margin-bottom: 15px;
   font-size: 14px;
	
}

.member-description  {
    line-height: 1.6; 
	color: #666; 
    margin-bottom: 20px;
}

.member-credentials {
     gap: 10px;
    flex-wrap: wrap;
   display: flex;
}

.member-credentials span {
      background: #007bff;
  color: white;
         padding: 4px 12px;
  border-radius: 20px;
    font-size: 12px;
   font-weight: 500;
}

.approach-section {
         background: #f8f9fa;
     padding: 80px 0;
}

.approach-content {
	display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
}

.approach-image img {
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.approach-text h2 {
	 font-size   :     2.2rem;
    margin-bottom: 25px;
   color: #2c3e50;
}

.approach-text > p	{
    margin-bottom: 30px;
	    line-height: 1.7;
	  color: #555;
}

.approach-features  
  {
    display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-point h4		{
    font-size: 1.1rem;
  margin-bottom: 8px;
    color: #007bff;
}


.feature-point p {
  color: #666;
   line-height     :     1.6;
      font-size: 14px;
}

.achievements-section {
  padding: 80px 0;
    background: white; 
	
}

.achievements-section h2 {
  text-align: center;
   font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2c3e50;
}

.achievements-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
}

.achievement-item {
    text-align: center;
   padding  :     30px 20px;
}

.achievement-icon {
   margin-bottom: 20px;
}

.icon-circle {
          width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
     color: white;
    border-radius: 50%;
   display: flex;
	align-items: center;
  justify-content: center;
   font-size: 1.5rem;
     font-weight: bold;
    margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0,123,255,0.3);
}

.achievement-item h3 {
  font-size: 1.3rem;
   margin-bottom: 15px;
    color: #2c3e50; 

}

.achievement-item p     {
    color: #666;
  line-height: 1.6;

} 

.why-choose-section {
   padding: 80px 0;
  background   : #2c3e50;
    color: white;
}

.why-choose-section h2 {

  text-align: center;
  font-size: 2.5rem;
    margin-bottom     :  60px;
}

.why-choose-grid {
    display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap : 30px; 



}

.reason-card {
  background: rgba(255,255,255,0.1);
   padding: 30px 25px;
  border-radius: 10px;
    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);

}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
   color: #ff6b6b;
}

.reason-card p {
  line-height  :     1.6;
   opacity: 0.9;
}

.cta-about {
    padding: 80px 0;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    text-align: center;
}

.cta-about .cta-content h2 {
   font-size:2.5rem;
    margin-bottom: 20px;
}

.cta-about .cta-content p {
   font-size :  1.2rem;
    margin-bottom   :30px;
    opacity: 0.9;
	 max-width: 600px;
    margin-left: auto;
   margin-right: auto;
}

.thankyou-section {
    margin-top: 80px;
    padding   :       80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
    min-height: 70vh;
	 display: flex;
  align-items: center;
}

.thankyou-section .container {
  display: grid;
   grid-template-columns    :      2fr 1fr;
  gap: 60px;
   align-items:       center;
	
}

.thankyou-content {
    text-align: center;
}

.success-icon {
                    margin-bottom :      30px;
}

.checkmark-circle
{
  width: 80px;
	height :    80px;
	background: #28a745;
    border-radius: 50%;
  display: flex;
   align-items: center;
          justify-content: center;
   margin: 0 auto;
  animation: scaleIn 0.5s ease-out;
}

.checkmark 
 {
  width: 25px;
   height: 15px;
    border: 3px solid white;
   border-top: none;
   border-right: none;
  transform: rotate(-45deg);
     animation: checkmarkDraw 0.5s ease-out 0.3s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { transform: rotate(-45deg) scale(0); }
    100% { transform: rotate(-45deg) scale(1); }
}.thankyou-content h1 {
	  font-size: 2.8rem;
   margin-bottom: 15px;
   font-weight: 700;

}

.thankyou-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
    margin-bottom: 40px;
}  

.thankyou-message {
  background: rgba(255,255,255,0.1);
    padding: 40px;
  border-radius     :  15px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
   text-align   :   left;
}

.thankyou-message h2 {
	 font-size:      1.8rem;
   margin-bottom: 30px;
  text-align : center;
}

.next-steps {
	 flex-direction: column;
  display: flex;
   gap: 25px;
}

.step-item {
   display:       flex;
   gap: 20px;
   align-items: flex-start;
}

.step-number {
               width: 35px;
   height: 35px;
        background: #ff6b6b;
   color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content: center;
    font-weight: bold;
   flex-shrink: 0;


}

.step-content h3 {
	    font-size: 1.1rem;
	 margin-bottom:  8px;
	}

.step-content p {
    opacity: 0.9;
    line-height: 1.5;
  font-size: 14px;
}

.additional-info {
  background: rgba(255,255,255,0.1);
   padding: 25px;
    border-radius: 10px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
	}

.additional-info h3 {
  font-size: 1.3rem;
	margin-bottom: 15px;
}

.additional-info p {
   opacity: 0.9;
  line-height: 1.6;
}

.thankyou-actions {
        display: flex;
    gap: 20px;
    justify-content     :        center;
    flex-wrap     :       wrap;
}

.thankyou-image img {
    width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
	
} 

.contact-info-section {
    padding: 60px 0;
               background: #f8f9fa;
}

.contact-cards {
       display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
	}

.contact-card {
    background    :      white;

	   padding: 30px;

	    border-radius: 15px;

	    text-align: center;

	  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 1.2rem;
   margin-bottom: 15px;
          color: #007bff;
}

.contact-card p {
    margin-bottom: 10px;
   font-weight: 600;
	 color: #2c3e50;
}

.contact-card span {
   color: #666;
   font-size :      14px;
}

.testimonial-single {
   padding  :       60px 0;
	 background: white;
}

.testimonial-content  
  {
   margin   :     0 auto;
	text-align    :       center;
  max-width: 800px;
}

.testimonial-content blockquote {


  font-size: 1.3rem; 
		 font-style : italic; 
	    line-height: 1.6; 
	   margin-bottom: 25px; 
	  color: #2c3e50; 
	  position: relative; 
	   padding: 0 30px;

}

.testimonial-content blockquote::before {
  content: '"';
     font-size: 4rem;
  color   :      #007bff;
  position: absolute;
   top: -20px;
   left: -10px;
}

.testimonial-content cite {
   font-weight: 600;
  color: #007bff;
   font-size: 1.1rem;
}@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-message {
        padding: 25px;
    }
    
    .next-steps {
        gap: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .story-text h2,
    .approach-text h2 {
        font-size: 1.8rem;
    }
}.policy{
  margin-top: 5%;
}