* {
	 padding: 0;
    margin: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
     color: #2c3e50;
	 background-color: #ffffff;
}

.content-container {
	max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.top-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 0;
  position: fixed;
   top: 0;
  width     :      100%;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);


}

.nav-wrapper {
  padding: 0 20px;
    align-items: center;
	 display: flex;
   margin   :       0 auto;
    max-width: 1200px;
      justify-content: space-between; 

} 

.company-logo {
  height: 45px;
	width: auto;
}

.navigation-links {
    display: flex;
   list-style: none;
  gap: 2rem;
}

.navigation-links a {
    color: white;
  text-decoration: none;
    font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
    border-radius: 5px;
}

.navigation-links a:hover {
  background-color: rgba(255,255,255,0.2);
	color: #f8f9fa;
}

.mobile-toggle {
   display: none;
   flex-direction: column;
   cursor: pointer;
  gap: 4px;
}

.burger-line {
    width: 25px;
      height: 3px;
       background-color: white;
      transition: 0.3s;
}

.hero-banner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
       padding: 120px 0 80px;
  color: white;
}

.hero-content {
    display: grid;
        grid-template-columns: 1fr 1fr;
   gap     :       3rem;
    align-items: center;
}

.hero-content h1


{
    font-size: 3.2rem;
   font-weight  :700;
   margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size :1.3rem;
   margin-bottom: 2rem;
  opacity: 0.95; 
	
}

.hero-actions {
     gap: 1rem;
    display: flex;
   flex-wrap :   wrap;
     }

