* {
  margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Vendor-specific */
:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f8d;
    --accent-color: #00d4ff;
    --light-bg: #f8f9fa;
    --dark-bg: #0f1419;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #10b981;
}
	/* Cross-browser fix */
html {
  scroll-behavior:     smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif; 
	         background-color :       #ffffff; 
	  color: var(--text-dark); 
	  line-height: 1.6;
}

.navbar {
  background-color: var(--primary-color);
      padding: 1rem 2rem;
    position: sticky;
    top: 0;
                    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
	margin: 0 auto;
   display: flex;
    justify-content: space-between;
  align-items: center;


}
/* Development only */
.nav-logo {
    display: flex;
        align-items: center;
    text-decoration     :   none; 

}



.logo-img {
     height: 40px;
   width: auto;
}

/* Browser compatibility */

.nav-menu {


    display: flex;
    list-style: none;
  gap     :     2rem;


}  

.nav-item 
 {
   margin: 0;
}

.nav-link {
  color: #ffffff;

	   text-decoration: none;

	   font-weight: 500;

	  transition: color 0.3s ease, padding-bottom 0.3s ease;

	    padding-bottom: 0.25rem;

	       border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.hamburger {
  display: none;
    flex-direction: column;
                    cursor     :  pointer;
                    background :  none;
   border: none;
          padding: 0.5rem;
}

.hamburger span {
	 width: 25px;
  height: 3px;
	 background-color: #ffffff;
	margin: 5px 0;
   transition: all 0.3s ease;
    border-radius  :    2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
	
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
	
}  

.hero {

	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
         color     : #ffffff;
       padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
    min-height: 500px;
   display: flex;
    align-items: center;
	
}
	/* Performance critical */
	/* Custom modifications */
.hero-accent {
   position: absolute;
    width: 400px;
  height     :  400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
   border-radius    : 50%;
   top: -100px;
    right    : -100px;
  pointer-events: none; 

}

.hero-content {
      max-width  :     800px;
    position: relative;
    z-index: 2;


}
/* NOTE: keep for legacy support */

.hero h1 {
  font-size: 3.5rem;
   margin-bottom: 1rem;
    font-weight: 700;
  letter-spacing: -1px;
}

.hero-subtitle {
    font-size:       1.3rem;
    margin-bottom: 2rem;
  opacity: 0.95;
   line-height: 1.8;
}

.cta-button {
  display: inline-block;

	  background-color: var(--accent-color);

	  color: var(--primary-color);

	   padding: 0.9rem 2.2rem;

	   text-decoration     :   none;

	   border-radius: 8px;

	  font-weight: 600;

	  transition: all 0.3s ease;

	   cursor: pointer;

	  border: 2px solid var(--accent-color);
}

.cta-button:hover {
   background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3); 
	
}

.intro-section {
    max-width: 1100px;
	margin: 5rem auto;
   padding: 0 2rem;
}

.intro-content h2 {
	 font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.intro-content > p {
   font-size: 1.1rem;
  color: var(--text-light);
   margin-bottom: 2.5rem;
               line-height: 1.8;
}

.intro-grid {
   display : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
} 

.intro-card {

	  background: var(--light-bg);

		padding: 2rem;

	   border-radius: 12px;

	  border-left: 4px solid var(--accent-color);

	         transition: all 0.3s ease;}

.intro-card:hover    {


  transform: translateY(-5px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.intro-card h3 {
 font-size: 1.3rem;
 margin-bottom: 0.8rem;
  color: var(--primary-color); 

}

.intro-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.programs-section {


  background-color: var(--light-bg);
    padding: 4rem 2rem;
     margin-top: 3rem;}

.programs-container {


    max-width: 1200px;
   margin: 0 auto;



}

/* Production ready */


.programs-section h2 {
    text-align    :  center;
    font-size: 2.5rem;
   margin-bottom  :        3rem;
  color: var(--primary-color);
}

.programs-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
     }

.program-card {
         background: #ffffff;
    border-radius: 12px;
 overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   display: flex;
  flex-direction: column;
}

.program-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
     }

.program-image   {

   display: block;
    height: 200px;
   width: 100%;
  object-fit: cover;}

.program-card h3 {

	  font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
	}

.program-card p {
   padding: 0.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
    flex-grow: 1;
}

.program-link {
  display: inline-block;
   margin: 1rem 1.5rem 1.5rem;
  padding: 0.7rem 1.5rem;
  background-color: var(--secondary-color);
 color: #ffffff;
   text-decoration :       none;
  border-radius: 6px;
  font-weight: 500;
  transition:     all 0.3s ease;
  width :      fit-content;
}

.program-link:hover {


  background-color: var(--primary-color);
    padding-right: 2rem;}
/* Cross-browser fix */


.cta-section {
	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);

	    color: #ffffff;

	   padding: 4rem 2rem;

	  text-align: center;}

