* {
    margin: 0;
       padding: 0;
    box-sizing: border-box;
}

html {

	    scroll-behavior: smooth;}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
   line-height   :1.6;
    color: #2c3e50;
         background-color: #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 0;
   position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
   margin: 0 auto;
   padding: 1rem 2rem;
    display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-brand {
	flex-shrink     :     0;
	
}

.nav-logo {
   height  :        64px;
               width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display    :     flex;
    gap   :      3rem;
  align-items: center;
}

.nav-link {
  color  :  #e2e8f0;
  text-decoration: none;
  font-weight:        500;
  transition  :        all 0.3s ease;
  position: relative;
}



.nav-link:hover {
    color: #64b5f6;
}

.nav-link::after {
    bottom: -5px;
  width: 0;
    position :      absolute;
   transition: width 0.3s ease;
   height: 2px;
  content: '';
  background  :       #64b5f6;
			left: 0;
}


.nav-link:hover::after {
  width    :      100%;
}

.burger-menu

{
	  display :       none;
    flex-direction: column;
  gap  :6px;
  cursor: pointer;
  background   :     none;
        border: none;}

.burger-menu span {
  width: 25px;
   height: 3px;
    background-color: #e2e8f0;
   transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3)  
  {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(100, 181, 246, 0.2);
    }

    .nav-link::after {
        display: none;
    }
}.hero {
   position: relative;
  min-height:    600px;
  display: flex;
	 align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
   position: absolute;
   top: 0;
  left :        0;
	right   :        0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-content {

    text-align: center;
   color     :       white;
    z-index: 1;
  padding: 2rem;
    max-width: 800px;
     }

.hero-content h1 {
   font-size: 3.5rem;
       font-weight: 700;
               margin-bottom: 1.5rem;
    letter-spacing   :     -1px;
	 animation: slideInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.5rem;
	 margin-bottom: 2.5rem;
   opacity: 0.95;
	animation:    slideInUp 0.8s ease 0.2s both;
}

.cta-button {
      display: inline-block;
   padding: 1.2rem 3rem;
	 background-color: #1e293b;
   color   :  #64b5f6;
   text-decoration: none;
	border-radius: 50px;
   font-weight: 600;
  transition: all 0.3s ease;
          border: 2px solid transparent;
  animation: slideInUp 0.8s ease 0.4s both;
	
}

.cta-button:hover {
  background-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
   border-color     :    #64b5f6;
}@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}.section-about {
        padding: 5rem 2rem; 
	  background-color: white;


}

.section-wrapper {
	   max-width: 1200px;
	margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap :    4rem;
    align-items: center;

}

.section-about h2 {
    margin-bottom: 1.5rem;
    color   :     #1e293b;
    font-size: 2.5rem;
} 

.about-content p {
  font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
	display: grid;
   gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {

	  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
      padding: 2rem;
	 border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;


}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.feature-card h3 {
   color: #1e293b;
   margin-bottom: 1rem;
   font-size: 1.2rem;
}

.feature-card p {
		color: #64748b;
  font-size: 0.95rem;
     }

.section-image {
    width: 100%;
  border-radius: 12px;
   object-fit: cover;
	 height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);


}@media (max-width: 768px) {
    .section-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-about h2 {
        font-size: 1.8rem;
    }
}.section-expertise {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);

}

.expertise-container
{
	 max-width: 1200px;
   margin: 0 auto;
}

.section-expertise h2 {
    font-size: 2.5rem;
  margin-bottom: 3rem;
     text-align: center;
    color: #1e293b;
}

.expertise-grid {
 display: flex;
  flex-direction: column;
    gap: 3rem;
}

.expertise-item {
                    display: grid;
  grid-template-columns: 1fr 1fr;
  gap  :     3rem;
    align-items: center;
    background: white;
	 padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.expertise-item:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
}

.expertise-reversed {
   direction :    rtl;
}


.expertise-reversed > * {

	    direction: ltr;}

.expertise-image {
   width: 100%;
   height: 300px;
  object-fit    :        cover;
  border-radius: 8px;
}

.expertise-text h3 {
    font-size: 1.8rem;
  color: #1e293b;
   margin-bottom: 1rem;
}

