* {
   margin: 0;
  padding: 0;
   box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
   color: #2c3e50;
    line-height: 1.6;
  background: #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   padding: 1rem 0;
    position: sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	
}

.nav-container {
	 max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
    display: flex;
    justify-content :      space-between;
   align-items: center;
}

.nav-brand {
    display: flex;
    align-items    :   center;
      gap: 0.8rem;
}

.logo-img {
   height: 94px;
    width: auto;
  filter: brightness(0) invert(1);
}

.brand-text {

   font-size: 1.8rem;
    font-weight: 700;
   color:        white;
   letter-spacing: -0.5px;
     }

.nav-menu {

   display: flex;

    gap: 2.5rem;}

.nav-link {
  color: rgba(255,255,255,0.85);
    text-decoration: none;
   font-weight: 500;
   font-size :1rem;
    position: relative;
  transition: color 0.3s ease;
	
}

.nav-link::after {
  content: '';
    position: absolute;
  bottom: -5px;
       left: 0;
    width: 0;
  height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
  width     :  100%;
}

.nav-link:hover {
  color:    #00d4ff;
}

.nav-link.active {
  color: #00d4ff;
}

.hamburger {


         flex-direction: column;
	gap: 6px;
   cursor: pointer;
   display: none;
	
	}

.hamburger span {
  width: 28px;
	height     :3px;
    background: white;
      border-radius: 2px;
    transition: all 0.3s ease;

}  

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
} 

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding   :      5rem 2rem;
   color    :  white;
	 display: grid;
	grid-template-columns: 1fr 1fr;
  gap:   3rem;
    align-items: center;
  max-width: 1400px;
  margin: 0 auto;}

.hero-content h1 {
    font-size: 3.2rem;
  line-height: 1.2;
   margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
      font-size: 1.1rem;
 margin-bottom: 2rem;
    opacity: 0.95;
  line-height: 1.7;
}

.cta-button {
    display: inline-block; 
	   background: #00d4ff; 
	  color: #1a1a2e; 
	   padding: 1rem 2.5rem; 
	   border-radius: 50px; 
	  text-decoration: none; 
	  font-weight: 600; 
	  transition: all 0.3s ease; 
	  border: 2px solid #00d4ff; 
	  font-size: 1rem;
}

.cta-button:hover {
   background: transparent;
   color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,212,255,0.3);
}

.hero-image img {
    width: 100%;
   height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.section-container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-section {
    padding :  5rem 2rem;
   background: white;
}

.intro-section h2		{
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #1a1a2e;
}

.intro-grid  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.intro-card {
    background: #f0f4ff;
  padding: 2.5rem;
    border-radius: 12px;
	border-left: 4px solid #667eea;
    transition     :      transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102,126,234,0.15);
}

.intro-card h3 {
   color: #667eea;
  font-size: 1.5rem;
       margin-bottom: 1rem;

}

.intro-card p {
   color: #555;
  line-height: 1.8;
} 

