* {
   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: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
 padding: 0 20px;
}

.primary-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position  :fixed;
  top: 0;
   width: 100%;
   z-index: 1000;
  transition: all 0.3s ease;
  border-bottom :        1px solid #e0e0e0;
}

.primary-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
    max-width: 1200px;
  margin: 0 auto;
  display:     flex;
    justify-content :  space-between;
    align-items: center;
  padding: 1rem 20px;
}

.company-logo {
	  height: 45px;
  width:auto;
}

.nav-links {
  display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
       font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4a90e2;
}

.menu-toggle {
   display: none;
    flex-direction: column;
   cursor: pointer;
   gap: 4px;
}

.hamburger-line {
    width: 25px;
     height: 3px;
         background-color: #333;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -6px);


}

.hero-section {
   display: flex;
		 align-items: center;
  min-height: 100vh;
  padding: 120px 20px 80px;
   max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {

   font-size: 3.2rem;
   font-weight: 700;
	 color: #2c3e50;
   margin-bottom  :  1.5rem;
   line-height    :     1.2;
     }

.hero-subtitle {
       font-size: 1.3rem;
    color: #666;
   margin-bottom: 2.5rem;
   line-height: 1.5;
}

.hero-actions


{
    display: flex;
      gap: 1rem;
	 flex-wrap: wrap;
}

.primary-button, .secondary-button {
   padding: 14px 28px;
   text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.primary-button   {
	  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
     }

.primary-button:hover {
  background: linear-gradient(135deg, #357abd, #2968a3);
  transform: translateY(-2px);
}

.secondary-button		{
   background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.secondary-button:hover {
   background: #4a90e2;
     color: white;
}

.hero-visual {
   flex: 1;
}

.hero-visual img {
   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}  

.intro-section {
    padding: 80px 0;
   background: white;
}

.intro-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
	text-align: center;
    color: #2c3e50;
	
}

.intro-section p {
  font-size: 1.2rem;
	text-align: center;
	max-width: 800px;
   margin: 0 auto 3rem;
    color     :      #666;
    line-height: 1.7;


}

.stats-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
               gap: 2rem;
  margin-top:3rem;


}

.stat-item {
			text-align: center;
  padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2.5rem;
   color  :       #4a90e2;
	margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
   color: #666;
    font-size: 1.1rem;
}

.services-area {
     padding: 80px 0;
    background: #f8f9fa;
}

.services-area h2 {


   font-size: 2.5rem;
      text-align: center;
      margin-bottom: 3rem;
   		 color: #2c3e50;
     }

.services-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {

   width: 100%;
	 height: 250px;
    object-fit: cover;


}

.service-card h3 {
   font-size: 1.5rem;
   margin     :     1.5rem;
    color: #2c3e50;
}

.service-card p {
  line-height: 1.6;
   color: #666;
   padding: 0 1.5rem 2rem;
}

.methodology-section {
    padding: 80px 0;
   background: white;
}

.methodology-content {
	 display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}

.method-text h2 {
	font-size: 2.5rem;
    margin-bottom: 1.5rem;
   color: #2c3e50;
}

.method-text p {
      font-size: 1.1rem;
    color: #666;
  margin-bottom    : 2rem;
   line-height: 1.7;
}

.method-features {
  list-style: none;
}

.method-features li 
 {
  padding: 10px 0;
	position   :  relative;
   padding-left: 30px;
   color: #333;
}

.method-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4a90e2;
    font-weight: bold;
	font-size :   1.2rem;
}

.method-visual img {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-section {
     padding: 80px 0;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
   text-align: center;

}

.cta-section h2     {
  font-size  :       2.5rem;
    margin-bottom  :        1rem;
}

.cta-section p {
   font-size: 1.2rem;
   margin-bottom     :  2rem;
    max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.cta-button {


    background: white;

      color: #4a90e2;

  padding :    16px 32px;

   text-decoration: none;

   border-radius: 8px;

    font-weight: 600;

   transition: all 0.3s ease;

    display: inline-block;

}

.cta-button:hover     {
                    background   :  #f0f0f0;
  transform: translateY(-2px);
}

.contact-section {
    padding: 80px 0;
      background: white;
}


.contact-section h2 {
    font-size   :        2.5rem;
  text-align: center;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-layout

{
    display: grid;
    grid-template-columns: 1fr 2fr;
   gap: 4rem;
} 

.contact-info h3 {
  font-size: 1.5rem;
	margin-bottom: 2rem;
    color: #2c3e50;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item strong {

    display: block;
        color :#4a90e2;
  margin-bottom: 0.5rem;
}

.contact-form {
   background: #f8f9fa;
    padding: 2rem;
  border-radius: 12px;
}

.form-group {
   margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
   margin-bottom: 0.5rem;
    color: #333;
   display: block;
    font-weight     :     500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px;
   border: 2px solid #e0e0e0;
   border-radius: 6px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
   border-color: #4a90e2;
}

.submit-button {
  background: linear-gradient(135deg, #4a90e2, #357abd);
    color   :   white;
 padding: 14px 28px;
  border: none;
    border-radius: 8px;
  font-size: 1rem;
    font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
    width: 100%; 
	
}

.submit-button:hover {
  background: linear-gradient(135deg, #357abd, #2968a3);
  transform: translateY(-2px);
}

.site-footer {
  background   :   #2c3e50;
   color: white;
    padding   :   3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
   color: #4a90e2;
}

.footer-section ul {
 list-style :      none;
}

.footer-section ul li

{
   margin-bottom: 0.5rem; 

}

.footer-section a {
	   color: #bbb; 
	  text-decoration: none; 
	   transition: color 0.3s ease;}

.footer-section a:hover{
   color: #4a90e2;
}

.footer-logo {
               height    :   40px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
   border-top: 1px solid #444;
    margin-top  :        2rem;
     padding-top: 1rem;
    text-align: center;
  color: #bbb;
   max-width: 1200px;
   margin-left: auto;
    margin-right: auto;
 padding-left: 20px;
    padding-right   :20px;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-section h2,
    .services-area h2,
    .methodology-content h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}.about-hero     {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 140px 0 80px;
  text-align: center;
}

.about-intro h1 {
   font-size: 3rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead-text {
   font-size: 1.3rem;
  color: #666;
  max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.our-story {
   padding:    80px 0;
    background: white;
}

.story-content {
  display: grid;
		 grid-template-columns: 1fr 1fr;
	 gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color     :       #2c3e50;
    margin-bottom: 2rem;
}

.story-text p {
   font-size: 1.1rem;
   color:  #666;
   margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.values-section


{
           padding: 80px 0;
   background: #f8f9fa;
	}

.values-section h2  {
    font-size: 2.5rem;
  text-align   :  center;
  color: #2c3e50;
    margin-bottom: 3rem;


}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {

    background: white;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;

}

.value-card:hover {
	  transform: translateY(-5px);
     }

.value-card h3 {
    font-size: 1.4rem;
   color: #4a90e2;
  margin-bottom: 1rem;
   font-weight: 600;
}

.value-card p   {

	        color: #666;
   line-height :  1.6;

}

.expertise-area {
       padding: 80px 0;
   background: white;
}

.expertise-area h2 {


   font-size: 2.5rem;
      text-align: center;
    color: #2c3e50;
         margin-bottom: 3rem;
	}

.expertise-layout {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.expertise-item {
    position: relative;
	padding : 2rem;
    background: #f8f9fa;
   border-radius: 12px;
   border-left: 4px solid #4a90e2;
     }

.expertise-number {
   font-size: 2rem;
  color: #4a90e2;
   font-weight: 700;
   margin-bottom: 1rem;
}

.expertise-item h3 {
    font-size :        1.3rem;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.expertise-item p {
    color     :   #666;
  line-height: 1.6;
}

.approach-methodology {
  padding: 80px 0;
  background: #f8f9fa;
}

.approach-content {
   display    :      grid;

		 grid-template-columns: 1fr 1fr;

	        gap: 4rem;

	   align-items   : center;
}

.approach-text h2 {
    font-size: 2.5rem;
               color: #2c3e50;
   margin-bottom: 1.5rem;
}

.approach-text p {
	font-size: 1.1rem;
  color: #666;
	 margin-bottom: 2rem;
  line-height     :    1.7;
}

.methodology-steps {

	         display: flex;
 flex-direction: column;
	 gap: 1rem;


}

.method-step {
       -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  padding  :       1rem;
	background: white;
    border-radius: 8px;
  border-left: 3px solid #4a90e2;
	font-size: 1.1rem;
    color: #333;
	}

.method-step strong {
  color: #4a90e2;

	    font-size: 1.2rem;
}

.approach-visual img {
   width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.team-achievements {

  padding: 80px 0;
   background  :       white;
	}

.team-achievements h2

{
  font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
  margin-bottom: 3rem;
}

.achievements-grid {
    display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap  :   2rem;
}

.achievement-item{
               text-align: center;
 padding: 2rem;
  background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
  border-radius  :  12px;
}

.achievement-item h3 {
  font-size   :2.5rem;
    margin-bottom: 0.5rem;
	font-weight : 700;
}

.achievement-item p {
   font-size: 1.1rem;
}

.experience-showcase {


	 padding: 80px 0;
  background: #f8f9fa;}

.experience-showcase h2 {
  font-size: 2.5rem;
   text-align: center;
    color: #2c3e50;
   margin-bottom: 1rem;
}

.section-intro {
   	 text-align: center;
   font-size: 1.2rem;
	color:#666;
  max-width  :       600px;
    margin: 0 auto 3rem;
	 line-height: 1.6;
	}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.experience-card {
  background: white;
	border-radius  :   12px;
	 overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
     transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
}

.experience-card img {
  width: 100%;
	 height: 200px;
	object-fit: cover;
}

.experience-content {


   padding  : 2rem;

}

.experience-content h3 {
    font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.experience-content p
{
	   color: #666;
   line-height   :      1.6;}

.thankyou-main {
	 min-height: 80vh; 
	   padding:    140px 0 80px; 
	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}

.thankyou-content {
  max-width: 800px;
    margin    :       0 auto;
}

.success-message {
  text-align: center;

	    margin-bottom: 4rem;
}

.success-icon {
  margin-bottom: 2rem; 
	    display: flex; 
	  justify-content: center;
}

.success-message h1 {
  font-size: 3rem;
          color: #2c3e50;
  margin-bottom  :1rem;
   font-weight: 700;
}

.confirmation-text {
    font-size: 1.2rem;
    color: #666;
  line-height: 1.6;
    max-width: 600px;
   margin: 0 auto;
}

.next-steps {
  background: white;
  padding: 3rem;
		border-radius  :     12px;
	margin-bottom: 3rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.next-steps h2 {
   font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
		text-align: center;
}

.steps-timeline {
  display: flex;
     flex-direction   :column;
     gap: 1.5rem;
}

.timeline-item{
  display: flex;
    align-items: flex-start;
   gap: 1.5rem;

}

.timeline-marker {
    background: #4a90e2;
	 color: white;
    width: 40px;
     height: 40px;
    border-radius    :       50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight :        600;
   flex-shrink: 0;
}

.timeline-content h3 {
   font-size: 1.3rem;
    color: #2c3e50;
  margin-bottom: 0.5rem;
}



.timeline-content p {
  color: #666;
  line-height: 1.6; 
	
}

.additional-resources	{
      background: white;
   padding   : 3rem;
    border-radius  :12px;
  margin-bottom: 3rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.additional-resources h2 {
  font-size: 2rem;
  color: #2c3e50;
    margin-bottom:        1rem;
  text-align  :      center;
}

.additional-resources > p {
  text-align: center;
   color: #666;
 margin-bottom    :      2rem;
  font-size: 1.1rem;
}

.resource-cards {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.resource-card {

	   border: 1px solid #e0e0e0;
	border-radius: 8px;
                    overflow:       hidden;
    transition     :transform 0.3s ease;

}  

.resource-card:hover {
  transform: translateY(-3px);
}

.resource-card img     {
  width: 100%;
	 height: 150px;
   object-fit: cover;
}

.resource-card h3 {
    font-size: 1.2rem;

	    color: #2c3e50;

	  margin: 1rem;
}

.resource-card p {

	    color: #666;
 margin :    0 1rem 1.5rem;
  line-height: 1.5;

}

.emergency-contact {
  background: #fff3cd; 
          border: 1px solid #ffeaa7; 
    padding: 2rem; 
   border-radius: 8px; 
    text-align: center; 
  margin-bottom   :    3rem;
}

.emergency-contact h3 {


  color     :   #856404;
   margin-bottom     :   1rem;
   font-size    :        1.3rem;

}

.emergency-contact p {
	color: #856404;
         margin-bottom: 1rem;
}

.phone-number   {
   background: #4a90e2;
  transition: background 0.3s ease;
   font-size: 1.1rem;
    color:white;
    padding: 12px 24px;
    border-radius: 6px;
    display    :    inline-block;
  font-weight: 600;
   text-decoration: none;
}

.phone-number:hover
	{
    background: #357abd;
}

.navigation-options 
 {
   display: flex;

	   gap: 1rem;

	    justify-content: center;

	   flex-wrap: wrap;
}

.return-home,
.learn-more {
	 padding: 12px 24px;
    text-decoration: none;
   border-radius: 6px;
               font-weight    :     600;
   transition: all 0.3s ease;
}

.return-home {
   background: #4a90e2;
   color: white;
}

.return-home:hover {
   background: #357abd; 
	
}

.learn-more {
  background: transparent;
  color: #4a90e2;
    border: 2px solid #4a90e2;


}

.learn-more:hover {
    background :       #4a90e2;
    color: white;
}@media (max-width: 768px) {
    .about-intro h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-layout {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .success-message h1 {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .resource-cards {
        grid-template-columns: 1fr;
    }
    
    .navigation-options {
        flex-direction: column;
        align-items: center;
    }
    
    .return-home,
    .learn-more {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-intro h1 {
        font-size: 2rem;
    }
    
    .success-message h1 {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps,
    .additional-resources {
        padding: 2rem;
    }
}