* {

   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: #ffffff;

}

.section-container, .nav-container, .hero-content, .contact-container, .about-container, .cta-content {
  max-width: 1200px;
    margin   :      0 auto;
  padding: 0 20px;
} 

.primary-navigation    {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
  width: 100%;
  top     :       0;
  z-index: 1000;
}

.nav-container {

	  display: flex;
    justify-content: space-between;
       align-items: center;
   padding :    1rem 20px;
     }

.brand-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: #2c5aa0;
}

.mobile-toggle {


  display: none;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
	}

.mobile-toggle span {
    width: 25px;
  height: 3px;
	background: #333;
   transition: 0.3s;
}

.hero-section {
	 display    :   flex; 
	  align-items: center; 
	  min-height: 100vh; 
	    padding: 120px 20px 60px; 
	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
  flex: 1;
   max-width: 600px;
}

.hero-content h1 {
    font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
                    color: #555;
	
}  

.hero-actions {
	  display: flex;
   gap: 1rem;
   flex-wrap: wrap; 
	
     }

.primary-btn, .secondary-btn {
  padding: 15px 30px;
    border: none;
  border-radius: 5px;
 font-size: 1.1rem;
   font-weight: 600;
  text-decoration: none;
	 transition: all 0.3s ease;
  cursor: pointer;
}

.primary-btn {
    background: #2c5aa0;
    color: white;
}

.primary-btn:hover {
  background: #1e3f73;

  transform: translateY(-2px);

}

.secondary-btn {
   background: transparent;
  color: #2c5aa0;
   border: 2px solid #2c5aa0;
}  

.secondary-btn:hover {
	  background: #2c5aa0;
   color: white;}

.hero-visual {
    flex: 1;
   text-align    : center;
    margin-left: 40px;
}

