* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
    line-height: 1.6;
 background-color: #ffffff;
}

.navbar-main {

   position: sticky;
    top: 0;
   z-index: 1000;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
	}

.navbar-container {
    max-width: 1200px;
  margin: 0 auto;
         display: flex;
    justify-content: space-between;
  align-items: center;
    padding: 0 2rem;
}

.logo-section {
  display     :      flex;
    align-items: center;
   flex: 0 0 auto;
}

.navbar-logo

{


   height    :    40px;
	   width: auto;
	  filter: brightness(0) invert(1);


}

.nav-menu {
    display: flex;
    list-style: none;
    gap   : 2rem;
  align-items:center;
	}

.nav-link {
  color: #ffffff;
    text-decoration: none;
         font-weight: 500;
		transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
	 bottom: -5px;
  left: 0;
    width: 0;
         height: 2px;
  background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display : none;

		flex-direction  :column;

	  cursor: pointer;

	    background: none;

	    border: none;

	   gap     :        6px;
}

.line {
     transition: all 0.3s ease;
    background-color: #ffffff;
  border-radius: 2px;
	height:        3px;
  width: 25px; 

}

.menu-toggle.active .line-1 {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active .line-2		{

	 opacity: 0;

}

.menu-toggle.active .line-3 {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--secondary-color);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }
}.hero-section {
    display: flex;
  align-items: center;
    gap: 3rem;
   padding: 4rem 2rem;
   max-width: 1200px;
        margin: 0 auto;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {


   flex: 1;}

.hero-content h1 {


  font-size: 3.5rem;
    font-weight: 800;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
	}


.hero-subtitle {
       font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-button{
    display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
  text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
  border: none;
   cursor  :       pointer;
    font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}  

.hero-image {
        flex    :  1;
    width:      100%;
   height:       auto;
        border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}.section-container {
    max-width  :        1200px;
   margin: 0 auto;
          padding: 0 2rem;


}

.about-section {


  background-color    :     #ffffff;
    padding: 4rem 2rem; 
	

}

.about-section h2 {
          font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: var(--secondary-color);
   text-align: center;
}

.about-section > .section-container > p {
   font-size  :  1.1rem;
	 text-align :center;
  color: var(--text-light);
    max-width: 800px;
    margin :    0 auto 2.5rem;
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.feature-card {
   padding  :      2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
   border-radius: 12px;
  border-left: 4px solid var(--accent-color);
    transition : all 0.3s ease;
}


.feature-card:hover	{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);}

.feature-card h3 {
  font-size: 1.3rem;
	 margin-bottom  :       0.8rem;
  color: var(--primary-color);
}

.feature-card p


{
  color: var(--text-light);
	line-height: 1.7;
}


.services-preview {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.services-preview h2 {
   font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--secondary-color);
}

.services-row {
    display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap  :   2rem;


}

.service-item {
    background: white;
        border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item:hover
	{
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);


}

.service-image {
	   width: 100%;
	height     :      250px;
    object-fit: cover;


}

.service-item h3 {
  font-size: 1.4rem;
	 padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.service-item p {

	    padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
   line-height: 1.7;
     }

.services-note {
         text-align: center;
  margin-top    :       2rem;
  color: var(--text-light);
    font-style   :      italic;
}


.success-stories {
      padding: 4rem 2rem;
  background: white;
}

.success-stories h2 {
  font-size: 2.5rem;
 margin-bottom: 3rem;
  text-align: center;
  color: var(--secondary-color); 

}

.testimonials {

	                    display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial{
    padding: 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.testimonial-text {
  font-size: 1rem; 
  color: var(--text-dark); 
  margin-bottom    :     1rem; 
  line-height:     1.8; 
	font-style   :   italic; 
	
}

.testimonial-author 
 {
  color: var(--primary-color);
   font-weight: 600; 

}

.cta-section {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
   color: white;
          text-align   :  center; 
	
}

.cta-inner h2		{

	 font-size:        2.5rem;
  margin-bottom: 1rem;


}

.cta-inner p {
    margin-bottom: 2rem;
         font-size: 1.2rem;
  opacity: 0.95;
}

.cta-button-secondary {
    background: white;
  color: var(--primary-color);}

.cta-button-secondary:hover {
  background: #f0f9ff;
}

.contact-section {
   padding: 4rem 2rem;
  background: var(--bg-light);
}

.contact-section h2 {

	    font-size: 2.5rem;
    text-align: center;
   margin-bottom : 3rem;
  color: var(--secondary-color);
}

.contact-wrapper {
    display: grid;
      grid-template-columns: 1fr 1fr;
  gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;



}

.contact-form {
  background: white;
    padding: 2rem;
      border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
     margin-bottom: 1.5rem;}

.contact-form label {
  display   :     block;
    margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   width: 100%;
    padding: 0.8rem;
  border: 1px solid var(--border-color);
   border-radius: 6px;
   font-size: 1rem;
  font-family: inherit;
   transition: border-color 0.3s ease;


}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
       outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.submit-button{

	          width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
  color: white;
    border: none;
 border-radius: 6px;
   font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
	
}


.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.contact-info {
    display: flex;
 flex-direction: column;
  justify-content     : center;
}

.contact-info h3 {
    font-size     :      1.5rem;
    margin-bottom: 1.5rem;
  color: var(--secondary-color);
}  

.contact-info p {

	         margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8; 



}

.contact-info a		{
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
         transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-color);
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.footer-main {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
   color: #e2e8f0;
	 padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin    :  0 auto;
}

.footer-content {
    display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:        2rem;
   margin-bottom: 2rem;
}


.footer-logo-section {
  align-items     :        flex-start;
    display: flex;
}

.footer-logo


{
   height: 50px;
	width: auto;
  filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-address h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
   color   :   white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li 
 {
	margin-bottom: 0.8rem;
}

.footer-links a {
  text-decoration: none;
    color: #cbd5e1;
    transition: color 0.3s ease;
}  

.footer-links a:hover
	{
  color: var(--accent-color);
}

.footer-address p,
.footer-contact p {
       line-height: 1.8;
   color: #cbd5e1;
}



.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.5rem;
      text-align: center;
    color: #94a3b8;
} @media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .about-section h2,
    .services-preview h2,
    .success-stories h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
   color: white;
    padding: 3.5rem 2rem;
    text-align: center;
}

.services-hero-content h1 {
  font-size: 3rem;
   font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.services-hero-subtitle
	{
   font-size: 1.2rem;
   opacity: 0.95;
  max-width: 800px;
	margin: 0 auto;


}

.services-overview {
	 padding: 2.5rem 2rem;
	  background: var(--bg-light);
}

.overview-text     {
  text-align: center;

		 font-size: 1.1rem;

	  color: var(--text-light);

	  max-width    :   900px;

	    margin: 0 auto;

	   line-height :        1.8;
}

.services-main {
    padding: 4rem 2rem;
   background: white;
	
}

.services-list {
    display: flex;
   flex-direction: column;
	gap: 2.5rem;
	 max-width: 900px;
    margin:0 auto;
}

.service-card-full {
  border: 1px solid var(--border-color);
    border-radius: 12px;
   overflow: hidden;
     transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-card-full:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px); 

}

.service-header {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding  :   2rem;
  border-bottom: 2px solid var(--accent-color);
}

.service-header h2 {
    font-size: 1.6rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
}

.service-duration {
  color: var(--text-light);
   font-size: 0.95rem;
   font-weight: 500; 

}

.service-body {
       padding: 2rem;
	}

.service-body > p:first-child	{


  color: var(--text-light);
  margin-bottom: 1.5rem;
    line-height: 1.8;

}

.service-benefits {
   list-style: none;
   margin     :   1.5rem 0;
}

.service-benefits li {
   padding: 0.7rem 0;
   padding-left: 1.5rem;
   position: relative;
  color: var(--text-dark);
    line-height: 1.7;
}

.service-benefits li::before {
  content: '✓';
    position: absolute;
   left: 0;
  color: var(--accent-color);
                    font-weight: bold;
    font-size: 1.1rem;
}

.service-result {
    margin-top: 1.5rem;
    padding: 1rem;
  background: var(--bg-light);
   border-radius: 6px;
  color: var(--text-dark);
  border-left: 4px solid var(--primary-color);
}

.pricing-info {

	               padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  text-align  :  center;
}  

.pricing-info h2 {
	 font-size:2rem;
  color: var(--secondary-color);
  margin-bottom:     1rem;
}

.pricing-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
    max-width: 700px;
	margin-left: auto;
    margin-right: auto;
}

.thankyou-section {
  padding: 4rem 2rem;
  min-height: calc(100vh - 300px);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.thankyou-content {
    max-width: 700px;
  margin: 0 auto;
   text-align: center;
  background: white;
	padding: 3rem;
	 border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.success-icon{

   margin-bottom :   2rem;
     }

.success-icon img {
	width: 80px;
   height: 80px;
  filter: drop-shadow(0 4px 8px rgba(6, 182, 212, 0.3));
  animation: slideInDown 0.6s ease-out;
}@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.thankyou-content h1 {
   font-size: 2.5rem;
  color: var(--primary-color);
     margin-bottom: 1rem;
   font-weight: 800;
}  

.thankyou-message {
   font-size: 1.3rem;
  color: var(--secondary-color);
                    margin-bottom     :        1.5rem;
  font-weight : 600;
}

.thankyou-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom :2.5rem;
	 font-size: 1.05rem; 
	
}

.next-steps    {
  background: var(--bg-light);
  padding    :       2rem;
  border-radius :     12px;
   margin-bottom    :2rem;
   text-align  :left;
}

.next-steps h2{
	font-size:1.4rem;

  color: var(--secondary-color);

      margin-bottom: 1.5rem;

         text-align: center;
}

.steps-list {


    list-style: none;
     }

.steps-list li
	{
  padding: 1rem 0;
    padding-left  :   2rem;
  position: relative;
  color: var(--text-dark);
    line-height: 1.7;
  border-bottom: 1px solid var(--border-color);
}

.steps-list li:last-child {
       border-bottom: none;
     }

.steps-list li::before {
  content: '→';
     position: absolute;
  left: 0;
  color: var(--accent-color);
   font-weight: bold;
  font-size: 1.2rem;
}

.suggestions {
    margin-bottom: 2rem;
}

.suggestions h2 {
      font-size: 1.4rem;
  color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.suggestions p 
 {

  color: var(--text-light);
   line-height: 1.8; 
	


}

.action-buttons {
  display  :flex;
  gap: 1rem;
   justify-content: center;
   margin-top: 2rem;
   flex-wrap: wrap;

}

.cta-button-outline {
 background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button-outline:hover {

  background: var(--primary-color);
   color: white;
     }@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-header {
        padding: 1.5rem;
    }

    .service-header h2 {
        font-size: 1.3rem;
    }

    .service-body {
        padding: 1.5rem;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .cta-button {
        width: 100%;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .next-steps h2 {
        font-size: 1.2rem;
    }
}.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;
    }
}