* {
  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;
}

.nav-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
	 position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-container {

	  max-width: 1200px;
    margin: 0 auto;
  display: flex;
   justify-content: space-between;
   align-items:       center;
    padding: 0 20px;


}

.company-logo {
    height: 45px;
         width: auto;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.nav-item {
   color     :      white;

   text-decoration: none;

	font-weight: 500;

   padding: 0.5rem 1rem;

  border-radius: 25px;

  transition: all 0.3s ease;
}

.nav-item:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
    flex-direction: column;
      cursor: pointer;
       gap    :      4px;
}

.mobile-menu-btn span {
  width: 25px;
    -o-transition: 0.3s;
   -webkit-transition: 0.3s;
   height: 3px;
    -moz-transition: 0.3s;
  background:   white;
	transition: 0.3s;
}

.mobile-nav {


    display: none;
   position: absolute;
  top: 100%;
    left: 0;
    right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding    :1rem;
  border-top: 1px solid rgba(255,255,255,0.2);


}

.mobile-nav-item {
   display: block;
   color    :   white;
    text-decoration: none;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
   transition :     background 0.3s ease;
}

.mobile-nav-item:hover     {
  background-color: rgba(255,255,255,0.1);
}

.main-content {
  min-height: calc(100vh - 80px);
}

.hero-area {
	  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
                    padding: 80px 20px;
  display: flex;
    align-items: center;
   min-height: 85vh;
	}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: white;
  margin-bottom  :    1.5rem;
 line-height: 1.2;
  font-weight: 700;
}



.hero-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
    margin-bottom   :       2rem;
  line-height   :   1.6;
}

.hero-actions {
                    display :    flex;

	    gap  :   1rem;

	  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   padding: 1rem 2rem;
    border-radius  :50px;
  text-decoration: none;
	 font-weight    :600;
			font-size: 1.1rem;
   transition     :  all 0.3s ease;
   border: 2px solid transparent;
}

.primary-btn {
   background: white;
    color :    #764ba2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.secondary-btn {

	    color: white;
  background: transparent;
    border: 2px solid white;

}

.secondary-btn:hover {
  background: white;
     color: #764ba2;
  transform: translateY(-3px);
}

.hero-image {
   width: 100%;
   	 height: auto;
                  border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	
}

.services-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.content-container 
 {
   margin: 0 auto;
   max-width :      1200px;
}

.services-section h2 {
   text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
    color   :     #333;
   font-weight  : 700; 

}

.services-grid
	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
   background: white;
  border-radius: 15px;
   padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}


.service-card:hover {
  transform: translateY(-10px);
}

.service-img {

	   width: 100%;
   height: 200px;
   object-fit: cover;
   border-radius: 10px;
   margin-bottom: 1.5rem;}

.service-card h3 {
  font-size: 1.4rem;
   margin-bottom:   1rem;
	color: #333;
  font-weight: 600;
}

.service-card p {
    color: #666;
  line-height: 1.6;


}

.cta-section {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
	 text-align: center;


}

.cta-content h2 {
               font-size: 2.5rem;
  color: white;
   margin-bottom  :  1rem;
  font-weight:700; 
	
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
   margin-bottom :       2rem;
         max-width: 600px;
	margin-left :     auto;
  margin-right: auto;
}

