* {
    margin: 0;
  padding: 0;
     box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	 line-height: 1.6;
   color: #2c3e50;
  background: #f8f9fa;
}

.main-navigation		{
   background: #1a2332;
  padding: 1.2rem 0;
  position: fixed;
               width: 100%;
	top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-navigation.scrolled {
	  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);


}

.nav-wrapper {
  max-width: 1200px;
         align-items: center;
   padding: 0 20px;
  justify-content: space-between;
    margin: 0 auto;
  display: flex;
}

.site-logo {
   height: 45px; 
	  width: auto;
}

.nav-links {
  display:    flex;
	list-style: none;
  gap: 2.5rem;
}

.nav-links a     {
   color  :     #ecf0f1;
  text-decoration    :none;
   font-weight: 500;
  transition  :   color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.burger-toggle {
	  display: none;
   flex-direction: column;
    background: none;
  border: none;
        cursor: pointer;
  padding: 5px;
}

.burger-toggle span {
  width: 25px;
  height   :   3px;
  background: #ecf0f1;
    margin: 3px 0;
   transition: 0.3s;
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-toggle.active span:nth-child(2) {


  opacity: 0;
	}

.burger-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero-section {
  margin-top: 80px;
    padding: 5rem 20px;
    max-width: 1200px;
    margin-left: auto;
   margin-right: auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap     :   3rem;
  align-items: center;
}

.hero-content h1 {
        line-height    :      1.2;
    margin-bottom: 1.5rem;
  color: #1a2332;
         font-size: 2.8rem;
	}

.hero-content p{

  font-size: 1.2rem;
    color: #555;
  margin-bottom: 2rem;
     }

.cta-button {
   display: inline-block;
    background: #e74c3c;
    color: white;
   padding: 1rem 2.5rem;
    text-decoration: none;
			border-radius: 5px;
    font-weight: 600;
					transition: background 0.3s;
}

.cta-button:hover {
  background: #c0392b;
}

.hero-image img {
    width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.features-area {
	   padding: 4rem 20px;
   background: white;


}

.container {
  max-width: 1200px;
    margin: 0 auto;
}

.features-area h2 {
   text-align: center;
  font-size  :        2.4rem;
    margin-bottom: 3rem;
   color: #1a2332;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
	
}

.feature-item
	{

   padding: 2rem;
    background: #f8f9fa;
       border-radius: 8px;
   transition: transform 0.3s;
	}

.feature-item:hover {
	  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);}

.feature-item h3 {
               font-size:       1.5rem;
    margin-bottom: 1rem;
   color: #2c3e50;
	
}

.about-preview {
   padding: 5rem 20px;
  background:   #ecf0f1;
}

.content-wrapper {
   max-width: 1200px;
        margin: 0 auto;
    display     :   grid;
  grid-template-columns: 1fr 1fr;
  gap:    3rem;
    align-items: center;
}

.text-content h2 {
  font-size: 2.2rem;
   margin-bottom: 1.5rem;
   color: #1a2332;
}

.text-content p {
   color: #555;

  margin-bottom: 1rem;

   font-size: 1.1rem;
}

.image-content img {
   width: 100%;
    border-radius: 10px;
}

.services-section {
   padding  :        5rem 20px;
        background: white;
}

.services-section h2 {
    margin-bottom   :      3rem;
   font-size: 2.4rem;
   color: #1a2332;
    text-align: center;
}

.services-layout {
	 display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap   :        2rem;
}

.service-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 10px;
    position    :      relative;
}

.service-card h3 {
	font-size: 1.6rem;
	  margin-bottom:  1rem; 
	
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-duration {
    display: inline-block;
  background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
	 font-size: 0.9rem;
}



.cta-section {
  padding: 5rem 20px;

	  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);

	   color: white;

	    text-align: center; 

}

.cta-container {
  max-width: 800px;
   margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.2rem;
	margin-bottom: 2rem;
  line-height : 1.8;
}

.cta-primary-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
  padding: 1.2rem 3rem;
   text-decoration: none;
	border-radius: 5px;
  font-weight: 600;
	font-size     :  1.1rem;
    transition: background 0.3s;
}

.cta-primary-btn:hover {
	background: #c0392b;
}

.testimonials {
    padding: 5rem 20px;
                    background: #f8f9fa;
}

.testimonials h2 {
	text-align: center;

    font-size: 2.4rem;

   margin-bottom: 3rem;

    color: #1a2332;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-box {

	  background: white;
	padding: 2rem;
    border-radius: 8px;
   border-left     :      4px solid #3498db;
	}

.testimonial-box p {
  font-style: italic;
   margin-bottom: 1rem;
  color  :#555;
}

.testimonial-box .author{
  font-weight   :        600;
   color: #2c3e50;
}

.gallery-showcase {
  padding: 5rem 20px;
    background: white;
}