.cta-content {
   max-width: 800px;
  margin: 0 auto;
}



.cta-content h2 {
    font-size: 2.3rem;
   margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button-large {
   display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 1.1rem 2.8rem;
    text-decoration: none;
   border-radius   :      8px;
    font-weight: 600;
    font-size: 1.1rem;
   transition: all 0.3s ease;
    cursor: pointer;
  border: 2px solid var(--accent-color);
}

.cta-button-large:hover {
	    background-color :        transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);


}

.contact-section		{
		 max-width  :      900px;
    margin: 4rem auto;
   padding: 0 2rem;
}

.contact-container {
  background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
}

.contact-section h2 {
   text-align: center;
  font-size: 2.2rem;
  color: var(--primary-color);
       margin-bottom: 0.5rem;
}

.contact-intro	{
   text-align: center;
  color: var(--text-light);
    margin-bottom   :   2rem;
   font-size: 1rem;
}

.contact-form  {
	    display: grid;
    gap: 1.5rem;
}

.form-group {
     display: flex;
	flex-direction  : column;


}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
     padding: 0.9rem;
     border: 2px solid var(--border-color);
   	border-radius:  6px;
     font-family: inherit;
         font-size: 1rem;
     transition: all 0.3s ease;
       background-color: #ffffff;
     color: var(--text-dark);


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);


}


.form-group textarea {
    resize: vertical;
   min-height :     120px;
}

.submit-button {
   padding: 1rem;
  background-color: var(--secondary-color);
    color: #ffffff;
   border: none;
				 border-radius: 6px;
   font-weight: 600;
  font-size: 1rem;
   cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.submit-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 82, 0.3);
}

.footer {
  background-color: var(--primary-color);
   color: #ffffff;
               padding: 3rem 2rem 1rem;
   margin-top: 4rem;
}

.footer-container {


   max-width: 1200px;

  margin    :  0 auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 2rem;

	 margin-bottom: 2rem;
}

.footer-section h4 {

    font-size: 1.1rem;
    margin-bottom   :     1rem;
  color: var(--accent-color);


}

.footer-logo-section

{
   align-items: flex-start;
    display    :       flex;
}

