* {
  margin: 0;
  padding: 0;
    box-sizing: border-box;

}

body {
  font-family: 'Arial', sans-serif;
 line-height: 1.6;
        color: #333;
	background-color    : #ffffff;
}

.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 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 2rem;
}

.nav-logo {
    height: 45px;
   width: auto;
}

.navigation-links {
    display: flex;
    list-style: none;
   gap: 2rem;
}

.navigation-links a {
       text-decoration: none;
    color: #333;
   font-weight: 500;
   transition: color 0.3s ease;
	position: relative;
}

.navigation-links a:hover {
	color: #007bff; 

} 

.navigation-links a::after {
  content: '';
   position: absolute;
         width: 0;
    height: 2px;
   bottom  :       -5px;
  left: 0;
   background-color: #007bff;
    transition: width 0.3s ease;
}

.navigation-links a:hover::after {
   	 width: 100%;


}

.mobile-toggle {
   display: none;
  flex-direction: column;
	cursor: pointer;
  gap     :        4px;
}

.mobile-toggle span {
  width: 25px;
   height: 3px;
   background-color: #333;
	 transition: all 0.3s ease;}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
   padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}

.hero-content {
    max-width: 1200px;
	margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap:  4rem;
	align-items: center;
}

.hero-text h1 {
   font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
   line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
	margin-bottom: 2.5rem;
   color: #555;
  line-height: 1.8;
}

.hero-buttons {
   display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
    text-decoration: none;
	 border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block; 
	
}