.gallery-showcase h2 {
   text-align: center;
  font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.gallery-grid {
	 display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap :1.5rem;
}

.gallery-item img {
	width: 100%;

					border-radius: 8px;

  transition: transform 0.3s; 

}

.gallery-item img:hover     {
  transform: scale(1.05);
}

.contact-section {

    padding :5rem 20px;
       background  : #ecf0f1;
	}

.contact-section h2  
  {

	    text-align: center;
   font-size: 2.4rem;
   margin-bottom: 3rem;
               color: #1a2332;
}

.contact-layout {
  display:      grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}



.contact-info h3  {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.address-line,
.phone-line    {
   margin-bottom: 1rem;
  color: #555;
    line-height: 1.8;
}

.contact-form-wrapper {
   background: white;
   padding: 2.5rem;
	-moz-border-radius: 10px;
   border-radius: 10px;




}

.form-group {

    margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
   margin-bottom: 0.5rem;
    font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select     {
   width: 100%;
	   padding: 0.8rem;
	   border: 2px solid #ddd;
	      border-radius: 5px;
	  font-size: 1rem;
	   transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

	   outline: none;
	border-color: #3498db; 
	}

.submit-btn {
   background  :     #2ecc71;

	   color: white;

	   padding: 1rem 2.5rem;

	    border: none;

	               border-radius: 5px;

	 font-size: 1.1rem;

	   font-weight: 600;

	    cursor: pointer;

	  transition: background 0.3s;
}

.submit-btn:hover {
      background: #27ae60;
	}

.site-footer {
  background: #1a2332;
    color: #ecf0f1;
   padding     :  3rem 20px 1rem;
}

.footer-content{
	   max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
	margin-bottom: 2rem;


}

.footer-column h4{
   margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
   margin-bottom: 0.5rem;
}

.footer-column a {
  color: #ecf0f1;
	text-decoration    :        none;
   transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-logo {
  height: 40px;
   margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
	 padding-top: 2rem;
   border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 0 auto;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a2332;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        padding: 0.8rem 20px;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}.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;
    }
}.page-header {
   margin-top: 80px;
	padding: 4rem 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
  color   :  white;
}

.header-content h1 {
		font-size: 3rem;
  margin-bottom: 1rem; 

}

.header-content p {
   font-size: 1.3rem;
    opacity   :    0.9;

}

.story-section		{
   padding: 5rem 20px;
  background    :  white;
}

.story-section .container
	{
  align-items: center;
   display: grid;
   gap: 3rem;
   grid-template-columns: 1.5fr 1fr;
}

.story-content h2 {
   font-size : 2.3rem;
   color: #1a2332;
   margin-bottom: 1.5rem;
}



.story-content p 
 {
    margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #555;
        font-size: 1.05rem;
}

.story-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-vision {
  padding    :    4rem 20px;
   background: #f8f9fa; 
	
}

.mission-grid    {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.mission-box {
   background: white;
   padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.mission-box h3 {
         font-size: 1.8rem;
   color: #2c3e50;
	margin-bottom: 1rem;
}

.mission-box p {
          line-height   :   1.8;
    color: #555;
}

.values-section 
 {
  padding: 5rem 20px;
   background: white;
} 

.values-section h2 {
  text-align: center;
  font-size: 2.4rem;
	 margin-bottom: 3rem;
	 color: #1a2332;
}


.values-layout {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.value-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
    border-radius: 8px;
  color: white;
    text-align: center;
}  

.value-card h4 {
  font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
                    line-height: 1.7;
    font-size: 0.95rem;
}

.team-section {
               background :        #ecf0f1;
   padding: 5rem 20px;


}

.team-section h2 {

    text-align: center;
   font-size: 2.4rem;
               margin-bottom    :  1rem;
   color: #1a2332;}

.team-intro{
 text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
   color: #555;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-member {
     background: white;
   padding: 2rem;
  border-radius :     10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);


}

.member-info h4 {
          font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}  

.member-info .role {
    display: block;
    color: #3498db;
	font-weight: 600;
   margin-bottom: 1rem;
               font-size: 1.05rem;
}

.member-info p {
  color: #555;
    line-height: 1.7;
}

.achievements-section {
               padding: 4rem 20px;
	 background: #1a2332;
    color: white;
}

.achievements-section h2 {
    text-align  :center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.achievements-grid {

	    display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;}


.achievement-item {

  text-align: center;


}

.achievement-item .number    {
  font-size: 3rem;
  font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;


}

.achievement-item p {
  font-size: 1.1rem;
   opacity: 0.9;
}

.approach-section {
  padding :    5rem 20px;
  background: white;
}

.approach-section h2 {
   text-align   : center;
         font-size: 2.4rem;
    margin-bottom: 3rem;
  color: #1a2332;
}

.approach-content     {

  display    : grid;
   grid-template-columns    :     1.5fr 1fr;
    gap: 3rem;
  align-items   :        center;
	}

.approach-text p		{
   margin-bottom: 1.2rem;
	 line-height: 1.8;
   color    :      #555;
    font-size: 1.05rem;
}

.approach-image img {

	    width: 100%;

   border-radius: 10px;


}

.methodology-section {
                    padding: 5rem 20px;
   background: #f8f9fa;
}

.methodology-section h2 {
         text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
   color: #1a2332;
}

.methodology-steps {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap:   2rem;
	
}

.step-item {
   	background: white;

   padding: 2rem;

    border-radius     :     10px;

   text-align: center;
}

.step-number {
  font-size: 2.5rem;
    font-weight: 700;
                    color: #3498db;
	margin-bottom:    1rem;
}

.step-item h4 {
	 font-size   :        1.4rem;
	color   :#2c3e50;
    margin-bottom: 1rem;
}

.step-item p {
   color: #555;
  line-height: 1.7;
	
}

.cta-about {
  padding: 4rem 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  text-align: center;}

.cta-content-about		{
	max-width: 700px;
  margin: 0 auto;
  color: white;
}

.cta-content-about h2 {
      font-size: 2.3rem;
    margin-bottom: 1rem;
}



.cta-content-about p {
 font-size  :  1.2rem;
   margin-bottom: 2rem;
}


.cta-btn-about {
    display: inline-block;
    background: white;
   color: #e74c3c;
   padding: 1rem 2.5rem;
    text-decoration: none;
   border-radius: 5px;
         font-weight: 600;
   transition: transform 0.3s;

}

.cta-btn-about:hover {
  transform: translateY(-3px);
}

.thankyou-hero {
       margin-top: 80px;
					padding: 5rem 20px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color     :       white;
}

.thankyou-container {
    max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
   align-items: center;
}

.thankyou-content {
   text-align: center;
}



.success-icon {
       margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thankyou-content h1 {
    font-size: 2.8rem;
  margin-bottom: 1rem;
}

.main-message {
	font-size     : 1.3rem;
 margin-bottom   :    2.5rem;
   opacity: 0.95; 

}

.next-steps {
  background: rgba(255,255,255,0.15);
	padding: 2rem;
    border-radius: 10px;
   text-align: left;
}


.next-steps h3 {
   font-size: 1.6rem;
    margin-bottom: 1rem;
}

.steps-list {
  list-style:  none;
	 padding-left: 0;
}

.steps-list li {
	padding: 0.7rem 0;
   padding-left: 2rem;
  position: relative;
   font-size: 1.05rem;
}

.steps-list li:before {
  content: "✓";
  position: absolute;
        left: 0;
  font-weight: 700;
	color: white;

}

.thankyou-image img {
  width:   100%;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quick-info {
	   padding: 5rem 20px;
   background   :   white;
}

.quick-info h2 {
    text-align: center;
	 font-size: 2.4rem;
   margin-bottom   :    3rem;
   color: #1a2332;
}

.info-cards {
   display: grid;

  grid-template-columns: repeat(3, 1fr);

   gap: 2rem;
}

.info-card {
    background: #f8f9fa;
   padding: 2rem;
	 border-radius: 10px;
	border-left: 4px solid #2ecc71;
}

.info-card h4 {
   font-size: 1.4rem;
    color   :       #2c3e50;
   margin-bottom: 1rem;
}

.info-card p {
    color: #555;
  line-height: 1.7;
}

.resources-section {


    padding: 5rem 20px;
    background: #ecf0f1;

}

.resources-section h2 {
  text-align: center;
	 font-size: 2.4rem;
  margin-bottom: 2rem;
  color     :      #1a2332;
	
}

.resources-content > p {
  text-align: center;
    max-width: 800px;
  margin: 0 auto 3rem;
   color: #555;
  font-size: 1.1rem;
}

.tips-grid {
     display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tip-box {
       background  :        white;
    padding: 2rem;
   border-radius: 10px;
	}

.tip-box h4	{
  font-size: 1.4rem;
   color: #2c3e50;
    margin-bottom: 1rem;
}

.tip-box p {
     color: #555;
    line-height: 1.7;
     }

.contact-reminder {
		padding :       4rem 20px;
	background: white; 


}

.reminder-box {

	  max-width: 700px;
	    margin: 0 auto;
	    background: #fff3cd;
		padding: 2.5rem;
	    border-radius: 10px;
	  border-left: 5px solid #ffc107;
	  text-align    :     center;
     }

.reminder-box h3 {
    font-size: 1.8rem;
   color: #2c3e50;
	 margin-bottom: 1rem;
}

.reminder-box p {
  color: #555;
	 margin-bottom: 1.5rem;
}

.contact-details {

	    margin-top: 1.5rem;

}

.contact-details p {
   margin-bottom: 0.5rem;
     font-size: 1.05rem;
}


.navigation-section {
  padding: 3rem 20px;
   background: #f8f9fa;
}

.nav-buttons {
  display: flex;
                    justify-content: center;
         gap: 2rem;
}

.nav-btn {
  display: inline-block;
    padding    :       1rem 2.5rem;
   text-decoration:       none;
    border-radius: 5px;
	font-weight: 600;
  transition: transform 0.3s;
}

.nav-btn.primary {
   background   :   #3498db;
  color: white;
}

.nav-btn.secondary 
 {
    background: white;
	  color: #3498db;
	  border: 2px solid #3498db;
}

.nav-btn:hover {
  transform: translateY(-3px);
}@media (max-width: 768px) {
    .page-header {
        padding: 3rem 20px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .story-section .container {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-layout {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .values-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}