.footer-logo {
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-address {
   line-height: 1.8;
   opacity: 0.9;
                    font-size: 0.95rem; 
	
}

.footer-phone {
	   margin-top: 0.5rem;
  font-weight: 500;
     }

/* Minified version */


/* Experimental feature */


/* Browser compatibility */


.footer-section ul {
  list-style:    none;
}

.footer-section ul li {
   margin-bottom     : 0.7rem;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
    transition:      color 0.3s ease;
   opacity: 0.9;
  font-size: 0.95rem;

}

.footer-section a:hover {

	  color: var(--accent-color);
  opacity: 1;
     }

.footer-hours p


{
	 margin-bottom: 0.5rem;
  opacity: 0.9;
   font-size: 0.95rem;
	
     }
	/* Temporary fix */

/* Auto-generated CSS */
.footer-bottom {
    text-align: center;
   padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}  
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-section {
        margin: 3rem auto;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .programs-section {
        padding: 2rem;
    }

    .programs-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}@media (max-width: 480px) {
    .hero {
        padding: 3rem 1.5rem;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
    padding: 5rem 2rem;
  text-align: center;
  position: relative;
   overflow: hidden;
}

.services-hero::before {
  content: '';
	position   :  absolute;
    width: 500px;
   height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
	 top   :     -200px;
  left: -100px;
               pointer-events: none;
}

.services-hero-content {
  max-width: 900px;
   margin: 0 auto;
	position: relative;
    z-index:      2;
}

.services-hero h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero p  {
   font-size: 1.2rem;
  opacity: 0.95;
}

.services-intro {
  background-color: var(--light-bg);
	 padding: 3rem 2rem;
}

.services-intro-container {
  max-width: 900px;
   margin: 0 auto;
  text-align: center; 

}

.services-intro h2 {
   font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.services-detailed {
   padding: 4rem 2rem;
}

.services-detailed-container{
    max-width: 1100px;
   margin: 0 auto;
	 display: flex;
   flex-direction :     column;
   gap: 3rem; 

}

.service-detail {
  background :  #ffffff;
	border-radius: 12px;
          overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 0;
}

.service-detail:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail:nth-child(even) {
       grid-template-columns: 1fr 1fr;}

.service-detail:nth-child(even) .service-detail-image {
    order: -1; 
	
}

.service-detail-header   {
    display: flex;
    justify-content: space-between;
          align-items: start;
   padding: 1.5rem 0 0.5rem 0;
}


.service-detail-header h3 {
                    font-size   :      1.6rem;
  color: var(--primary-color);
  margin: 0;
}

.service-badge

{
  background-color: var(--accent-color);
  color: var(--primary-color);
   padding: 0.4rem 0.9rem;
  border-radius: 20px;
    font-size: 0.8rem;
	font-weight: 600;
          white-space :    nowrap;
}

.service-detail-image {
   width: 100%;
   height: 280px;
	 object-fit: cover;
   display: block;
}

.service-detail-content {
	      display:     flex;
	  flex-direction   :      column;
	   padding   :     2rem;

}

.service-detail-content > p:first-of-type {
   font-size: 1rem;
  color: var(--text-light);
	 margin-bottom: 1.5rem;
   line-height: 1.8;
}

.service-features {
    margin: 1rem 0;
    flex-grow   :    1;
}

.service-features h4 {
    font-size  :  1rem;

  color: var(--primary-color);

    margin-bottom: 0.8rem;
}

.service-features ul {
  list-style: none;
   padding   : 0;
}

.service-features li {
      padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--text-light);
    font-size: 0.95rem;
	position: relative;
}

.service-features li::before {
  content: '→';
    position: absolute;
   left: 0;
  color: var(--accent-color);
      font-weight: bold;
}

.service-duration {
  font-size: 0.95rem;
  color: var(--text-light);
     margin-top: 1rem;
}

.service-cta
{
   display: inline-block;
	  background-color: var(--secondary-color);
	 color: #ffffff;
	    padding: 0.8rem 1.8rem;
	  text-decoration: none;
	    border-radius  :   6px;
	 font-weight: 600;
	    transition: all 0.3s ease;
	  margin-top: 1.5rem;
	    width   :      fit-content;
}

.service-cta:hover {
  background-color: var(--primary-color);
  transform: translateX(5px);
}

.pricing-section {


  background-color: var(--light-bg);
   padding: 4rem 2rem;
  margin-top: 2rem;


}

.pricing-container {
	    max-width: 1100px;
  margin: 0 auto;


}

.pricing-section h2 {

		 text-align: center;
   font-size: 2.2rem;
  color: var(--primary-color);
    margin-bottom: 0.5rem;

}

.pricing-intro {
     text-align: center;
  color: var(--text-light);
    margin-bottom: 2rem;
	}

.pricing-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem; 
	
}

.pricing-card {

	    background: #ffffff;
  padding: 2rem;
   border-radius:        12px;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
   font-size: 1.3rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
}

.pricing-desc {
  color: var(--text-light);
   font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-list {
   list-style: none;
   padding: 0;
}

.pricing-list li {
    padding: 0.5rem 0 0.5rem 1.2rem;
  color: var(--text-light);
    font-size: 0.9rem;
    position :        relative;
}

.pricing-list li::before {
  content: '✓';
	position: absolute;
   left: 0;
  color: var(--success-color);
    font-weight: bold;


}

.why-choose-section {
	padding: 4rem 2rem;
}

.why-choose-container {
    max-width: 1100px;
	 margin: 0 auto;
}

.why-choose-section h2 {
  text-align: center;
    font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.why-choose-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-choose-card {
	  background: linear-gradient(135deg, rgba(45, 95, 141, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  padding: 2rem;
    border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;

}

.why-choose-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(45, 95, 141, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.why-choose-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.why-choose-card p {
  color: var(--text-light);
    font-size: 0.95rem;
  line-height: 1.7;
}

.testimonials-section {
  background-color: var(--light-bg);
   padding: 4rem 2rem;


}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;

}

.testimonials-section h2 {
   text-align: center;
    font-size :  2.2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card  {
   background: #ffffff;
	padding: 2rem;
    border-radius   :  12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	}

.testimonial-text {
   font-size: 1rem;
  color: var(--text-dark);
   line-height: 1.8;
   margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
    font-size: 2.5rem;
  color: var(--accent-color);
   line-height: 0;
    margin-right: 0.3rem;
}

.testimonial-author {
   font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
   margin: 0;
     }

.thankyou-section {
     background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  padding: 5rem 2rem;
  min-height: calc(100vh - 300px);
			display: flex;
	 align-items  : center;

}


.thankyou-container {
  max-width: 700px;
  margin: 0 auto;
}

.thankyou-content {
  text-align: center;
}

.success-icon {
   width: 100px;
    height: 100px;
    margin    :   0 auto 1.5rem;
  color: var(--success-color);
   animation: scaleIn 0.6s ease-out;
}  

.success-icon svg {
   width :       100%;
  height     :        100%;
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1{


    font-size  :    2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
   font-size: 1.3rem;
  color: var(--accent-color);
	margin-bottom: 2rem;
}

.thankyou-message
{
   background: #ffffff;
         padding: 2rem;
    border-radius  : 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thankyou-message p {
  color: var(--text-light);
    font-size: 1rem;
   line-height: 1.8;
         margin-bottom: 1rem;
}

.thankyou-message p:last-child {
  margin-bottom: 0; 
	
}  

.thankyou-next-steps

{
  background: linear-gradient(135deg, rgba(45, 95, 141, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
  padding: 2rem;
  border-radius   :      12px;
    margin-bottom: 2rem;
  border-left: 4px solid var(--accent-color);
}

.thankyou-next-steps h3     {
  color: var(--primary-color);
	 font-size: 1.2rem;
  margin-bottom   :     1rem;
}

.steps-list {
   list-style: none;
   padding: 0;
  text-align :     left;
}

.steps-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
     color: var(--text-light);
     position: relative;
       font-size: 0.95rem;
} 

.steps-list li::before {
  content: '●';
    position: absolute;
  left: 0;
  color: var(--accent-color);
    font-weight: bold;
}

.thankyou-contact {


   background: #ffffff;
   padding: 1.5rem;
   border-radius   :  12px;
    margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);


} 

.thankyou-contact p {
       margin: 0.5rem 0;
  color: var(--text-light);
   font-size :        0.95rem;
}

.contact-phone {
   font-size: 1.3rem;
  color: var(--primary-color);
    font-weight    :      600;
    margin-top: 0.8rem; 

}

.thankyou-actions {
   display: flex;
    flex-wrap: wrap;
	 gap: 1rem;
  justify-content: center;
}

.thankyou-btn-home,
.thankyou-btn-services {
    text-decoration: none;

   font-weight: 600;

    display: inline-block;

  transition: all 0.3s ease;

  border-radius: 6px;

	 padding: 0.9rem 2rem;
}

.thankyou-btn-home {
  background-color: var(--primary-color);
   color: #ffffff;
}

.thankyou-btn-home:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.thankyou-btn-services {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.thankyou-btn-services:hover {
  background-color: var(--primary-color);
	 color: #ffffff;
  transform: translateY(-2px);
}

.related-section {
	  background-color: var(--light-bg);
     padding: 4rem 2rem;}

.related-container {
    max-width: 1100px;
   margin: 0 auto;
}

.related-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom:   2rem;
}

.related-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.related-card {
    background: #ffffff;
    padding: 1.8rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
   transition    :     all 0.3s ease;
    text-align   :     center;
}

.related-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	}

.related-card h3 {
  color: var(--primary-color);
    font-size     :       1.2rem;
  margin-bottom: 0.8rem;
}

.related-card p {
  color: var(--text-light);
    font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.related-card a 
 {
	 display: inline-block;
  color: var(--secondary-color);
   text-decoration: none;
   font-weight   :      600;
	padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
   transition: all 0.3s ease;
}

.related-card a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--accent-color);
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-detail-image {
        order: 0;
    }

    .service-detail-image {
        height: 220px;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .services-intro h2,
    .pricing-section h2,
    .why-choose-section h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-btn-home,
    .thankyou-btn-services {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1.5rem;
    }

    .services-hero h1 {
        font-size: 1.6rem;
    }

    .service-detail-header h3 {
        font-size: 1.3rem;
    }

    .service-badge {
        font-size: 0.7rem;
    }

    .service-detail-image {
        height: 180px;
    }

    .pricing-card,
    .why-choose-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .thankyou-section {
        padding: 2rem 1.5rem;
    }

    .thankyou-message,
    .thankyou-next-steps,
    .thankyou-contact {
        padding: 1.5rem;
    }
}.policySection {
   padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 350px);
	
}

.policyContainer {

	  max-width:       900px;
   margin: 0 auto;
  text-align: left;
  background: #ffffff;
  padding: 3rem;
  border-radius   :       12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}

.policyContainer h1 {
    font-size :2.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
    font-weight: 700;
  border-bottom: 4px solid var(--accent-color);
	padding-bottom    : 1rem;
}

.policyContainer h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
  margin-top  :  2rem;
  margin-bottom  :    1rem;
  font-weight: 600;
}

.policyContainer p {
	  color: var(--text-light);
	margin-bottom     :1.5rem;
    line-height: 1.9;
  font-size: 1rem;
    text-align: justify;}

.policyContainer h2:first-of-type {


  margin-top: 0;


	}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
    }
}