.primary-btn {
   background: #007bff;
   color: white;
  box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.primary-btn:hover {
   background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.secondary-btn {
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
}

.secondary-btn:hover {
    background: #007bff;
    color: white;
  transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15); 

}

.features-grid {
   padding: 100px 2rem;
   background: white;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
}

.features-grid h2 {
	text-align: center;
  font-size: 2.8rem;
   margin-bottom: 3rem;
    color: #2c3e50;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
   background: #f8f9fa;
  padding: 2.5rem;
    border-radius: 12px;
  text-align: center;
	transition    :        transform 0.3s ease, box-shadow 0.3s ease;
} 

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-item img {
   width: 100%;
   height:   200px;
   object-fit: cover;
   border-radius: 8px;
   -webkit-border-radius: 8px;
     margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-size: 1.5rem;
         margin-bottom    :1rem;
    color: #2c3e50; 

}

.feature-item p {
    color: #666;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  padding: 100px 2rem;
               color: white;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
 align-items: center;
    max-width: 1200px;
   margin: 0 auto;
}


.cta-content h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.cta-content p {


   font-size:      1.1rem;
    margin-bottom: 2rem;
               opacity: 0.9;
   line-height: 1.7;
}

.cta-button {
  background   :        white;
    color: #007bff;
    padding: 15px 35px;
   text-decoration:      none;
    border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
    display  :      inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.cta-visual img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
	
}

.contact-section {
  padding: 100px 2rem;
  background: #f8f9fa;
}

.contact-wrapper {
   max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
}

.contact-info h2 {
	font-size: 2.5rem;
  margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info p {
   margin-bottom:      2rem;
   color: #666;
  line-height: 1.7;


}

.contact-details {
  display: flex;
    flex-direction: column;
   gap: 1rem;
	
}

.contact-item {
   display: flex;
   gap: 1rem;
	}

.contact-item strong {
    min-width: 80px;
       color: #2c3e50;
}  

.contact-form {
     background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     }

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
    margin-bottom: 0.5rem;
	font-weight: 600;
		 color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
    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: #007bff;}

.submit-btn

{
    color: white;
   padding  :15px 30px;
	 width :    100%;
    background: #007bff;
   font-size: 1rem;
    border-radius: 6px;
  transition: all 0.3s ease;
    cursor: pointer;
    border  :none;
    font-weight     :     600;
}

.submit-btn:hover {

	  transform: translateY(-2px);
   background: #0056b3;}

.site-footer {

	background: #2c3e50;
         color  :     white;
    padding: 60px 2rem 20px;
}

.footer-content {
   max-width: 1200px;
	 margin: 0 auto;
				 display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
   margin-bottom: 2rem;
}

.footer-logo {
   height: 60px;
  filter: brightness(0) invert(1);
}

.footer-links {
	  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap   :   2rem;}

.footer-column h4 {
   margin-bottom: 1rem;
   color: #ecf0f1;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
   margin-bottom: 0.5rem;

}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
  transition :    color 0.3s ease;
}

.footer-column a:hover {
    color: white; 
	
}

.footer-column p {
    color :#bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
	  padding-top: 20px;
	  text-align: center;
	   color: #bdc3c7;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .navigation-links.active {
        transform: translateX(0);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 100px 1rem 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .contact-section {
        padding: 60px 1rem;
    }
    
    .cta-section {
        padding: 60px 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
    padding: 120px 2rem 80px;
  text-align: center;
    margin-top     :   0;
}

.about-hero-content h1 {
    font-size: 3.5rem;
       margin-bottom: 1.5rem;
	font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
    opacity: 0.9;
  line-height  :        1.7;
}

.our-story {
               padding: 100px 2rem;
    background: #ffffff;
}

.story-container {
   max-width    :     1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
       gap: 4rem;
  align-items: center;
}

.story-text h2 {
	                    font-size: 2.8rem;

	   margin-bottom: 2rem;

	    color: #2c3e50;
	}



.story-text p {
  margin-bottom: 1.5rem;
    line-height: 1.8;
  color: #555;
    font-size: 1.1rem;
}

.story-image img {
	width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-values     {
   padding: 100px 2rem;
     background: #f8f9fa;
}

.mission-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.mission-item {
               background: white;
    padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mission-item h3 {
   font-size: 1.8rem;
  margin-bottom: 1.5rem;
   color: #2c3e50;
}

.mission-item p {
   line-height: 1.7;
	 color: #666;
    margin-bottom: 1rem;
}

.mission-item ul {
   list-style: none;
    padding: 0; 

}



.mission-item li {
	   padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  color: #555;
    position: relative;
  padding-left: 1.5rem;

}

.mission-item li:before {
  content: "✓";
   position: absolute;
    left: 0;
    color: #007bff;
   font-weight     :      bold;
}

.expertise-areas {
  padding  :    100px 2rem;
   background: white;
}

.expertise-container {
    max-width:  1200px;
  margin   :       0 auto;
}

.expertise-container h2 {
    text-align: center;
      font-size: 2.8rem;
     margin-bottom: 3rem;
   	 color: #2c3e50;
}

.expertise-grid    {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
	}

.expertise-card {
  text-align: center;
                    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
  background: #f8f9fa;
}

.expertise-card:hover {
  transform: translateY(-8px);
}

.expertise-card img {
  width: 100%;
     height: 200px;
   object-fit: cover;
    border-radius :8px;
  margin-bottom :       1.5rem;
}

.expertise-card h4 {

	   font-size: 1.4rem;
   margin-bottom: 1rem;
	 color: #2c3e50;

}

.expertise-card p {
    color: #666;
   line-height: 1.6;
}

.why-choose-us {
    background: #f8f9fa;
  padding : 100px 2rem;
}

.why-content {
         max-width: 1200px;
  margin: 0 auto;
    display: grid;
      grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.why-text h2 {
  font-size: 2.5rem; 
	  margin-bottom: 2rem; 
	   color: #2c3e50;
}

.benefits-list {
   display: flex;
   flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    padding: 1.5rem;
  background: white;
   border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}  

.benefit-item h4 {
    color:  #007bff;
	margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.benefit-item p {
   margin: 0;
   color: #666;
    line-height: 1.6;
}


.why-image img	{
         width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.thankyou-hero {


    min-height: 100vh;
  display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-container {
  max-width: 1200px; 
	 margin: 0 auto; 
    display:     grid; 
    grid-template-columns: 2fr 1fr; 
       gap: 4rem; 
  align-items: center;
}

.thankyou-content {
                    text-align: center;
}

.success-icon {
   	 margin-bottom: 2rem;


}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius :  50%;
    display: block;
    stroke-width: 3;
   stroke: #28a745;
    stroke-miterlimit: 10;
  margin: 0 auto;
  position: relative;
}

.checkmark-circle {
    width: 80px;
          height: 80px;
  border-radius  : 50%;
   border: 3px solid #28a745;
  background: #d4edda;
  position: absolute;
  top: -3px;
  left   :-3px;
}

.checkmark-stem   {
        width :    20px;
  height: 3px;
    background: #28a745;
    position: absolute;
  top: 38px;
	 left: 25px;
  transform: rotate(45deg);
}

.checkmark-kick
{
    width: 12px;
  height     :     3px;
   background    :  #28a745;
    position: absolute;
   top: 42px;
    left: 20px;
  transform: rotate(-45deg);
}

.thankyou-content h1 {
    font-size:        3rem;
               color: #2c3e50;
  margin-bottom: 1rem;
}

.main-message {
    font-size: 1.3rem;
  color: #666;
	margin-bottom: 3rem;
   line-height: 1.6;
}

.next-steps {
   margin-bottom     :        3rem;
}

.next-steps h3  {


  font-size: 2rem;
  color     :#2c3e50;
  margin-bottom: 2rem;}

.steps-grid {
     display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}


.step-item {
	display: flex; 
	    align-items: flex-start; 
	    gap: 1rem; 
	  text-align: left;


}

.step-number {
         background: #007bff;
  color: white;
    width: 40px;
  height: 40px;
    border-radius: 50%;
  display: flex;
  align-items    :       center;
  justify-content: center;
  font-weight:       bold;
  flex-shrink: 0;
}

.step-content h4 {
	color: #2c3e50;
   margin-bottom    :     0.5rem;
   font-size: 1.1rem;
}

.step-content p {
  color: #666;
   line-height: 1.5;
   margin   :       0;
  font-size: 0.95rem;
}

.additional-info {
	  margin-bottom: 3rem;
	}

.additional-info h3 {
  font-size :      1.8rem;
    color : #2c3e50;
   margin-bottom: 1.5rem;
}

.info-cards {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 1.5rem;}

.info-card {
    background: white;
  padding: 1.5rem;
    border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  text-align: left;
}

.info-card h4 {
  color     :   #007bff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  color: #666;
   line-height    : 1.5;
  margin: 0;
    font-size: 0.9rem;
}

.action-buttons {

   display: flex;
   gap   :    1rem;
	justify-content: center;
	 flex-wrap :wrap;
     }

.thankyou-visual img {
     width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);


}@media (max-width: 768px) {
    .story-container,
    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .our-story,
    .mission-values,
    .expertise-areas,
    .why-choose-us {
        padding: 60px 1rem;
    }
    
    .thankyou-hero {
        padding: 100px 1rem 60px;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}