.services-preview {

	   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-preview h2 {
  text-align: center;
  font-size: 2.5rem;
 margin-bottom   :      3.5rem;
    color: #1a1a2e;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
}

.service-item {

	   background: white;
	border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(102,126,234,0.25);
}

.service-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-item h3 {
   padding: 1.5rem 1.5rem 0.8rem;
    color: #1a1a2e;
	 font-size: 1.4rem;
}

.service-item p {
   color: #666;
  padding: 0.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
                    line-height: 1.7;
}

.benefits-section {
   background:white;
		 padding: 5rem 2rem;
}

.benefits-section h2 {
   text-align: center;
  font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #1a1a2e;
	
}

.benefits-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.benefit-item {

   padding: 2.5rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-radius: 10px;
    border-right: 3px solid #764ba2;
   position: relative;
	}

.benefit-number {
   position: absolute;
   top: -12px;
  left: 2.5rem;
    background: #667eea;
  color  :  white;
     width: 50px;
    height: 50px;
   border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content: center;
  font-weight: 700;
    font-size: 1.3rem;
}

.benefit-item h3 {
    color: #1a1a2e;
   font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item p {
   color: #555;
    line-height: 1.8;
}

.process-section {
	padding: 5rem 2rem;
   background: #f0f2f5;
}

.process-section h2 {
  text-align: center;
  font-size: 2.5rem;
   margin-bottom: 3.5rem;
  color: #1a1a2e;
}

.process-flow {


  display :   flex;
    justify-content  :     space-between;
    align-items: center;
   flex-wrap   :       wrap;
        gap: 2rem;


}

.process-step {


    flex: 1;
    min-width   : 280px;
   background: white;
    padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
     }

.step-header {
    color: #667eea;
      font-weight: 700;
  font-size: 1.2rem;
   margin-bottom: 1rem;
}

.process-step p {
    color    : #666;
   line-height     :1.7;
}

.arrow-divider {
    font-size :    2rem;
    color: #667eea;
    font-weight: 700;
    opacity     :     0.7;
}

.success-stories {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
}

.success-stories h2 {
  color: #1a1a2e;
   font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap   :  2.5rem; 

}

.story-card {
  background: white;
   padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   border-top: 4px solid #764ba2;
}

.story-card p {
   color  :       #555;
   font-style: italic;
    line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-card h3 {
    color  :  #1a1a2e;
   font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.webinar-section {
	 padding: 5rem 2rem;
  background: white;
}

.webinar-section h2 {
    text-align: center;
  font-size: 2.5rem;
   margin-bottom :       1.5rem;
    color: #1a1a2e;
}

.section-intro {
   text-align: center;
  color: #666;
   font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
    line-height   :        1.7;
}

.webinar-items {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.webinar-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 2.5rem;
    border-radius: 10px;
  border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.webinar-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102,126,234,0.2);
	}

.webinar-card h3
	{
	font-size: 1.2rem;
       color  :        #1a1a2e;
  margin-bottom: 1rem;
}

.webinar-card p {
     color: #666;
    line-height: 1.7;
}

.methodology-section {
   background: white;
   padding: 5rem 2rem;
}

.methodology-section h2 {
  text-align: center;
   font-size: 2.5rem;
	margin-bottom: 3.5rem;
   color: #1a1a2e; 

}

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.method-card {
    background: white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.method-card:hover {
  transform: translateY(-10px); 
	  box-shadow: 0 18px 40px rgba(102,126,234,0.2);
}

.method-card img   {
    width: 100%;
  height: 200px;
  object-fit: cover;
}

.method-card h3 {
    color: #667eea;

	font-size: 1.3rem;

   padding :     1.5rem 1.5rem 0.8rem;
}

.method-card p {

   color: #666;
   padding: 0.5rem 1.5rem 1.5rem;
    line-height: 1.7;
                    font-size: 0.95rem;
	}

.testimonials-section {
	   padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
     }

.testimonials-section h2 {
  text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
        color: white;
}

.testimonials-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

	  gap:    2.5rem;

}

.testimonial-card {
  background: rgba(255,255,255,0.1);
    padding: 2.5rem;
   border-radius: 10px;
    border-left: 3px solid #00d4ff;
  backdrop-filter: blur(10px);
}

.testimonial-card p {
                    font-style: italic;
    line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.95);
}

.testimonial-author {
   color: #00d4ff;
  font-weight: 600;
}

.cta-main {


   padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   color: white;
    text-align: center;


}

.cta-main h2 {
    font-size: 2.5rem; 
		 margin-bottom: 1.5rem;
}

.cta-main p {
   font-size: 1.1rem;
   margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
   margin-left: auto;
    margin-right: auto; 

}

.cta-button-large {
   display: inline-block;
    background: #00d4ff;
    color: #1a1a2e;
    padding: 1.2rem 3rem;
    border-radius: 50px;
  text-decoration :     none;
    font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #00d4ff;
}

.cta-button-large:hover {
   background: transparent;
   color: #00d4ff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,212,255,0.3);
}  

.contact-section {
   padding: 5rem 2rem;
    background   : #f8f9fa;
}

.contact-section h2
	{
          text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3.5rem;
   color: #1a1a2e;
}

.contact-wrapper {
  display    :     grid;

	  grid-template-columns: 2fr 1fr;

	  gap: 3rem;

	    max-width : 1000px;

	  margin    :       0 auto;
}

.contact-form {
  background: white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom    :2rem;
}

.form-group label {
	font-weight: 600;
   margin-bottom: 0.8rem;
  color: #1a1a2e;
   display: block;
   font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
    font-size: 1rem;
   transition: border-color 0.3s ease;
}

.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);
}