.expertise-text p {
	font-size: 1rem;
    color  :#475569;
   line-height: 1.8;
}@media (max-width: 768px) {
    .expertise-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-reversed {
        direction: ltr;
    }

    .section-expertise h2 {
        font-size: 1.8rem;
    }
}.section-services    {
   padding: 5rem 2rem;
    background-color: white;
}

.services-wrapper {
   max-width: 1200px;
	 margin: 0 auto;
}



.section-services h2 {
    font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
  color: #1e293b;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color: white;
        padding: 2.5rem;
  border-radius: 12px;
    transition    :  all 0.3s ease;
   position   :  relative;
        overflow: hidden;
}

.service-card::before {
  content: '';
      position :        absolute;
     top: 0;
          left: -100%;
       width: 100%;
       height: 100%;
     background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.2), transparent);
     transition: left 0.4s ease;
}

.service-card:hover::before {


                    left: 100%;}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
	
}  

.service-card h3 {
   font-size: 1.4rem;
	margin-bottom: 1rem;
  position    :   relative;
  z-index: 1;
}

.service-card p {
   font-size:0.95rem;
	  line-height  :      1.7;
	    opacity    :    0.9;
	   position: relative;
	                    z-index  :    1;
}@media (max-width: 768px) {
    .services-cards {
        grid-template-columns: 1fr;
    }

    .section-services h2 {
        font-size: 1.8rem;
    }
}

.section-methodology {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
}

.methodology-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-methodology h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.methodology-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-methodology h2 {
        font-size: 1.8rem;
    }

    @media (max-width: 480px) {
        .methodology-steps {
            grid-template-columns: 1fr;
        }
    }
}

.section-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.section-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.section-contact {
    padding: 5rem 2rem;
    background-color: white;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.section-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 86px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(100, 181, 246, 0.2);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #64b5f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #64b5f6;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }
}.hero-services {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   padding: 4rem 2rem;
  text-align: center;
	 color: white;

}

.hero-services-content    {
	margin :   0 auto;
   max-width: 900px;
}

.hero-services-content h1 {
	         font-size: 3rem;
         font-weight: 700;
    margin-bottom: 1rem;
     }

.hero-services-content p {
        font-size: 1.3rem;
         opacity: 0.9;
}@media (max-width: 768px) {
    .hero-services-content h1 {
        font-size: 2rem;
    }

    .hero-services-content p {
        font-size: 1rem;
    }
}.services-detailed {
   padding: 5rem 2rem;
   background-color: #f8f9fa;
}

.services-container {
    max-width: 1200px;
        margin: 0 auto;
}

.service-detail {
					display: grid;
    grid-template-columns    :        1fr 1fr;
    gap: 3rem;
   align-items: center;
  margin-bottom     : 4rem;
   background: white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
}

.service-detail-reversed {
    direction: rtl;
}

.service-detail-reversed > * {
    direction: ltr;
}

.service-detail-image  {
  overflow: hidden; 
  border-radius: 8px;}

.service-detail-image img {
   width: 100%;
  height   :   350px;
   object-fit: cover;
    transition: transform 0.3s ease;


}

.service-detail:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content h2 {
  font-size: 2rem;
          color: #1e293b;
  margin-bottom: 1.5rem;
}

.service-detail-content > p {
  font-size: 1rem;
	color: #475569;
   line-height: 1.8;
   margin-bottom: 2rem;
}

.service-features {

  grid-template-columns: repeat(3, 1fr);
  display: grid;
    gap: 1.5rem;
  margin-bottom: 1.5rem;


}

.feature-item {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
   padding: 1.5rem;
  border-radius: 8px;
   border-left: 3px solid #667eea;
}

.feature-title {

	   font-weight: 600;
      margin-bottom    :       0.5rem;
      color: #1e293b;
      display: block;
     font-size     :        0.95rem;

}

.feature-item p {
    color: #64748b;
    font-size: 0.85rem;
   margin: 0;
}

.service-highlight {
    background: #e8eef5;
      padding: 1.2rem;
	 border-radius   :    8px;
   color: #1e293b;
	font-weight: 500;
    margin: 0 !important;
}@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .service-detail-reversed {
        direction: ltr;
    }

    .service-detail-reversed > * {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}.packages-section {
    padding: 5rem 2rem;
    background: white;
}

.packages-container {

  max-width: 1200px;
   margin: 0 auto;
     }