.cta-button {
         display: inline-block;

   background: white;

    color: #764ba2;

    padding: 1.2rem 2.5rem;

  border-radius: 50px;

  text-decoration : none;

    font-weight: 600;

    font-size: 1.1rem;

   transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.expertise-section {
  padding: 100px 20px;

  background: white;
}

.expertise-section h2 {
    text-align: center;
  font-size    : 2.5rem;
   margin-bottom     :       3rem;
   color: #333;
    font-weight: 700;
}

.expertise-grid {
   display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 2rem;
}

.expertise-item {
  text-align: center;
   padding: 2rem;
}

.expertise-item h3 {


    font-size: 1.3rem; 
	  margin-bottom: 1rem; 
	  font-weight: 600; 
	  color: #667eea;


}

.expertise-item p {
    color: #666;
   line-height  : 1.6;
}

.contact-section {
  padding: 100px 20px;
         background: #f8f9fa;
}

.contact-container {
   max-width    :     800px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
	 margin-bottom: 3rem;
   color: #333;
    font-weight: 700;
}

.contact-form {
	background: white;
  padding: 3rem;
   border-radius:    20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-row {
	display: grid;
    grid-template-columns     :        1fr 1fr;
   gap: 2rem;
	margin-bottom: 2rem;
}

.form-group {
   display: flex;
	 flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 2rem;
  grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
   font-weight    :600;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 1rem;
   border: 2px solid #e1e1e1;
          border-radius: 10px;
  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: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 1.2rem 3rem;
    border: none;
               border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto; 
	
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.footer-section {
   background: #2c3e50;
   color: white;
	padding     :       3rem 20px 1rem; 
	
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
   height: 50px;
    width:        auto;
  filter: brightness(0) invert(1);
}

.footer-info
	{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap  :   2rem;
}

.footer-column h3 {
  font-weight  :     600;
  color: #667eea;
   margin-bottom: 1rem;
}

.footer-column a {
     display: block;
  color: #bdc3c7;
    text-decoration: none;
  margin-bottom   :    0.5rem;
       transition: color 0.3s ease;


}

.footer-column a:hover {
    color: white;
}

.footer-column p {
  color    : #bdc3c7; 
   margin-bottom: 0.5rem; 
   line-height: 1.6;

}

.footer-bottom {
  border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
  color: #95a5a6;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-section h2,
    .expertise-section h2,
    .contact-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .primary-btn,
    .secondary-btn,
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}.nav-item.active   {
  background-color: rgba(255,255,255,0.2);
    border-radius: 25px;
}

.about-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 100px 20px;
      text-align: center;
}

.about-hero-content {
   max-width: 800px;
   margin: 0 auto;

}

.about-hero h1 {
  font-size: 3rem;
    color: white;
	margin-bottom: 1.5rem;
   font-weight :    700;
}

.about-hero-description {
    font-size: 1.3rem;
	  color: rgba(255,255,255,0.9);
	    line-height: 1.6;
	   margin-bottom: 2rem;
}  

.our-story{
    padding: 100px 20px;
   background     :     white;
}

.story-container {
    max-width: 1200px;
                    margin :       0 auto;
   display :    grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
	margin-bottom: 2rem;
    color: #333;
   font-weight: 700;
}

.story-content p {
    font-size    :       1.1rem; 
     line-height: 1.7; 
  color: #666; 
  margin-bottom     :     1.5rem;
}

.story-img {
    width: 100%;
   height: auto;
 border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-approach {
  padding: 100px 20px;
  background: #f8f9fa;
}

.approach-container {
   max-width: 1200px;
	 margin: 0 auto;
}

.our-approach h2 {
    font-weight: 700;
  font-size     :     2.5rem;
    color: #333;
   margin-bottom: 3rem;
   text-align: center;
}

.approach-grid   {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap    :    2rem;
}

.approach-item  
  {
   background: white;
  padding: 2rem;
               border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition     :    transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item h3 {
                    font-weight: 600;
    color: #4facfe;
    font-size: 1.3rem;
        margin-bottom: 1rem;
}

.approach-item p {
  color: #666;
    line-height: 1.6;
}

.expertise-areas     {
    padding: 100px 20px;
    background: white;
}

.expertise-container {


   max-width: 1200px;
    margin: 0 auto;

} 

.expertise-areas h2 {
    text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
  font-weight: 700;
}

.expertise-list {


	 display: flex;
  flex-direction: column;
  gap  :     3rem;
     }

.expertise-card {
  display :    grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
   align-items   :  center;
    background: #f8f9fa;
    padding: 2rem;
   border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.expertise-card:nth-child(even) {
  grid-template-columns: 1fr 300px;
} 

.expertise-card:nth-child(even) .expertise-img {
	  order: 2;
     }

.expertise-img 
 {
    width: 100%;
   height: 200px;
	object-fit: cover;
  border-radius: 15px;
}

.expertise-content h3 {
    font-size: 1.5rem;
  color: #333;
    margin-bottom: 1rem;
   font-weight: 600;
}

.expertise-content p {
    color: #666;
   line-height: 1.6;
   font-size: 1.1rem;
}

.values-section {
    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.values-container {
   max-width: 1200px;
  margin: 0 auto;
}

.values-section h2 {
   font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
     color: white;
   font-size  :   2.5rem;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.value-item {

	  background: rgba(255,255,255,0.1);
    padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
   text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.value-item h3 {

   font-size    :  1.3rem;
    color: white;
  margin-bottom: 1rem;
	font-weight :  600;
	}

.value-item p {
  color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.why-choose-us {
  padding: 100px 20px;
    background:       #f8f9fa;
}

.choose-container {
          max-width: 1200px;

	          margin  :   0 auto;
}

.why-choose-us h2 {
   text-align: center;
  font-size: 2.5rem;
 margin-bottom    :        3rem;
   color: #333;
    font-weight: 700;
}

.reasons-list {
   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 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid #4facfe;
}

.reason-item h3 {
   font-size     :1.3rem;
   color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.reason-item p {
	 color: #666;
    line-height: 1.6;
}

.thankyou-hero {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 100px 20px;
	min-height  :     80vh;
    display: flex;
	align-items: center;
}

.thankyou-container {
	max-width: 1200px;
   margin    : 0 auto;
  display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 4rem;
    align-items: center;
}

.success-icon {
   width: 80px;
	 height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
		 display:     flex;
    align-items: center;
  justify-content: center;
    margin: 0 auto 2rem;
}

.checkmark {
   width: 30px;
  height: 30px;
    background: white;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.thankyou-content h1 {
                    font-size: 3rem;
   color    :#333;
	 margin-bottom     :      1.5rem;
    text-align:   center;
    font-weight: 700;
}

.thankyou-message 
 {
  color: #666;
    line-height: 1.6;
   margin-bottom: 3rem;
   font-size: 1.2rem;
    text-align: center;

} 

.next-steps
	{
   margin-bottom: 3rem;
}

.next-steps h2 {
  font-size    : 2rem;
   color: #333;
   margin-bottom: 2rem;
   text-align: center;
   font-weight: 600;
}

.steps-list {
    display: flex;
    flex-direction: column;
  gap: 1.5rem;


}

.step-item {
   display: flex; 
	   align-items: flex-start; 
	          gap: 1rem; 
	    background: white; 
		padding: 1.5rem; 
	        border-radius: 15px; 
	  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	
}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    width: 30px;
    height:        30px;
   border-radius: 50%;
    display: flex;
  align-items: center;
        justify-content: center;
					font-weight:      600;
  flex-shrink: 0;
}

.step-content h3 {
   font-size: 1.2rem;
   color: #333;
   margin-bottom: 0.5rem;
    font-weight: 600;
}  

.step-content p {
    color: #666;

	   line-height: 1.5;
}

.additional-info {
        margin-bottom: 3rem;
}

.additional-info h2 {
  font-size: 2rem;
    color: #333;
  margin-bottom: 2rem;
   text-align: center;
    font-weight: 600;
}

.prep-tips {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tip-item {
  background: white;
	padding: 1.5rem;
    border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.tip-item h3 {
     font-size: 1.1rem;
       color: #667eea;
      margin-bottom: 1rem;
           font-weight: 600;

}

.tip-item p {
   color  :     #666;
   line-height: 1.5;
    font-size: 0.95rem;
}

.return-actions {
   gap: 1rem;
    flex-wrap: wrap;
   display: flex;
   justify-content    : center;
}

.thankyou-image {
    width: 100%; 
    height    :      auto; 
	border-radius: 20px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-info-section {
   padding: 80px 20px;
    background: #f8f9fa;
}

.contact-info-container  {
   max-width: 800px;
  margin: 0 auto;
    text-align: center;

}

.contact-info-section h2 {
  font-size: 2.2rem;
    color: #333;
  margin-bottom: 3rem;
   font-weight: 700;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.contact-item {
  background: white;
   padding: 2rem;
	 border-radius    :       15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-item h3 {
    font-size: 1.2rem;

	    color:    #667eea;

	  margin-bottom: 1rem;

	       font-weight: 600;
}

.contact-item p {
   color: #666;
   line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expertise-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise-card:nth-child(even) .expertise-img {
        order: 0;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .steps-list {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .our-story h2,
    .our-approach h2,
    .expertise-areas h2,
    .values-section h2,
    .why-choose-us h2,
    .next-steps h2,
    .additional-info h2,
    .contact-info-section h2 {
        font-size: 2rem;
    }
    
    .prep-tips {
        grid-template-columns: 1fr;
    }
    
    .return-actions {
        flex-direction: column;
        align-items: center;
    }
}.content-section {
  padding   :        100px 20px;
  background    :   #f8f9fa;
}

.content-container {


    max-width   :       1200px;
   margin: 0 auto;

}

.content-container h1 {
  text-align: center;
   font-size   : 2.5rem;
    margin-bottom    :       2rem;
  color: #333;
    font-weight: 700;
}

.content-container h2 {
  font-size: 1.8rem;
   margin: 2rem 0 1rem;
  color: #667eea;
  font-weight: 600;
}

.content-container p {
    line-height: 1.6;
   margin-bottom :  1rem;
   color: #666;
}

.content-container ul {
   margin: 1rem 0;
	 padding-left   :        2rem;
}

.content-container li {
	    margin-bottom  :        0.5rem;


}@media (max-width: 768px) {
    .content-container h1 {
        font-size: 2rem;
    }

    .content-container h2 {
        font-size: 1.5rem;
    }
}