.form-submit {
    width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 1rem;
    border: none;
   border-radius: 6px;
   font-size: 1rem;
   font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px); 
  box-shadow: 0 10px 25px rgba(102,126,234,0.3);
}

.contact-info {
       background: white;
  padding: 3rem;
 border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: fit-content;
	}

.contact-info h3 {
    color: #1a1a2e;
   font-size: 1.4rem;
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item strong {
  color: #667eea;
   display: block;
  margin-bottom: 0.5rem;
}

.info-item p
{
    color: #666;
    line-height: 1.6;
}

.footer  {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
     padding: 4rem 2rem 2rem;
}

.footer-content


{
	   max-width: 1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: auto 1fr;
  gap: 4rem;
   align-items  :start;
    margin-bottom: 3rem;
     }

.footer-brand img

{
   height: 136px;
   width :  auto;
  filter: brightness(0) invert(1);
}

.footer-links-section {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {

  color: #00d4ff;
  margin-bottom: 1.5rem;
    font-size: 1rem;


} 

.footer-column a {
      display: block;
  color: rgba(255,255,255,0.8);
    text-decoration: none;
  margin-bottom: 0.8rem;
   transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00d4ff; 

}

.footer-column p  
  {


  color: rgba(255,255,255,0.8);
   line-height     :   1.7;
    margin-bottom: 0.8rem;
}

.footer-bottom {
   text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 2rem;
  color: rgba(255,255,255,0.7);
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .intro-section,
    .services-preview,
    .benefits-section,
    .process-section,
    .success-stories,
    .webinar-section,
    .methodology-section,
    .testimonials-section,
    .cta-main,
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .intro-section h2,
    .services-preview h2,
    .benefits-section h2,
    .process-section h2,
    .success-stories h2,
    .webinar-section h2,
    .methodology-section h2,
    .testimonials-section h2,
    .cta-main h2,
    .contact-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .arrow-divider {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 70px;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .intro-section h2,
    .services-preview h2,
    .benefits-section h2,
    .process-section h2,
    .success-stories h2,
    .webinar-section h2,
    .methodology-section h2,
    .testimonials-section h2,
    .cta-main h2,
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .intro-grid,
    .services-grid,
    .benefits-list,
    .stories-grid,
    .webinar-items,
    .methodology-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .footer-brand img {
        height: 100px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding :4rem 2rem;
   color   :        white;
   text-align: center;
    min-height: 300px;
  display  :       flex;
   align-items  :      center;
   justify-content: center;
}

.services-hero-content h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.services-hero-content p {
    font-size: 1.2rem;
   opacity: 0.95;
}

.service-detailed {
  padding: 4rem 2rem;
   background     :  white;
    border-bottom: 1px solid #eee;
}

.service-detailed.alt-layout {
    background   :        #f8f9fa;
}

.service-detailed h2 {
               font-size: 2.2rem;

	    color: #1a1a2e;

	    margin-bottom: 2.5rem;

	  padding-bottom: 1.5rem;

	   border-bottom  :3px solid #667eea;


}

.service-grid-detailed
{

    display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
   align-items: flex-start;
     } 

.service-content h3 {
   color: #667eea;
   font-size: 1.5rem;
                    margin-bottom: 1.2rem;
}

.service-content p {
   color: #555;
   line-height: 1.8;
    margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.subsection-title {
    color: #1a1a2e;
  font-size: 1.1rem;
   font-weight :      600;
	 margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.service-list {
   list-style: none;
   padding: 0;
  margin-bottom  :   1.5rem;
}



.service-list li {
    padding: 0.8rem 0 0.8rem 2rem;
  color: #555;
    position:  relative;
	 line-height: 1.6;
}

.service-list li::before {
  content: '✓';
    position: absolute;
                    left: 0;
  color: #667eea;
    font-weight: bold;
    font-size    :        1.2rem;
}

.service-visual img {
   width   : 100%;
    height: auto;
	border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
   object-fit: cover;
}


.comparison-section {
	    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.comparison-section h2 {
    text-align: center;
   font-size: 2.2rem;
    color: #1a1a2e;
	 margin-bottom: 3rem;
}

.comparison-table {
  background     :     white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.table-header {
          display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
    font-weight: 600;
    padding: 1.5rem; 

}

.header-cell {
   padding: 1rem;
   text-align    :    left;
   font-size: 0.95rem;
}

.table-row {
   padding: 1.5rem;
  display  :grid;
  grid-template-columns: repeat(5, 1fr);
					border-bottom: 1px solid #eee;
}

.table-row:last-child {
   border-bottom: none;
}

.table-row:hover {
	   background: #f8f9fa;


     }

.table-cell {

    padding: 0.8rem;
  color: #555;
	 font-size: 0.9rem;
}

.faq-services {
   padding: 4rem 2rem;
  background    : white;
}

.faq-services h2 {
    margin-bottom: 3rem;
  text-align: center;
  color: #1a1a2e;
  font-size: 2.2rem; 
	
}

.faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap     :    2.5rem;
}

.faq-item {
   background: #f8f9fa;
   padding: 2rem;
   border-radius: 10px;
   border-left: 4px solid #667eea;
    transition: all 0.3s ease;

}

.faq-item:hover  
  {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102,126,234,0.15);


}



.faq-item h3


{
     color: #1a1a2e;
   font-size: 1.1rem;
                    margin-bottom: 1rem;


}

.faq-item p {
    color     :     #666;
  line-height: 1.7;

}

.cta-services {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
               color   :     white;
        text-align: center;
}

.cta-services h2 {
  font-size: 2.2rem;
     margin-bottom: 1rem;
}

.cta-text {
	    font-size   :    1.1rem;
    margin-bottom: 2.5rem;
   opacity   :    0.95;


}

.cta-buttons {
  display: flex;
   justify-content: center;
    gap: 1.5rem;
          flex-wrap: wrap;
	
}

.cta-btn {
	  display   :  inline-block;
    background: #00d4ff;
    color: #1a1a2e;
   padding: 0.9rem 1.8rem;
    border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
    transition :      all 0.3s ease;
  border: 2px solid #00d4ff;
    font-size: 0.95rem;


}

.cta-btn:hover {
    background: transparent;
   color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,212,255,0.3);
}

.thankyou-section {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 200px);
         display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container {

	   background : white;
   border-radius: 15px;
    padding  :        4rem 3rem;
  max-width: 700px;
   width: 100%;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
 text-align   :   center;


}

.success-icon {
   color: #2ecc71;
  margin-bottom: 1.5rem;
   animation: scaleIn 0.6s ease forwards;
}@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.success-icon svg {
    display: inline-block;
}

.thankyou-container h1 {
    font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  font-weight     : 800;
}

.thankyou-container h2  {

	  font-size: 1.8rem;
     color: #667eea;
    margin-bottom: 1.5rem;
  font-weight: 600;
	}

.thankyou-main-text {
  color: #555;
  font-size: 1.05rem;
   line-height: 1.7;
	margin-bottom: 2.5rem;
}

.next-steps {
  margin: 3rem 0;
   padding: 2.5rem 0;
   border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.next-steps h3 
 {
    color: #1a1a2e;
  font-size: 1.5rem;
   margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  margin-bottom: 1.5rem;
}

.step-item {
  text-align: center;
}

.step-number {
   width: 50px;
   height    :     50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
          border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content    : center;
  font-weight: 700;
    font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.step-item h4 {
   color: #1a1a2e;
  font-size: 1rem;
   margin-bottom: 0.5rem;
}

.step-item p {
  color: #666;
  font-size: 0.85rem;
    line-height: 1.6;
}

.contact-reminder {
  margin: 2.5rem 0;
  background :  #f0f4ff;
   padding: 2rem;
   border-radius: 10px;
   border-left: 4px solid #667eea;
}

.contact-reminder h3 {
    color: #1a1a2e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-reminder p	{
  color     :       #666;
   margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-details {
  background: white;

   padding: 1.5rem;

   border-radius: 8px;

  margin-top: 1rem;
}

.contact-details p {
	   color: #1a1a2e;
  margin-bottom: 0.5rem;
	}

.contact-details strong {
    color :#667eea;
}

.additional-info {
       margin: 2.5rem 0;
}

.additional-info h3 {
       color: #1a1a2e;
   font-size: 1.2rem;
  margin-bottom: 1rem;
	}

.additional-info p{
   color: #666;
    line-height: 1.7;
}

.additional-info a {
  color     :    #667eea;
   text-decoration: none;
   font-weight: 600;
    transition: color 0.3s ease;
	
}

.additional-info a:hover {
  color: #764ba2;
}

.return-home-btn {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 2rem;
	border: 2px solid transparent;
}

.return-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102,126,234,0.3);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detailed {
        padding: 2.5rem 1.5rem;
    }

    .service-detailed h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .service-grid-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }

    .header-cell,
    .table-cell {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thankyou-container {
        padding: 2.5rem 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .thankyou-container h2 {
        font-size: 1.3rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detailed h2 {
        font-size: 1.3rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        padding: 0.8rem;
    }

    .header-cell,
    .table-cell {
        padding: 0.4rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
  padding   :      5rem 2rem;

    background: #f8f9fa;

  min-height: calc(100vh - 300px);
}

.policyContainer {
  max-width: 900px;
    margin: 0 auto;
    text-align: left;


}

.policyContainer h1 {
         font-size: 2.8rem;
    color: #1a1a2e;
  margin-bottom: 2.5rem;
  font-weight: 800;
    text-align :center;
   padding-bottom: 1.5rem;
   border-bottom: 3px solid #667eea;
}

.policyContainer h2 {
    font-size  :    1.8rem;
  color: #667eea;
    margin-top: 2.5rem;
   margin-bottom: 1.2rem;
    font-weight: 700;
}

.policyContainer p {
   color: #555;
    margin-bottom: 1.3rem;
   line-height: 1.8;
  font-size:  0.95rem;
}

.policyContainer strong {
	color: #1a1a2e;
   font-weight: 600;
}

.policyContainer a {
    color: #667eea;
   text-decoration: none;
   transition    :        color 0.3s ease;
}

.policyContainer a:hover {
  color: #764ba2;
   text-decoration: underline;
}@media (max-width: 1024px) {
    .policyContainer {
        max-width: 850px;
    }
    
    .policyContainer h1 {
        font-size: 2.4rem;
    }
    
    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 3.5rem 1.5rem;
    }
    
    .policyContainer {
        max-width: 100%;
    }
    
    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.75;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2.5rem 1rem;
    }
    
    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .policyContainer p {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}