*{
  margin: 0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #333;
   background-color: #fff;
}

.container {

    max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;}

.main-navigation  {
   position: fixed;
	top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);


}

.nav-container {
  max-width: 1200px;
  margin  :  0 auto;
   padding: 1rem 2rem;
   display   :       flex;
   justify-content: space-between;
  align-items: center;}



.brand-logo {
	 height: 45px;
    width: auto;
}

.desktop-nav {
    display: flex;

	   gap: 2rem;
}

.nav-item {
    text-decoration: none;
   color: #333;
          font-weight: 500;
    -webkit-transition: color 0.3s ease;
    transition  :     color 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color    :  #8B4513;
}

.nav-item.active::after{
  content: '';
  position: absolute;
  bottom     :-5px;
    left: 0;
	 width: 100%;
  height: 2px;
    background  : #8B4513;


}

.mobile-toggle {
   display: none;

  flex-direction: column;

  cursor: pointer;

  gap: 4px;
}

.burger-line {
    width: 25px;
    height: 3px;
  background: #333;
      transition: 0.3s;
}

.mobile-nav {
          display: none; 
	    background: white; 
	   padding: 1rem 2rem; 
	  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}



.mobile-nav-item {
	                    display: block;
    text-decoration: none;
  color: #333;
  padding: 0.5rem 0;
   border-bottom: 1px solid #eee;
}

