* {
	 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 20px;}

.main-navigation {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
	 top: 0;
    width: 100%;
    z-index: 1000;
}

.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     :     #2563eb;
}

.mobile-toggle {
  display: none;
   flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
	    height: 3px;
   transition:        0.3s;
  margin: 3px 0;
   background : #333;
  width     :    25px;


}

.hero-section {

  display: flex; 
  align-items: center; 
  min-height: 100vh; 
	padding : 120px 20px 60px; 
  max-width: 1200px; 
  margin: 0 auto; 
    gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size  :3.2rem;
   font-weight: 700;
   color: #1e293b;
   margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom   : 2.5rem;
   line-height :1.7;
}

.cta-button {
   display    :   inline-block;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
  border-radius: 8px;
  font-weight     :       600;
  font-size: 1.1rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);

	  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.hero-image {
   flex: 1; 

}

.hero-image img {
   width: 100%;
  height    : auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {
  padding: 80px 20px;
    background: #f8fafc;
}

.services-overview h2 {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom    :    3rem;
 color: #1e293b;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
                    border-radius: 12px;
	padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
 transition   :transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width   :   100%;
   height: 200px;
	object-fit: cover;
    border-radius     :  8px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
  color     :        #64748b;
   line-height: 1.6;
}

.expertise-section {
   padding: 80px 20px;
}

.expertise-content     {
    display: flex;
                    align-items: center;
   gap: 4rem;
}  

.text-content {
    flex: 1;
}

.text-content h2 {
  font-size: 2.3rem;
  color: #1e293b;
    margin-bottom: 1.5rem;
}

.text-content p {
  color: #64748b;
    font-size: 1.1rem;
      margin-bottom: 1.5rem;
    line-height: 1.7;
}

.image-content {
		 flex: 1;

}

.image-content img {
    width: 100%;
   height: auto;
    border-radius :   12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #1e40af, #3730a3);
   padding    :  80px 20px;
  text-align: center;
	
}

.cta-content h2 {

	  color: white;
    font-size: 2.5rem;
  margin-bottom: 1.5rem;}

.cta-content p {
   color: #e2e8f0;
    font-size: 1.2rem;
   margin-bottom: 2.5rem;
   max-width: 600px;
  margin-left     :   auto;
  margin-right: auto;

}

.cta-btn-secondary {


  display: inline-block;
	background: white;
    color: #1e40af;
   padding: 1rem 2.5rem;
  text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
   font-size :     1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

.cta-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

.contact-section {
   padding: 80px 20px;
   background: #f8fafc;


}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
   margin-bottom: 3rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 4rem;
  max-width   :    1000px;
    margin  :        0 auto;
}

.contact-info h3 {
       font-size: 1.5rem;
               color: #1e293b;
    margin-bottom: 1.5rem;
}

.contact-details p     {
     color: #64748b;

	  margin-bottom: 1rem;

	    font-size: 1.1rem;
}

.contact-form {
    background: white;
  padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label  
  {
  display   :   block;
   margin-bottom    :        0.5rem;
 color: #374151;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    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: #2563eb;
}

.submit-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
       color: white;
  padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
     font-weight: 600;
   cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   width   :100%;
}

.submit-btn:hover   {
     transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);


}

.main-footer {
	    background: #1e293b;
  color: white;
  padding: 60px 20px 20px;
}