.packages-section h2 {
    font-size   : 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
  color: #1e293b;
}

.packages-grid {
   display: grid;
     grid-template-columns: repeat(3, 1fr);
       gap    :   2rem;
}

.package-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    border: 2px solid #e2e8f0;
   padding: 2.5rem;
    border-radius: 12px;
   transition: all 0.3s ease;
   position: relative;
}

.package-card:hover	{
  transform: translateY(-8px);
  border-color: #667eea;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.package-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
  transform: scale(1.05);
}

.package-featured .package-header h3,
.package-featured .package-header p,
.package-featured .package-features-list li,
.package-featured .package-description {
    color  :    white; 
	
}

.package-featured .package-features-list li::before {
  background-color: rgba(255, 255, 255, 0.3);
}

.package-badge {

     position: absolute;
   top :  -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
  padding: 0.5rem 1.5rem;
   border-radius: 20px;
                    font-size  :      0.85rem;
  font-weight: 600;

}

.package-header


{


         margin-bottom: 2rem;
   text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
   color: #1e293b;
  margin-bottom: 0.5rem;
}

.package-price {

	    font-size: 1.1rem;
  color: #667eea;
  font-weight: 600;
}

.package-features-list {
  list-style: none; 
	   margin-bottom: 2rem; 
	
}

.package-features-list li {
	 padding: 0.8rem 0 0.8rem 2rem;
   color: #475569;
   position:relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features-list li:last-child {
   border-bottom: none;
}

.package-features-list li::before {
  color: #667eea;
   justify-content: center;
  width: 1.5rem;
	background-color: #e8eef5;
       height: 1.5rem;
    font-size: 0.8rem;
    align-items: center;
    left: 0;
    display: flex;
      border-radius  :50%;
	font-weight:        bold;
  content: '✓';
  position: absolute;
}

.package-description	{
          color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
 margin: 0;
}@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-featured {
        transform: scale(1);
    }
}.process-section	{
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
}

.process-container {

	   max-width :  1000px;
   margin: 0 auto;
}

.process-section h2 {
    font-size: 2.5rem;
         text-align: center;
  margin-bottom: 3rem;
    color: #1e293b;
}

.process-timeline {

  position     :    relative;
        padding: 2rem 0;

}

.process-timeline::before {
  content: '';
       position   :  absolute;
     left    :       50%;
     transform: translateX(-50%);
     top: 0;
     bottom: 0;
     width: 2px;
     background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {

  margin-bottom: 3rem;
   position: relative; 
	
     }

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 52%;
  margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
   margin-left: 52%;
   margin-right: 0;
  text-align: left;
}

.timeline-point {
					position: absolute;
      left: 50%;
    top: 0;
  transform: translateX(-50%);
   width: 16px;
   height: 16px;
     background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
		 z-index: 2;
}

.timeline-content {
  background: white;
    padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.timeline-content h3 {
    color: #1e293b;
      font-size:1.2rem;
   	margin-bottom: 0.8rem;
	}

.timeline-content p {
  color: #64748b;
	    margin: 0;
	   font-size: 0.95rem;
	  line-height: 1.6;
}@media (max-width: 768px) {
    .process-timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
        text-align: left;
    }

    .timeline-point {
        left: 0;
    }
}.faq-section {
	padding: 5rem 2rem;
  background   :    white;
}

.faq-container {
   margin: 0 auto;
	max-width: 800px;
}

.faq-section h2{
  font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
   color: #1e293b;
}

.faq-items {
	 display :flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
  border: 2px solid #e2e8f0;
        border-radius: 8px;
   overflow  :     hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
}

.faq-question
	{


    width: 100%;
    padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    border    : none;
  cursor: pointer;
  display: flex;
    justify-content :  space-between;
  align-items: center;
	font-size: 1.1rem;
   font-weight   :     600;
    color: #1e293b;
    transition: all 0.3s ease;
     }

.faq-question:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eef5 100%);
}

.faq-question span:first-child {
    text-align: left;
}

.faq-toggle {
   font-size    :    1.5rem;
  transition: transform 0.3s ease;
                    color: #667eea;
}

.faq-item.active .faq-toggle {

	  transform: rotate(45deg);
     }

