* {
  margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {

	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height    :        1.6;
  color: #2c3e50;
    background-color: #f8f9fa;


}

.primary-nav {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
   top: 0;
   width: 100%;
       z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1); 

}

.nav-wrapper {
		 max-width: 1200px;
   margin: 0 auto;
  display: flex;
    justify-content: space-between;
    align-items  :    center;
    padding: 15px 20px;
}


.brand-logo {
  height: 45px;
  width: auto;
}

.desktop-nav  
  {
   display: flex;
    gap: 30px;
}

.nav-item {
     color: white;
   text-decoration :        none;
   font-weight: 500;
  transition: all 0.3s ease;
          padding: 8px 16px;
		border-radius :     4px;


}

.nav-item:hover, .nav-item.active {
	  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
	}

.mobile-toggle {
					cursor: pointer;
   padding: 5px;
		display: none;
   flex-direction: column;
}

.mobile-toggle span {
   width: 25px;
  height   :     3px;
    background-color: white;
  margin: 3px 0;
         transition     : 0.3s;
}

.mobile-nav {
    display: none;
  background-color: rgba(255,255,255,0.95);
       position    :   absolute;
    top :     100%;
  left: 0;
   width: 100%;
        padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav-item {
  display : block;
    color: #2c3e50;
   text-decoration: none;
  padding: 12px 0;
    border-bottom  :        1px solid #eee;
   font-weight     : 500;
}

.hero-banner {
   margin-top: 80px;
    padding: 60px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  min-height: 70vh;
    display: flex;
    align-items   :    center;
}

.hero-content {
    max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center; 
	
} 

.hero-text h1 {
 font-size   :3rem; 
   color: white; 
  font-weight: 700; 
               margin-bottom: 20px; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle		{
    font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
    line-height: 1.7;
}

.hero-actions {
	    display: flex;
	gap  :       20px;
        flex-wrap: wrap;
	}

.primary-btn, .secondary-btn {
    padding   :       14px 28px;
  text-decoration: none;
  border-radius     : 25px;
		font-weight: 600;
               transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
   background-color  :   white;
   color: #f5576c;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3); 
	
}

.secondary-btn {
   border: 2px solid white;
    background-color: transparent;
  color: white;
}

.secondary-btn:hover

{
		 background-color: white;
  color: #f5576c;
  transform: translateY(-3px);
}

.hero-visual img {
  width: 100%;
   height: auto;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-overview   {

	    background-color: white;
  padding:       80px 20px;
	}

.container-fluid {
  max-width: 1200px;
	margin: 0 auto;
}

.services-overview h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
    background: white;
   border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
     transform: translateY(-10px);}

.service-card img {
	    width: 100%;
    object-fit: cover;
    height: 250px;


	}

.service-card h3 {
   padding: 20px 25px 10px;
    color   :       #2c3e50;
    font-size: 1.4rem;
}

.service-card p {
   padding  :      0 25px 25px;
   color: #666;
    line-height: 1.7;
}

.methodology-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}



.content-wrapper     {
  max-width: 1200px;
   margin: 0 auto;
	display  :       grid;
    grid-template-columns: 1fr 1fr;
   gap: 50px;
    align-items: center;
}

.method-info h2 {
    color: white;
   font-size: 2.5rem;
    margin-bottom: 25px;
}

.method-info p {
  color: rgba(255,255,255,0.9);
    font-size    :        1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.methodology-features {
   list-style: none;
  padding: 0;
}

.methodology-features li {
   color: white;
	 padding: 8px 0;
    padding-left: 25px;
   position: relative;
    font-size: 1.1rem;
}

.methodology-features li:before {
  content: "✓";
    position: absolute;
  left: 0;
  color: #f093fb;
  font-weight: bold;
   font-size    :  1.2rem;
}

.method-visual img {
   width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
   margin: 0 auto;
}

.cta-content h2 {
   color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
    line-height: 1.7;
} 

.cta-button {
	 background-color: white;
    color: #f5576c;
  padding: 16px 40px;
   text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size:    1.1rem;
   display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.contact-section {
	padding: 80px 20px;
   background-color: #f8f9fa;
}

.contact-container {
   max-width: 1200px;
   margin:      0 auto;
}

.contact-section h2  
  {
    font-size: 2.5rem; 
  margin-bottom: 50px; 
  text-align: center; 
    color     :      #2c3e50;
}

.contact-layout {
    display :       grid;
  grid-template-columns: 2fr 1fr;
    gap     :     50px;
}

.contact-form {
   background: white;
   padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
	  display :        block;
   margin-bottom   :       8px;
    color: #2c3e50;
    font-weight: 500;


}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%; 
	    padding: 12px 15px; 
	  border: 2px solid #e1e8ed; 
	  border-radius: 8px; 
	     font-size: 16px; 
	  transition: border-color 0.3s ease; 
		 font-family: inherit;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus
{
  outline: none;

    border-color: #667eea;

  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 14px 30px;
   border: none;
  border-radius: 25px;
   font-size: 16px;
  font-weight: 600;
   cursor  :  pointer;
   transition: all 0.3s ease;
  width  :       100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-info {
   background: white;
    padding: 40px;
       border-radius:     15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h3 {
   color: #2c3e50;
	   margin-bottom: 30px;
	    font-size: 1.5rem;
}

.contact-detail {
    margin-bottom: 25px; 
	
}

.contact-detail strong {
    color: #667eea;
    display: block;
   margin-bottom   :     5px;
}

.contact-detail p {
    color: #666;
   line-height: 1.6;
}

.site-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content    {


  max-width: 1200px;
  margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
   align-items :       start;}

.footer-logo {
      height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-navigation {
   display: flex;
  gap: 50px;
	
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  margin-bottom: 15px;
   color: #ecf0f1;
}

.footer-links a,
.footer-legal a {
  display: block;
   color:     #bdc3c7;
        text-decoration: none;
  margin-bottom: 8px;
  transition    :   color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color    : white;
}

.footer-contact p {
  color   :      #bdc3c7;
  margin-bottom: 8px;
   line-height     :     1.6;
}

.footer-bottom {
   max-width: 1200px;
   margin: 30px auto 0;
   padding-top: 20px;
   border-top: 1px solid #34495e;
      text-align: center;
    color :     #bdc3c7;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-navigation {
        justify-content: center;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .services-overview h2,
    .method-info h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .primary-btn, .secondary-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-info {
        padding: 25px;
    }
}.about-hero {
   margin-top: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding  :    100px 20px;
  text-align: center;
   color: white;

}

.about-hero-content h1 {
  font-size    :    3.5rem;
	    margin-bottom: 20px;
	  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
  max-width: 800px;
   margin: 0 auto;
    line-height: 1.7;
   opacity     :       0.95;
}

.about-story {
                    padding: 80px 20px;
	 background-color: #f8f9fa;
}

.story-container {
   	max-width: 1200px;
  margin: 0 auto;
	}

.story-content h2 {
	  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom:30px;
  text-align: center;

}

.story-content p {
   font-size: 1.1rem;
  line-height: 1.8;
   margin-bottom: 25px;
    color: #555;
} 

.story-image {
   margin: 40px 0;
	text-align: center;


}

.story-image img {
   width: 100%;
	 max-width: 600px;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.approach-section {
  padding    : 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.approach-wrapper {
  max-width: 1200px;
	 margin: 0 auto;
}

.approach-section h2 {
    font-size: 2.5rem;
    color: white;
   text-align: center;
    margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.approach-grid  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.approach-card  {
  background: rgba(255,255,255,0.95);
    padding: 35px 25px;
  border-radius: 15px;
    text-align   :center;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.approach-card:hover


{
  transform: translateY(-8px);
}

.approach-number {
   font-size: 2.5rem;
   font-weight: 700;
  color: #f5576c;
    margin-bottom: 15px;
}

.approach-card h3 {
   font-size: 1.4rem;
          color: #2c3e50;
    margin-bottom   :15px;
}

.approach-card p {

	    color: #666;
   line-height: 1.6;}

.expertise-section {
   padding: 80px 20px;
   background-color: white;
}

.expertise-content {
  max-width: 1200px;
     margin: 0 auto;
  display: grid;
       grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items: center;
	
}

.expertise-text h2 {
  font-size :2.5rem;
    color: #2c3e50;
   margin-bottom: 25px;
}

.expertise-text p {
   font-size: 1.1rem; 
	    line-height: 1.8; 
	   color  :     #555; 
	    margin-bottom: 25px;
}

.expertise-list {
   list-style: none;
                    padding: 0;
    margin: 30px 0;
}

.expertise-list li {
	padding: 10px 0;
   padding-left: 30px;
  position: relative;
   color   :    #2c3e50;
    font-size: 1.1rem;
}

.expertise-list li:before {

	  content: "→";
    position: absolute;
    left: 0;
   color: #667eea;
  font-weight: bold;
	 font-size: 1.2rem;

}

.expertise-visual img {
    width: 100%;
	height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);}

.values-section {
     padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.values-container {
   max-width: 1200px;
  margin: 0 auto;
}


.values-section h2 {
  font-size: 2.5rem;
   color: white;
	 text-align  :center;
   margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.values-showcase {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.value-item {
  background: rgba(255,255,255,0.1);
  padding: 40px 30px;
   border-radius: 15px;
    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.value-item h3 {
   font-size   :1.6rem;
  color: white;
	 margin-bottom: 15px;
} 

.value-item p  {
     color: rgba(255,255,255,0.9);
	line-height: 1.6;
   font-size: 1.1rem;
	}

.journey-section {
   padding: 80px 20px;
  background-color :   #f8f9fa;
}

.journey-content {
   max-width:     1200px;
    margin: 0 auto;
}

.journey-section h2 {
    font-size: 2.5rem;
  color: #2c3e50;
    text-align: center;
  margin-bottom   :    50px; 
	
}

.journey-grid {
  display: flex;
   flex-direction    :     column;
 gap: 50px;
}

.journey-item {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.journey-item.reverse {
 direction: rtl;
}

.journey-item.reverse .journey-text {
   direction: ltr;
}

.journey-item img {
   width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.journey-text h3 {


   font-size: 1.8rem;
  color:   #2c3e50;
    margin-bottom: 15px;
	}

.journey-text p {
  font-size: 1.1rem;
    color   : #555;
    line-height: 1.8;

}

.thankyou-hero {
    margin-top: 80px;
    padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  min-height: 80vh;
  display :    flex;
    align-items: center;
}

.thankyou-container {
  max-width: 1200px;
   margin: 0 auto;
	display: grid;
    grid-template-columns: 2fr 1fr;
     gap: 50px;
  align-items: center; 

}

.thankyou-content {
   text-align: center;
    color: white;
}

.success-indicator {
  margin-bottom: 30px;
}

.checkmark-circle  {
   width: 80px;
 height: 80px;
    border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
       margin: 0 auto 20px;
    display    :  flex;
 align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.3);
}

.checkmark {
          width: 25px;
    height: 15px;
  border-left: 4px solid white;
   border-bottom: 4px solid white;
  transform: rotate(-45deg);
  margin-top: -5px;
}


.thankyou-content h1 {
               font-size: 3rem;
   margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.thankyou-message {
  font-size: 1.2rem;
  max-width: 600px;
       margin-right   :auto;
   margin-left: auto;
  opacity: 0.95;
 margin-bottom: 40px;
    line-height: 1.7;
}

.next-steps {
   margin: 50px 0;
    text-align: left;
}

.next-steps h2 {


    font-size: 2rem;
   margin-bottom: 30px;
   text-align: center;
	}

.steps-grid {

	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
    margin-bottom: 40px;
}

.step-item {
	  background: rgba(255,255,255,0.1);
    padding: 25px 20px;
	border-radius: 12px;
  text-align     :    center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.step-number {
   justify-content: center;
  border-radius: 50%;
  display: flex;
   font-weight: 700;
   font-size: 1.2rem;
    color: #f5576c;
  align-items: center;
				 height: 40px;
   background-color: white;
  width: 40px;
		 margin: 0 auto 15px;
     }

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom   :  10px;
   color: white; 

}

.step-item p {
	 font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;

}

.thankyou-actions {
   display   :  flex;
    gap: 20px;
  justify-content: center;
   flex-wrap: wrap;
   margin-top: 30px;
}

.thankyou-visual img {
  width: 100%;
               height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.additional-info	{


   padding:      80px 20px;
   background-color: white;

}

.info-container {
   max-width    :     1200px;
  margin: 0 auto;
   text-align: center;
}

.additional-info h2 {
   font-size: 2.5rem;
    color  :      #2c3e50;
 margin-bottom: 50px;
}

.info-cards {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {

	  background:   #f8f9fa;
   padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
               transition: transform 0.3s ease;

}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
   font-size: 1.5rem;
	    color: #2c3e50;
		margin-bottom: 15px;
}

.info-card p {
    color: #666;
   line-height: 1.6;
  font-size: 1.05rem;


}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .journey-item,
    .journey-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .approach-section h2,
    .values-section h2,
    .journey-section h2,
    .additional-info h2 {
        font-size: 2rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .values-showcase {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }

    .next-steps h2 {
        font-size: 1.7rem;
    }
}.policySection {
  padding: 80px 2rem;
    background :    #f8f9fa;
}

.policyContainer {
   max-width:     800px;
  margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
               font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer p {

          color: #7f8c8d;
   margin-bottom: 1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
	}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}