.footer-content {
 max-width: 1200px;
   margin: 0 auto;
  display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.footer-logo {
   height: 40px;

   width     :        auto;

  filter: brightness(0) invert(1);
}

.footer-section h4 {
  margin-bottom: 1rem;
   color: #e2e8f0;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.5rem;
}

.footer-section a {
  color: #94a3b8;
   text-decoration: none;
   transition: color 0.3s ease;
}



.footer-section a:hover {
	 color: #e2e8f0;
}

.footer-section p {
   color: #94a3b8; 
          line-height: 1.6;
}

.footer-bottom {
   max-width: 1200px;
      margin  :    2rem auto 0;
   padding-top: 2rem;
       border-top: 1px solid #334155;
   text-align: center;
  color: #94a3b8;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 100px 20px 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .expertise-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.about-hero {
   padding:      120px 20px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align :        center;
}

.about-hero-content h1 {
   color: #1e293b;
  font-weight: 700;
   font-size: 3rem;
    margin-bottom :       1.5rem;
}

.about-lead {
  font-size: 1.3rem;
  color: #64748b;
   max-width :        800px;
   margin: 0 auto;
   line-height: 1.7;
}

.company-story {
    padding: 80px 20px;
}

.story-layout {
  display: flex;
   align-items: center;
  gap: 4rem;
    max-width :       1200px;
   margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
   font-size     :   2.4rem;
  color: #1e293b;
    margin-bottom: 2rem;
}

.story-text p {
  font-size: 1.1rem;
       color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.story-image {
   flex: 1;
  -ms-flex: 1;
}

.story-image img{

    width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.team-expertise {
   padding: 80px 20px;
  background: #f8fafc;
}

.team-expertise h2 {
	   font-size: 2.5rem; 
    margin-bottom  :    3rem; 
  text-align: center; 
   color: #1e293b;


}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
    max-width: 1200px;
  margin: 0 auto;
}

.expertise-item{
	 background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
         transition: transform 0.3s ease;

}

.expertise-item:hover {


  transform: translateY(-5px);

}

.expertise-item img {
   width: 100%;
  height: 220px;
    object-fit: cover;
  border-radius: 10px;
   margin-bottom: 1.5rem; 

}

.expertise-item h3 {
    font-size     :      1.4rem;
    color: #1e293b;
    margin-bottom:   1rem;
}

.expertise-item p {
    color: #64748b;
               line-height: 1.6;


}

.company-approach{
  padding: 80px 20px;
}

.approach-content {
  display: flex;
  align-items: flex-start;
   gap: 4rem;
    max-width: 1200px;
     margin: 0 auto;
}

.approach-text {

  flex: 1;
	}

.approach-text h2 {
    font-size  :2.4rem;
  color  :       #1e293b;
	margin-bottom: 1.5rem;
}

.approach-text > p {
  margin-bottom: 2.5rem;
  color    :      #64748b;
   font-size: 1.1rem;
    line-height: 1.7;
}

.approach-points {
          display   :   flex;
   flex-direction: column;
    gap: 1.5rem;
}

.point-item h4 {
     color     :#1e293b;
          font-size: 1.2rem;
    margin-bottom: 0.5rem;}

.point-item p     {
  color    :     #64748b;
  line-height: 1.6;
}

.approach-visual {
   flex: 1;
}

.approach-visual img {
   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}


.values-section {
  padding: 80px 20px;
    background: #f8fafc;

}

.values-section h2 {

	     text-align: center;
   font-size: 2.5rem;
  color: #1e293b;
   margin-bottom: 3rem;}

.values-grid    {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
    background: white;
   padding: 2rem;
    border-radius: 10px;
	 text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   border-top: 4px solid #2563eb;
}

.value-card h3 {
   color: #1e293b;
    font-size: 1.3rem;
   margin-bottom: 1rem;
}

.value-card p {
  color: #64748b;
  line-height: 1.6;
	
}

.thankyou-hero {
	  padding: 120px 20px 80px;
	min-height: 100vh;
    display: flex;
   align-items: center;
	}

.thankyou-content {
  max-width: 800px;
  margin: 0 auto;
   text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark {
  width: 80px;
  height: 80px;
   border-radius: 50%;
   background: #10b981;
    margin: 0 auto;
    position: relative;
}

.checkmark::after
	{
  content: '';
    position: absolute;
  left: 30px;
   top: 20px;
  width: 15px;
          height: 25px;
          border: solid white;
    border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.thankyou-content h1 {
                    font-size: 3rem;
  color: #1e293b;
    margin-bottom: 1.5rem;
}

.thankyou-message {
  font-size: 1.2rem;
  color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1e293b;
   margin-bottom: 2rem;
}  

.steps-grid {
    display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-bottom     :  3rem;



}

.step-item {
  background: #f8fafc;
               padding: 2rem;
        border-radius: 12px;
  text-align:center;
}

.step-number {
  width   :50px;
   height: 50px;
  background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
         align-items: center;
  justify-content: center;
    font-size: 1.5rem;
          font-weight:bold;
  margin: 0 auto 1rem;
}

.step-item h3 {
    color : #1e293b;
  margin-bottom: 1rem; 
	
}

.step-item p {
    color     :     #64748b;
   line-height: 1.6;
}


.additional-info h2 {
    font-size: 2rem;
  color: #1e293b;
  margin-bottom: 2rem;
}

.info-cards {
   display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
   margin-bottom: 3rem;


}

.info-card  {
   background: white;

  padding: 2rem;

  border-radius: 12px;

  box-shadow: 0 5px 20px rgba(0,0,0,0.08);

	text-align: left;
}

.info-card h3 {
  color: #1e293b;
   margin-bottom :1rem;
}

.info-card p {
    color: #64748b;
   line-height: 1.6;
}

.action-buttons     {
  justify-content: center;
    display: flex;
    flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary, .btn-secondary {
    display :     inline-block;
	 padding: 1rem 2rem;
   border-radius :  8px;
	text-decoration    :    none;
   font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {

	  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
	}

.btn-secondary {
  background: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-primary:hover, .btn-secondary:hover    {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-layout, .approach-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .expertise-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-grid, .info-cards {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}.pol {
    margin-top: 7%;
}