.hero-section {
   margin-top: 80px;
    padding: 4rem 0;
  background: linear-gradient(135deg, #f8f5f1 0%, #e8ddd4 100%);
}

.hero-content {
    align-items: center;
  margin: 0 auto;
    padding: 0 2rem;
   gap: 3rem;
  max-width: 1200px;
	display: grid;
  grid-template-columns    : 1fr 1fr;
}

.hero-text h1 {


    font-size: 3rem;
    font-weight   :        700;
        color    :   #2c1810;
    margin-bottom: 1.5rem;
   line-height: 1.2;
	} 

.hero-text p {
  font-size: 1.1rem;
    color: #5a4a3a;
  margin-bottom: 2rem;
}

.hero-buttons {
    display: flex; 
		gap: 1rem;
}

.cta-primary, .cta-secondary

{
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
   font-weight: 600;
   transition: all 0.3s ease;
}

.cta-primary {
				 background: #8B4513;
   color: white;
}

.cta-primary:hover {
	  background: #6b3410;
  transform: translateY(-2px);
	}

.cta-secondary {
    background   :       transparent;
    color: #8B4513;
   border: 2px solid #8B4513;


}

.cta-secondary:hover {
   background  :        #8B4513;
  color: white;
}

.hero-image img {
   width :      100%;
    height :       auto;
    border-radius   :        15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.introduction-section {
   padding: 5rem 0;
                    background : white;
}

.intro-content h2 {
   font-size: 2.5rem;
     text-align : center;
  color: #2c1810;
     margin-bottom    :2rem;
}


.intro-content > p {
  font-size: 1.1rem;
        text-align  :  center;
   max-width: 800px;
  margin: 0 auto 3rem;
  color: #5a4a3a;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
  margin-top:       3rem;
}

.feature-item {

	    text-align: center;
    padding     :2rem;
    border-radius: 10px;
    background: #f8f5f1;

}

.feature-item h3 {

   font-size   :   1.5rem;
  color: #2c1810;
  margin-bottom: 1rem; 
	

}

.feature-item p {
   color: #5a4a3a;


}

.services-section {

	    padding: 5rem 0;
  background: linear-gradient(135deg, #f0ede8 0%, #e0d5c7 100%);
	}

.section-title
{
    font-size:    2.5rem; 
                    text-align: center; 
               color   :      #2c1810; 
  margin-bottom: 3rem;
}

.services-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
					gap : 2rem;
}

.service-card {
   background   : white; 
  border-radius    :   15px; 
   overflow: hidden; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
	 transition: transform 0.3s ease;
     }


.service-card:hover


{
  transform: translateY(-5px);
}

.service-image img {
  width: 100%;
    height: 200px;
   object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
   font-size: 1.5rem;
    color: #2c1810;
         margin-bottom: 1rem;

}

.service-content p {
  color: #5a4a3a;
   margin-bottom: 1.5rem;
}



.service-content ul {


   list-style: none;
     }

.service-content li{
  padding: 0.25rem 0;
    color: #666;
    position   :    relative;
	padding-left: 20px;
}

.service-content li::before {
  content: '•';
   color: #8B4513;
    font-weight: bold;
  position: absolute;
  left: 0; 
	
}

.cta-section {
   padding: 4rem 0;
   background: #2c1810;
   text-align: center;
}

.cta-content h2 {
   color: white;
        font-size: 2.5rem;
   margin-bottom: 1rem;
}  

.cta-content p {
	 max-width: 600px;
	color:  #d4c4b0;
   font-size: 1.1rem;
    margin: 0 auto 2rem;
}

.cta-primary.large {
          font-size: 1.1rem;
   padding: 1rem 2rem;
}

.testimonials-section {
       padding: 5rem 0;
   background: white;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}



.testimonial-card {
    background: #f8f5f1;
   padding: 2rem;
	border-radius: 15px;
   border-left: 4px solid #8B4513;
}

.testimonial-card p {
	font-style: italic;
	color: #5a4a3a;
    margin-bottom: 1.5rem;
}

.testimonial-author strong  
  {
   color: #2c1810;
   display: block;
	
}

.testimonial-author span {
	 color: #8B4513;
          font-size :    0.9rem;
}

.contact-section {
   padding: 5rem 0;
  background: linear-gradient(135deg, #e8ddd4 0%, #d4c4b0 100%);
}

.contact-content {

    display:   grid;
    grid-template-columns: 1fr 1fr;
	gap :       3rem;
  align-items: start;
}

.contact-info h2 {
   font-size: 2.5rem;
  color: #2c1810;
  margin-bottom: 1.5rem;
}

.contact-info p {
    color: #5a4a3a;
  margin-bottom     :    2rem;
}

.contact-details  
  {
    gap: 1.5rem;
   flex-direction: column;
    display :flex;
}

.contact-item h4 {
   color: #2c1810;
			margin-bottom: 0.5rem;
}

.contact-item p   {
    color: #5a4a3a;
}

.contact-form-wrapper {
   background: white;
	 padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group    {
  position: relative;
  margin-bottom: 1.5rem;

}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%; 
	    padding: 1rem; 
	    border: 2px solid #e0d5c7; 
	  border-radius: 8px; 
	    font-size: 1rem; 
	   transition   :     border-color 0.3s ease; 
	  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

	  outline: none;
    border-color: #8B4513;
     }

.form-group label {
    position: absolute;
	top: -0.5rem;
    left: 1rem;
	background: white;
	 padding: 0 0.5rem;
        color: #8B4513;
   font-size: 0.9rem;
    font-weight: 500;
}

.form-group textarea {
	height: 120px;
    resize: vertical;

}

.form-submit {
	width: 100%;
  padding: 1rem;
   background: #8B4513;
        color: white;
    border :       none;
   border-radius: 8px;
  font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
	 transition: background 0.3s ease;
} 

.form-submit:hover {
   background:#6b3410;
}

.main-footer {
    background: #2c1810;
  color: white;
    padding  :  3rem 0 1rem;


}

.footer-content {
   max-width: 1200px;
	margin: 0 auto;
  padding: 0 2rem;
   display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem; 

}

.footer-logo{
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
   color: #d4c4b0;
                       margin-bottom: 1rem;
}

.footer-section p {

	  color: #a0927d;
    line-height: 1.6;
     }

.footer-links {
   list-style: none;

}

.footer-links li {
	   margin-bottom: 0.5rem;
     }

.footer-links a {
   color: #a0927d;

	    text-decoration: none;

	  transition:color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
  margin-bottom: 0.5rem;
   color: #a0927d;
}  

.footer-bottom {
    text-align: center;
                    max-width: 1200px;
  padding: 2rem 2rem 0;
   margin: 0 auto;
    border-top: 1px solid #3a2a1a;
}

.footer-bottom p {
		color: #a0927d;}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-width: auto;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}.about-hero {
    margin-top: 80px;
	padding: 4rem 0;
  background: linear-gradient(135deg, #2c1810 0%, #4a3428 100%);
	color: white;
   text-align: center;
}

.about-hero-content h1

{
   font-size: 3rem;
    margin-bottom: 1.5rem;
  font-weight: 700;

}

.about-hero-content p


{
       font-size: 1.2rem;
          max-width: 800px;
                    margin: 0 auto;
  opacity: 0.9;
  line-height: 1.7;


}

.our-story {

	       padding: 5rem 0;
   background: white;}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items     : center; 

}

.story-text h2 {

	   color: #2c1810;
   margin-bottom     :     2rem;
               font-size: 2.5rem;


}

.story-text p {


  font-size: 1.1rem;
  color: #5a4a3a;
  margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image img {
       width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
     }

.team-section {
	padding: 5rem 0;
  background: linear-gradient(135deg, #f8f5f1 0%, #e8ddd4 100%);
}

.team-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap  : 2rem;
}

.team-member    {
   background: white;
  border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image img {
	    width: 100%;
  height:200px;
    object-fit: cover;


}

.member-info {
     padding: 2rem;
	}

.member-info h3 {
    font-size     :        1.5rem;
   color :       #2c1810;
   margin-bottom: 0.5rem;
}

.member-role {
      color:        #8B4513;
   font-weight: 600;
  margin-bottom: 1rem;
   font-size: 1rem;
}  

.member-description {
   	color    :  #5a4a3a;
	  line-height: 1.6;
	  margin-bottom: 1.5rem;
}

.member-credentials {
   display: flex;
      gap: 1rem;
    flex-wrap: wrap;
}

.member-credentials span {
    background:        #f0ede8;
   color  : #8B4513;
   padding    :      0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight:        500;


}

.methodology-section     {
  padding: 5rem 0;
    background: white;
}

.methodology-content h2 {
   font-size:      2.5rem;
  color: #2c1810;
	text-align: center;
   margin-bottom: 1.5rem;
}


.methodology-intro {
  font-size: 1.1rem;
  color: #5a4a3a;
  text-align: center;
  max-width: 800px;
   margin: 0 auto 3rem;
}

.methodology-steps {
   margin: 0 auto;
	display: flex;
   flex-direction: column;
  max-width: 900px;
    gap: 2rem;
}

.step-item {
	display    :      flex;
  gap: 2rem;
                    align-items: center;
                    padding: 2rem;
  background: #f8f5f1;
  border-radius: 15px;
	 border-left: 5px solid #8B4513;
}

.step-number {
  font-size: 2rem;
   font-weight: 700;
   color: #8B4513;
	 min-width  : 60px;
  text-align: center;
}

.step-content h3 {
   font-size: 1.3rem;
  color: #2c1810;
   margin-bottom: 0.5rem;
}

.step-content p {
     color: #5a4a3a;
   line-height: 1.6;

}

.values-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #e8ddd4 0%, #d4c4b0 100%);
}

.values-grid    {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.value-item {
  background: white;
	padding: 2rem;
  border-radius: 15px;
	 text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-item h3 {
    font-size: 1.5rem;
 color: #2c1810;
    margin-bottom: 1rem;
}

.value-item p {
    color: #5a4a3a;
    line-height: 1.6; 
	
}

.achievements-section {


  padding: 5rem 0;

   background: white;

    text-align: center;


}

.achievements-stats    {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

    gap: 2rem;

   margin-bottom: 3rem;
}

.stat-item {
   background: #f8f5f1;
    padding    :   2rem;
  border-radius     :  15px;
}

.stat-number {

    font-size: 3rem;
                    font-weight: 700;
    color  :   #8B4513;
  margin-bottom: 0.5rem;}

.stat-label {
  font-size: 1rem;
	color   :    #2c1810;
  font-weight: 600;
}

.achievements-content p {
   line-height: 1.7;
	 font-size: 1.1rem;
  margin     :       0 auto;
          color: #5a4a3a;
    max-width: 800px;
}

.thankyou-main {
    margin-top: 80px;
  min-height: calc(100vh - 80px);
               display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f5f1 0%, #e8ddd4 100%);
}

.thankyou-container {
   max-width: 1000px;
   margin: 0 auto;
   padding   :      4rem 2rem;
}

.thankyou-content {
  background: white;
   padding: 4rem;
   border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
   margin-bottom: 2rem;
}

.checkmark-circle {
      width: 80px;

  height: 80px;

   border-radius: 50%;

  background: #4CAF50;

  margin :      0 auto;

  position:  relative;

}

.checkmark {
    position: absolute;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    width: 20px;
    height: 35px;
   border: solid white;
          border-width   :      0 4px 4px 0;
  transform: translate(-50%, -60%) rotate(45deg);

}

.thankyou-title {
   font-size: 2.5rem;
   color: #2c1810;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-message {
    font-size: 1.1rem;
   color :     #5a4a3a;
    line-height: 1.7;
   margin-bottom: 3rem;
   max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

.next-steps {
   text-align: left;
       margin-bottom: 3rem;
}

.next-steps h2 
 {
  font-size: 2rem;
  color: #2c1810;
   text-align: center;
       margin-bottom: 2rem;
}

.steps-timeline {
   display: flex;
    flex-direction   :       column;
  gap: 1.5rem;
}

.timeline-step {
   align-items: flex-start;
	display: flex;
   gap  :  1.5rem;
}

.step-icon {
   width: 40px;
          height :      40px;
	border-radius: 50%;
   background: #8B4513;
  color: white;
    display: flex;
  align-items: center;
  justify-content: center;
   font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c1810;
   margin-bottom     :0.5rem;
  font-size    :        1.2rem;
}

.step-content p {
      color: #5a4a3a;
   line-height: 1.6;

}

.helpful-resources {
    margin-bottom: 3rem;
      text-align: left;
}  

.helpful-resources h2 {
  font-size: 2rem;
  color: #2c1810;
   text-align: center;
   margin-bottom  :       1rem;
}

.helpful-resources > p

{
    text-align: center;
    color: #5a4a3a;
  margin-bottom: 1.5rem;
}

.preparation-list {
   list-style   :       none;
    max-width: 600px;
	 margin   :0 auto;
}

.preparation-list li {
    color: #5a4a3a;
   padding: 0.75rem 0;
    position: relative;
    padding-left    :    30px;
    line-height: 1.6;
}

.preparation-list li::before {
  content: '✓';
  position    :       absolute;
  left :    0;
	 color: #4CAF50;
	font-weight: bold;
    font-size: 1.1rem;
}

.while-you-wait {
  margin-bottom: 3rem;
  text-align: center;
}

.while-you-wait h2 {

   margin-bottom: 1rem;
    font-size: 2rem;
  color: #2c1810;


}

.while-you-wait > p {
  color    :      #5a4a3a;
   margin-bottom: 2rem;
}


.resource-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
    margin-bottom: 2rem;
}

.resource-card {
 background    :  #f8f5f1;

	   border-radius: 15px;

		overflow: hidden;

	  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.resource-card img {
     width: 100%;
   height: 120px;
  object-fit: cover;


}

.resource-content {
	padding: 1.5rem;
   text-align: left;
}

.resource-content h3 {
     color: #2c1810;
    margin-bottom     :       0.5rem;
  font-size    :       1.1rem;
}

.resource-content p	{
    line-height: 1.5;
  color: #5a4a3a;
    font-size: 0.9rem; 
	
}

.contact-reminder {
                    margin-bottom: 3rem;
    background: #f0ede8;
  padding: 2rem;
   border-radius: 15px;
}

.contact-reminder h2 {
    font-size: 1.5rem;
  color: #2c1810;
   margin-bottom    :    1rem;
}

.contact-reminder p {
  color: #5a4a3a;
  margin-bottom: 1.5rem;
}

.urgent-contact {
    display :flex;
  justify-content: center;
   gap: 2rem;
    flex-wrap: wrap;
}



.contact-method {
  color: #2c1810;
   font-size: 1rem;
}

.contact-method strong {
	color: #8B4513;
}

.thankyou-actions {
   display:     flex;
	gap: 1rem;
   justify-content:   center;
    flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        min-width: auto;
    }

    .methodology-steps {
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .steps-timeline {
        gap: 2rem;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .urgent-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-actions .cta-primary,
    .thankyou-actions .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 0;
    }

    .about-hero-content h1 {
        font-size: 1.75rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .resource-cards {
        grid-template-columns: 1fr;
    }

    .achievements-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}.policySection {
   	padding: 80px 2rem;
    background: #f8f9fa;

}

.policyContainer {
   max-width: 800px;
  margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom : 1.5rem;
   font-weight: 700;
}  

.policyContainer p {
    color: #7f8c8d;
   margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size     :   1.1rem;
}  @media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}