.faq-answer {
 padding:       0;
    background: white;
    max-height: 0;
    overflow: hidden;
   -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

.faq-item.active .faq-answer 
 {
	 max-height: 500px;

	  padding: 1.5rem;

	  border-top: 2px solid #e2e8f0;
}

.faq-answer p {
    color: #475569;
   line-height: 1.8;
               margin: 0;
}

.thankyou-hero    {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
}

.thankyou-container		{
	max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  display  :  inline-flex; 
	  align-items: center; 
	      justify-content: center; 
	   width: 80px; 
	  height: 80px; 
	  background: rgba(255, 255, 255, 0.2); 
	  border-radius: 50%; 
	    font-size: 3rem; 
	   margin-bottom: 2rem; 
	          animation:scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-hero h1 {
    font-size: 3rem;
   margin-bottom: 1rem;
    font-weight     : 700;
}

.thankyou-hero > p {

	               font-size: 1.3rem;
  opacity: 0.95;
      margin-bottom     :      2rem;
}

.success-message {
  background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-message p {
    margin-bottom: 1rem;
               line-height  :        1.8;
}

.success-message p:last-child 
 {
   margin-bottom: 0; 

}@media (max-width: 768px) {
    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .thankyou-hero > p {
        font-size: 1rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-box h3 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step-box p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 480px) {
        .steps-grid {
            grid-template-columns: 1fr;
        }
    }
}

.contact-info-thankyou {
    padding: 3rem 2rem;
    background: white;
    text-align: center;
}

.contact-info-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-thankyou h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info-thankyou > p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

.direct-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
    padding: 2rem;
    border-radius: 12px;
}

.contact-item {
    text-align: center;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .direct-contact {
        grid-template-columns: 1fr;
    }
}.services-reminder {


    padding: 4rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
         text-align: center;


}

.reminder-container {
  max-width: 700px;
       margin: 0 auto;
}

.services-reminder h2 {
                    font-size: 2rem;
   color: white;
   margin-bottom: 1rem;
}

.services-reminder p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.9;
}

.back-home {
  padding: 3rem 2rem;
   background-color: white;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.home-container {

    max-width: 600px;
      margin: 0 auto;
     }

.back-home p    {
   font-size: 1rem;
                    color: #475569;
    margin-bottom     :  1.5rem;
}

.home-link {
               display: inline-block;
        padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-decoration: none;
    border-radius: 50px;
  font-weight: 600;
   transition: all 0.3s ease;
}

.home-link:hover {

  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);}

.cta-final {

	   padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    text-align    :        center;
    margin    :       3rem 0 0 0;}

.cta-final-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 2.5rem;
               margin-bottom: 1.5rem;
  color: white;
}

.cta-final p {

	opacity: 0.95;
   margin-bottom: 2.5rem;
    line-height: 1.8;
   font-size: 1.1rem;}

.policy-hero

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 4rem 2rem;
  text-align:       center;
    color: white;


}

.policy-hero-content {
   max-width: 900px;
   margin: 0 auto;
     }

.policy-hero-content h1 {
   font-size: 3rem;

	    font-weight: 700;

	  margin-bottom: 1rem;
}

.policy-hero-content p {
   font-size: 1.3rem;
   opacity: 0.9;
	
}@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 2rem;
    }

    .policy-hero-content p {
        font-size: 1rem;
    }

    .policy-hero {
        padding: 3rem 1rem;
    }
}.policySection {
   background:#f8f9fa;
   padding :    5rem 2rem;
}

.policyContainer		{
   margin: 0 auto;
  text-align: left;
	max-width:   900px;
}

.policyContainer h2 {
  font-size: 2rem;
    color: #1e293b;
	margin-bottom: 1.5rem;
  margin-top: 2.5rem;
	 font-weight   :      700;
    position: relative;
    padding-bottom   : 0.5rem;
}

.policyContainer h2:first-child {
      margin-top   :       0; 
}

.policyContainer h2::after {
  content: '';
     position:absolute;
     bottom: 0;
       left: 0;
      width:   60px;
     height: 3px;
     background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
      border-radius  :    2px;
}

.policyContainer p {
  color: #475569;
   margin-bottom: 1.5rem;
    line-height: 1.8;
   font-size: 1rem;
}


.policyContainer p:last-child {
  margin-bottom: 0;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h2 {
        font-size: 1.4rem;
    }

    .policySection {
        padding: 2rem 1rem;
    }
}