.primary-button, .secondary-button {
	padding: 14px 28px;
    border-radius: 8px;
    text-decoration:  none;
    font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-button {
  border: 2px solid white;
   background-color :     #ffffff;
   color: #f5576c; 

}

.primary-button:hover {
  background-color: transparent;

    color  :     white;
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white; 

}

.secondary-button:hover {
  background-color: white;
    color:    #f5576c;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.features-overview {
   padding: 80px 0;
    background-color: #f8f9fa;
}

.features-overview h2 {
       text-align: center;
   font-size: 2.8rem;
  margin-bottom: 3rem;
   color: #2c3e50;}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap   :      2rem;
}

.feature-item {
    background: white;
	 padding: 2rem;
   border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
	
}

.feature-item img {
	   width    :100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
   margin-bottom: 1.5rem;}

.feature-item h3 {


  font-size: 1.5rem;
    margin-bottom: 1rem;
	color: #667eea;}  

.feature-item p {
   color: #666;
   line-height: 1.7;
}

.services-section {
	padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services-section h2 {
   text-align: center;
  font-size: 2.8rem;
    margin-bottom: 3rem;
}

.services-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
  background: rgba(255,255,255,0.1);
  padding   : 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.service-card h3 {
    font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-card p {
		margin-bottom: 1.5rem; 
   opacity: 0.9;
}

.service-benefits {
  list-style    :     none;
}

.service-benefits li {
  padding: 0.5rem 0;
  position   :       relative;
   padding-left: 1.5rem;
     }

.service-benefits li:before {
  content: "✓";
   position: absolute;
   left: 0;
  color  :       #4ade80;
	font-weight:  bold;
}

.expertise-showcase {
    padding: 80px 0;
   background-color: white;
}

.expertise-content {
  display: grid;
   grid-template-columns :     1fr 1fr;
    gap: 3rem;
   align-items:     center;
}

.expertise-showcase h2 {
    font-size: 2.5rem;
   margin-bottom   :  1.5rem;
	color: #2c3e50;
}

.expertise-intro {

   font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
    line-height: 1.7;}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;


}

.stat-item {
          text-align: center;
	padding: 1rem;
   background: #f8f9fa;
  border-radius: 10px;
}

.stat-number {
	  display: block;
  font-size: 2.2rem;
  font-weight: 700;
                    color  :    #667eea;
  margin-bottom: 0.5rem;
     }

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.expertise-visual 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, #f093fb 0%, #f5576c 100%);
  padding: 80px 0;
  color: white;
   text-align: center;
}

.cta-content h2 {
         margin-bottom: 1.5rem;
    font-size: 2.8rem;
	}

.cta-content p {
   font-size  : 1.2rem;
   margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-highlights		{
   display: flex;
	justify-content     :   center;
    gap :2rem;
    margin-bottom   :      2rem;
  flex-wrap:      wrap;
}

.cta-highlights span {
  background: rgba(255,255,255,0.2);
  padding: 0.8rem 1.5rem;
   border-radius: 25px;
          font-weight: 500; 

}

.cta-button		{
    background-color    :      white;
  color: #f5576c;
  padding  :     16px 32px;
    border-radius: 8px;
  text-decoration: none;
  font-weight   : 700;
   font-size     :  1.1rem;
   transition: all 0.3s ease;
   display: inline-block;

}



.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	
}

.contact-section 
 {
  padding: 80px 0;
   background-color: #f8f9fa;
}

.contact-section h2 {

    text-align: center;
   font-size: 2.8rem;
  margin-bottom: 3rem;
    color: #2c3e50;
	}

.contact-layout {
    display: grid;
         grid-template-columns: 1fr 2fr;
   gap: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: #667eea;
          margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block; 
	margin-bottom: 0.5rem; 
  color: #2c3e50; 

}

.contact-form {
   background: white;
  padding: 2.5rem;
   border-radius: 15px;
  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     :  #2c3e50;


}

.form-group input,
.form-group select,
.form-group textarea {

   width: 100%;
   padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
   font-size: 1rem;
    transition: border-color 0.3s ease; 

	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
  outline: none;
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  color: white;

   padding: 14px 30px;

  border: none;

  border-radius: 8px;

       font-size: 1.1rem;

    font-weight: 600;

    cursor: pointer;

	 transition: transform 0.3s ease;

  width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
}

.site-footer {
  background-color :        #2c3e50;
    color: white;
   padding  :     50px 0 20px;
}

.footer-content {
   display:   grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   			margin-bottom: 2rem;
}

.footer-logo {
       height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-description {
   color: #bdc3c7;
  line-height   :       1.6;
}

.footer-content h4 {
    color: #ecf0f1;
   margin-bottom: 1rem;

}

.footer-content ul		{
  list-style: none;
}

.footer-content li {
  margin-bottom: 0.5rem;
} 

.footer-content a {
    color:      #bdc3c7;
    text-decoration : none;
  transition:color 0.3s ease;
}

.footer-content a:hover {
   color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
   color: #bdc3c7;
  text-align: center;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .navigation-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .cta-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 15px;
    }
    
    .hero-banner {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-overview,
    .services-section,
    .expertise-showcase,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.active-nav {
  background-color: rgba(255,255,255,0.2) !important;
    color: #f8f9fa !important;
    border-radius: 5px;
}

.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 60px;
   color: white;
  text-align: center;
}

.about-hero-content h1 {
  margin-bottom: 1rem;
    font-weight: 700;
  line-height: 1.2;
   font-size: 3rem;
}

.about-subtitle {
  font-size: 1.3rem;
   opacity: 0.9;
   max-width: 600px;
  margin: 0 auto;
}

.company-story {
  padding: 80px 0;
       background-color :     #f8f9fa;
}

.story-layout {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
		 align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom   :       1.5rem;
   color: #2c3e50;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
    margin-bottom: 1.5rem;
  color: #555;
}

.story-visual img {
   width   :  100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission-values {
  padding: 80px 0;
    background: white;

}



.mission-values h2 {
  text-align: center;
  font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid     {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;
}


.value-card {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
    padding: 2.5rem;
  border-radius: 15px;
  text-align   :  center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card p {
    opacity: 0.95;
	line-height: 1.6;
}

.expertise-areas {
  padding   :     80px 0;
  background-color: #f8f9fa;
}

.expertise-areas h2 {
    margin-bottom: 3rem;

	  text-align: center;

		font-size: 2.8rem;

	  color: #2c3e50;
     }

.expertise-content-grid {
   display: grid;
	gap: 3rem;
}

.expertise-item {

	   display: grid;
                    grid-template-columns: 1fr 1fr;
      gap: 2rem;
   align-items: center;
   background: white;
  padding: 2rem;
	border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}



.expertise-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.expertise-item:nth-child(even) .expertise-text {
  order: -1;
} 

.expertise-item img {
    width     : 100%;
	    height: 250px;
	  object-fit: cover;
	  border-radius: 10px;
}

.expertise-text h3 {
  color: #667eea;
    font-size    :       1.6rem;
	margin-bottom: 1rem;
}

.expertise-text p {
  color:   #666;
   line-height :       1.7;
}

.approach-methodology {
   padding: 80px 0;
   background: white;
}

.approach-layout


{

	   display: grid;
    grid-template-columns     :       1fr 1fr;
  gap: 3rem;
   align-items: center;

}

.approach-content h2 {
  font-size: 2.5rem;
    margin-bottom :2rem;
                    color: #2c3e50;
}

.methodology-steps {
   display: grid;
    gap: 1.5rem;
}

.step-item {
         display: flex; 
	    gap: 1rem; 
	   align-items: flex-start; 

}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	   color: white;

	    width: 40px;

	  height: 40px;

	         border-radius: 50%;

	   display: flex;

		 align-items: center;

	    justify-content: center;

	    font-weight: 700;

		flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;


}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.approach-visual img {
	 width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.achievements-section {
                    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.achievements-section h2 {
  text-align: center;
	font-size: 2.8rem;
   margin-bottom: 3rem;
}

.achievements-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.achievement-card
{
  background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.achievement-number {
   display: block;
  font-size: 2.5rem;
    font-weight: 700;
  margin-bottom : 1rem;
    color     :      #4ade80;
}

.achievement-card h4 {
    font-size: 1.2rem;
         margin-bottom   :      1rem;
}

.achievement-card p {

	   opacity: 0.9;
    line-height: 1.6;


}

.why-choose-us {
  padding: 80px 0; 
	   background-color: #f8f9fa;
}

.why-choose-us h2 {
   text-align: center;
         font-size     :   2.8rem;
       margin-bottom: 3rem;
    color: #2c3e50;
}

.reasons-list {
      display:grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 1.5rem; 



}

.reason-item {
  background: white;
    padding: 1.5rem;
    border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
          border-left: 4px solid #667eea;
}

.reason-item h4 {
   font-size: 1.2rem;
    margin-bottom: 0.8rem;
  color: #2c3e50;
}

.reason-item p {
    color: #666;
  line-height: 1.6;
} 

.thankyou-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
 padding: 120px 0 80px;
    color: white;
	text-align:  center;
   min-height: 70vh;
	display: flex;
    align-items: center;
}

.thankyou-content h1 {
     font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;}

.thankyou-message {
	opacity: 0.95;
  margin-bottom: 3rem;
   font-size: 1.3rem;
   margin-left: auto;
    margin-right: auto;
       max-width    : 600px;
}

.success-icon {
  display :  flex;
   margin-bottom:        2rem;
    justify-content: center;
} 

.checkmark-circle {
    width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
   display: flex;
  align-items: center;
 justify-content: center;
  border: 3px solid rgba(255,255,255,0.3);
}

.checkmark	{
	 width: 24px;
      height  :        12px;
	 border: 3px solid white;
    border-top  :      none;
	border-right: none;
  transform: rotate(-45deg);
}

.next-steps {
  background: rgba(255,255,255,0.1);
   padding: 3rem;
    border-radius: 15px;
	margin: 3rem 0;
  backdrop-filter: blur(10px);
}

.next-steps h2 {


  font-size: 2rem;
  margin-bottom: 2rem;
   text-align   :  center;


}

.steps-grid	{
   		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;

}

.step-card {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
    border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2); 
	
}

.step-card .step-number {
          background: white;
  color: #f5576c;
  width     :     50px;
  height: 50px;
   border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content  :center;
  font-weight: 700;
   font-size: 1.5rem;
	margin: 0 auto 1rem auto;
}

.step-card h3 {
  font-size: 1.2rem;
	margin-bottom: 1rem;
}

.step-card p {
   opacity: 0.9;
  line-height :        1.6;
	
}

.thankyou-info {


    margin: 3rem 0;
     }

.thankyou-info h2 {
   font-size: 2rem;
  margin-bottom: 2rem;
    text-align :  center;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
  background: rgba(255,255,255,0.1);
	   padding: 1.5rem;
	 border-radius: 10px;
	   text-align: center;
	  border: 1px solid rgba(255,255,255,0.2);
}



.info-card h4

{
          font-size:    1.1rem;
   margin-bottom: 0.8rem;
}

.info-card p {
               opacity: 0.9;
    line-height  :1.6;
}

.action-buttons
	{
  display: flex;
      gap: 1rem;
   justify-content: center;
  flex-wrap: wrap;
    margin-top :2rem;
}

.primary-btn, .secondary-btn {


   padding: 14px 28px;
	   border-radius: 8px;
	  text-decoration: none;
	  font-weight: 600;
	    transition    :        all 0.3s ease;
	 display: inline-block;
	}

.primary-btn {
		background-color    : white; 
	  color: #f5576c; 
	       border: 2px solid white;}

.primary-btn:hover {
    background-color: transparent;
  color: white;
}

.secondary-btn {
    background-color: transparent;
  color: white;
               border: 2px solid white;
}

.secondary-btn:hover {
  background-color: white;
       color: #f5576c;
}

.contact-reminder {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.reminder-content h2		{
	 font-size: 2.2rem;
    margin-bottom: 1rem;
    color    :        #2c3e50;
}

.reminder-content p {
    font-size: 1.1rem;
   color: #666;
  margin-bottom: 2rem;
}

.contact-details-reminder {
      display: flex;
	    justify-content: center;
	  gap   :       3rem;
	   flex-wrap: wrap;
}



.contact-item-reminder {
    display: flex;
    flex-direction: column;
			align-items: center;
}

.contact-item-reminder strong {
	   color: #667eea;
  font-size:     1.1rem;
    margin-bottom: 0.5rem;



}

.contact-item-reminder span {
    color: #2c3e50;
   font-weight: 500;
}
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-layout,
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expertise-item:nth-child(even) .expertise-text {
        order: 0;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-details-reminder {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .next-steps {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .reasons-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 50px;
    }
    
    .thankyou-hero {
        padding: 100px 0 60px;
    }
    
    .company-story,
    .mission-values,
    .expertise-areas,
    .approach-methodology,
    .achievements-section,
    .why-choose-us {
        padding: 60px 0;
    }
    
    .next-steps {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}.cookies-policy {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 60px;
   color: white;
   text-align: center;
}

.privacy-policy {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 0 60px;
   color: white;
  text-align: center;


}