.hero-visual img {
   max-width: 100%; 
  height: auto; 
   border-radius: 10px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.services-area {
    padding: 80px 0;
  background: #ffffff;
}

.services-area h2 {
  text-align: center;

   font-size: 2.5rem;

  margin-bottom: 3rem;

    color: #2c3e50;

}

.service-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-item{
  background: #f8f9fa;
   padding :       2rem;
    border-radius: 10px;
          text-align: center;
   transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item img {
  width: 100%;
    margin-bottom: 1.5rem;
   object-fit: cover;
  height: 200px;
  border-radius: 8px;
} 

.service-item h3 {
		 font-size: 1.5rem;
    margin-bottom: 1rem;
      color: #2c3e50;

}

.service-item p {
    color: #666; 
	line-height: 1.7;
}

.cta-section {
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
  display: flex;
   align-items: center;
}

.cta-content {


    color: white;
  flex: 1;

}

.cta-content h2 {
   font-size: 2.8rem;
	  margin-bottom: 1.5rem;
}



.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-button {
  display: inline-block;
 background: white;
    color: #667eea;
  padding: 18px 35px;
    border-radius: 50px;
	 text-decoration: none;
    font-weight: 600;
   font-size : 1.1rem;
    transition :  all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-image {
    flex: 1;
   margin-left     :       40px;
}

.cta-image img		{
   width  :     100%;
  border-radius: 15px;
}

.about-preview     {
    padding: 80px 0;

		background: #f8f9fa;
}

.about-preview h2  {

	 text-align: center;
  font-size     : 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;


}

.features-grid {
   display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	    gap: 2rem; 
	
}

.feature-box		{
      background :      white;
    padding: 2.5rem;
    border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	}

.feature-box h4 {
    font-size: 1.4rem;
   margin-bottom    :      1rem;
  color: #2c5aa0;
}

.feature-box p {
   line-height: 1.6;
    color: #666;
}  

.contact-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
} 

.contact-section h2 {
  color :       white;
   text-align: center;
   margin-bottom: 1rem;
    font-size: 2.5rem;
}


.contact-section > .contact-container > p {
    text-align: center;
    color: white;
   margin-bottom    :       3rem;
   font-size: 1.2rem;
  opacity: 0.9;
}

.contact-form {
	         background     :white;
    padding: 3rem;
   border-radius  :   15px;
    max-width: 800px;
   margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);

     }

.form-row {
   display: flex;
   gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
}

.form-group label {
   color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
	 border: 2px solid #e0e0e0;
    font-size: 1rem;
  padding: 12px 15px;
   transition: border-color 0.3s ease;
    width: 100%;
   border-radius: 8px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.submit-btn {

               background :        #2c5aa0;
   color :     white;
   border: none;
    padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
    width: 100%;
  transition: background 0.3s ease;
	}

.submit-btn:hover {
  background: #1e3f73;
}

.site-footer {
    background: #2c3e50;
   color: white;
  padding: 40px 0 20px;
}

.footer-content {
    display: flex;
  justify-content: space-between;
   align-items: flex-start;
   max-width  :        1200px;
    margin  : 0 auto;
   padding: 0 20px;
    gap: 2rem;
}

.footer-brand img {
  height: 50px;
}

.footer-info {
   display: flex;
  gap:    3rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
} 

.footer-links h4 {
  margin-bottom: 1rem;
  color: #74b9ff;
}

.footer-links ul {
	 list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a		{
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
   margin-top: 30px;
  padding-top: 20px;
    border-top: 1px solid #34495e;
   max-width: 1200px;
   margin-left: auto;
   margin-right:     auto;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
        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);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        margin-left: 0;
        margin-top: 2rem;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-image {
        margin-left: 0;
        margin-top: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-info {
        flex-direction: column;
        gap: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn, .secondary-btn {
        text-align: center;
        width: 100%;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}.about-hero {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 140px 0 80px;
   text-align: center;
   color: white;

}

.about-hero-content {
  max-width     :  800px;
   margin    :   0 auto;
  padding  :  0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero p {
  font-size: 1.4rem;
  opacity: 0.95;
  line-height: 1.7;
}

.company-story {


  padding: 80px 0;
    background: #ffffff;
	}

.story-container {


    margin: 0 auto;
   gap: 3rem;
    max-width  :  1200px;
  display:      flex;
    padding: 0 20px;
  align-items   :center;

}

.story-content {
    flex: 1;
}

.story-content h2 {


   font-size: 2.8rem;
    color     :#2c3e50;
    margin-bottom: 2rem;
   font-weight: 700;}

.story-content p {
  font-size: 1.1rem;
    line-height: 1.8;
  margin-bottom: 1.5rem;
   color: #555;
}

.achievements-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
   margin-top    :  2.5rem;
}

.achievement-item {
	   text-align     :        center;
      padding    :      1.5rem;
    background:        #f8f9fa;
   border-radius    :  10px;
}

.achievement-item h3 {
  font-size: 2.5rem;
    color: #2c5aa0;
  font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement-item p {
   color: #666;
       font-size: 1rem;
}

.story-image {
  flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15); 

}

.team-approach {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-container {
	 max-width: 1200px;
  margin: 0 auto;
	 padding: 0 20px;
}

.approach-container h2 {
  text-align: center;
    font-size: 2.5rem;
       color: #2c3e50;
    margin-bottom :     3rem;


}

.approach-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}



.approach-item {
  background: white;
   padding: 2.5rem;
   border-radius :   15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-8px);
}

.approach-item img {
   width: 100%;
    height: 220px;
   object-fit: cover;
	border-radius: 10px;
    margin-bottom :   1.5rem;
}

.approach-item h3 {
    font-size :   1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    color: #666;
   line-height: 1.7;
   font-size: 1rem;
}

.values-section {
  padding: 80px 0;
    background: white;
}

.values-container {
    max-width: 1200px;
      margin: 0 auto;
    padding: 0 20px;
}

.values-container h2 
 {
	   text-align: center; 
   font-size:       2.5rem; 
  margin-bottom:      3rem; 
    color: #2c3e50;
}

.values-content 
 {
   display: flex;
   align-items: center;
   gap: 3rem;
}

.values-text {
   flex: 1;
}

.value-block {

    margin-bottom: 2.5rem;
  padding: 1.5rem;
    border-left: 4px solid #2c5aa0;
  background: #f8f9fa;

}

.value-block h4 {
    font-size: 1.4rem;
   color: #2c3e50;
   margin-bottom: 1rem;
   font-weight: 600;
}

.value-block p {
  color: #666;
    line-height: 1.7;
}

.values-image {
  flex: 1;
}

.values-image img {
  width :       100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mission-vision {
   padding: 80px 0;
  background: linear-gradient(45deg, #74b9ff 0%, #0984e3 100%);
}

.mission-container {
	  max-width: 1000px;
    margin: 0 auto;
  padding: 0 20px;
	display: grid;
        grid-template-columns: 1fr 1fr;
   gap: 2rem;

}

.mission-card, .vision-card {
               background: white;
  padding     :      3rem;
    border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;

         color: #2c3e50;

  margin-bottom: 1.5rem;

   font-weight: 700;
}

.mission-card p, .vision-card p {

  color: #555;
	 font-size: 1.1rem;
  line-height: 1.8;

}

.why-choose-us {
   padding: 80px 0;
	background: #f8f9fa;
}

.choose-container 
 {
         max-width: 1200px;
	margin: 0 auto;
   padding: 0 20px;
}

.choose-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
}

.reasons-grid {
  display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
}

.reason-item {
   background: white;
   padding: 2rem;
  border-radius   : 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.reason-item:hover {
  transform: translateY(-5px); 
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.reason-item h4 {
  color: #2c5aa0;
    font-size: 1.3rem;
         font-weight: 600;
    margin-bottom: 1rem;
}

.reason-item p {
   color: #666;
  line-height: 1.7;
}

.thankyou-hero {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
	padding: 140px 0 80px;
    min-height: 100vh;
  display: flex;
   align-items: center; 

}

.thankyou-container {
    max-width: 1200px;
        margin: 0 auto;
  padding: 0 20px;
  display: flex;
   align-items: center;
   gap: 3rem;
}

.thankyou-content
	{
    flex: 1;
    color   :        white;
}

.success-icon {
  width: 80px; 
    height: 80px; 
    margin: 0 auto 2rem; 
  display: flex; 
    align-items: center; 
   justify-content: center;
}

.checkmark {
    width: 60px;
   height: 60px;
    border-radius: 50%;
  background: white;
    position: relative;
}

.checkmark::after {


  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
      width: 15px;
    height: 25px;
   border: solid #00b894;
    border-width: 0 4px 4px 0;


}

.thankyou-content h1 {


    font-size: 3.2rem;
    font-weight: 700;
			margin-bottom :    1.5rem;
   text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);}

.main-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    text-align: center;
   opacity: 0.95;
	 line-height: 1.7;
}

.next-steps  {
  background: rgba(255,255,255,0.1);
   padding: 2.5rem;
  border-radius: 15px;
    margin-bottom: 2.5rem;
}

.next-steps h3 {
   font-size: 1.8rem;
   margin-bottom     :    2rem;
  text-align: center;
}

.steps-list {
  display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.step-item     {
  display:   flex;
   align-items: flex-start;
  gap: 1rem;
}

.step-number {
	  background: white;
    color: #00b894;
	width: 35px;
    height: 35px;
  border-radius: 50%;
   display: flex;
   align-items:     center;
    justify-content   :      center;
  font-weight: 700;
  font-size: 1.1rem;
   flex-shrink: 0;
}

.step-content h4 {

	    font-size: 1.2rem;
    margin-bottom: 0.5rem;
   font-weight: 600;
	}

.step-content p 
 {
       opacity: 0.9;
  line-height: 1.6;
     }

.additional-info {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
    border-radius: 15px;
   margin-bottom: 2.5rem;
	text-align: center;
}

.additional-info h3 {
  font-size: 1.5rem;
   margin-bottom: 1rem;
}

.additional-info p {
   opacity: 0.9;
	  line-height: 1.7;
}

.action-buttons {
   display: flex;
         gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-visual {
  flex: 1;
}

.thankyou-visual img {
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
	
} 

.while-waiting {
    padding: 80px 0;
  background: white;
}

.waiting-container {
  max-width: 1200px;
   margin: 0 auto;
  padding    :      0 20px;
}

.waiting-container h2 {
  text-align: center;
    font-size: 2.5rem;
    color   :   #2c3e50;
  margin-bottom: 3rem;
	
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap  :       2rem;
}

.tip-card {
    background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
    text-align: center;
   transition :  transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tip-card img {
    width: 100%;
	height: 200px;
  object-fit: cover;
  border-radius: 10px;
    margin-bottom: 1.5rem;
}

.tip-card h4  
  {
    font-size: 1.4rem;
   color: #2c3e50;
          margin-bottom: 1rem;
  font-weight: 600;
} 

.tip-card p {
  color: #666;
    line-height: 1.7;
}

.contact-reminder {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.reminder-container {
   max-width: 800px;
  margin   :  0 auto;
  padding: 0 20px;
}

.reminder-container h3{
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.reminder-container p {

    font-size: 1.1rem;
        color: #666;
                    margin-bottom: 2rem;}

.contact-details {
   display: flex;
  justify-content: center;
  gap: 3rem;
	flex-wrap: wrap;
	
} 

.contact-item {
               background: white;
    padding: 1.5rem 2rem;
  border-radius     :    10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   font-size: 1.1rem;
  color: #2c3e50;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .story-container {
        flex-direction: column;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .values-content {
        flex-direction: column;
    }

    .mission-container {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        flex-direction: column;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .steps-list {
        gap: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .story-content h2, .approach-container h2, .values-container h2, .choose-container h2, .waiting-container h2 {
        font-size: 2rem;
    }

    .next-steps, .additional-info {
        padding: 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }
}