* {
   margin: 0;
   padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a2847;
    --primary-accent: #3d5afe;
    --secondary-accent: #00bcd4;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-light: #ecf0f1;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

html	{
    scroll-behavior    : smooth;
}



body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
    overflow-x: hidden;
}

img	{
	max-width: 100%;
  height: auto;
	display: block;
}

a {
  color: var(--primary-accent);
               text-decoration :  none;
   transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-accent);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
    margin-bottom: 1rem;
   line-height: 1.2;
}

h1 {
  font-size  :  3.5rem;
  color: var(--primary-dark);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
}

h3 {
   font-size: 1.8rem;
  color: var(--primary-dark);
}

h4 {
   font-size :   1.4rem;
  color: var(--primary-dark);
}

p {
    margin-bottom:1rem;
  color: var(--text-dark);
	line-height: 1.8;
}

.navbar {
	  background-color: var(--white);
  box-shadow: var(--shadow-sm);
 position: sticky;
	 top: 0;
  z-index   :   1000;}

.navbar-container {
  max-width: 1400px;
   margin: 0 auto;
  padding: 0 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
  height: 70px;
}

.navbar-brand {
    flex-shrink: 0;
}

.navbar-logo {
   height: 94px;
  width: auto;
  filter: brightness(0) invert(0);
}

.burger-menu {
   display: none;

	    flex-direction: column;

	    background: none;

	  border: none;

	  cursor: pointer;

	  padding: 0.5rem;
}

.burger-line {
   width: 25px;
  height: 3px;
  background-color: var(--primary-dark);
  margin : 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;

}

.nav-menu {
   display: flex;
    list-style: none;
  gap: 2rem;
    align-items: center;
}

.nav-link {

	   font-size: 1rem;
    font-weight: 600;
  color: var(--text-dark);
      transition: all 0.3s ease;
    position: relative;


}

.nav-link::after  
  {
  content: '';
     position: absolute;
   bottom: -5px;
   left: 0;
   width: 0;
	height: 2px;
  background-color: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.hero {
	max-width: 1400px;
  margin: 0 auto;
   padding     :   6rem 2rem;
 display: flex;
  align-items: center;
  justify-content: space-between;
	gap  :  4rem;
    min-height: 80vh;
}

.hero-content {
   flex: 1;
    z-index: 10;
}

.hero-content h1 {
  font-size: 3.5rem; 
	    margin-bottom: 1.5rem; 
	    line-height: 1.1; 
	  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-accent) 100%); 
	        background-clip: text;
}

.hero-subtitle {


   font-size: 1.3rem;
  color: var(--text-light);
    margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;

}

.cta-button {
 display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
  color: var(--white);
    font-size: 1.1rem;
   font-weight: 600;
   border-radius   :  50px;
  box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
   border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  flex: 1;
  position: relative;
    height: 500px;
}

.hero-shape {
    position: absolute;
    width: 100%;
   height: 100%;
  background: linear-gradient(135deg, rgba(61, 94, 254, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
         border-radius: 30px;
	 animation: floatShape 6s ease-in-out infinite;
}@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}.section-header {
  text-align: center;
 margin-bottom: 4rem;
}

.section-header h2 {
    font-size    :2.5rem;
  margin-bottom   :      0.5rem;
}

.section-header p {
  font-size:       1.2rem; 
	  color: var(--text-light);
     }

.expertise-showcase {
    max-width: 1400px;
   margin: 0 auto;
  padding: 6rem 2rem;
  background-color: var(--light-bg);
}

.expertise-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap     :  2rem;
}

.expertise-card {
	  background: var(--white);
  padding  :   2.5rem;
      border-radius: 20px;
  box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
  border: 1px solid var(--border-light);}

.expertise-card:hover	{
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.expertise-icon-wrapper {
   width: 70px;
    height: 70px;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
   border-radius: 15px;
 display     : flex;
   align-items: center;
                    justify-content: center;
    margin-bottom: 1.5rem;
}

.expertise-icon {
    width: 40px;
  height: 40px;
  filter: brightness(0) invert(1); 

}

.expertise-card h3 {
    font-size: 1.5rem;
	margin-bottom: 1rem; 

}

.expertise-card p {

	  color: var(--text-light);
 line-height: 1.8;


}

.service-deep-dive
	{
   max-width: 1400px;
    margin: 0 auto;
   padding: 6rem 2rem;
}

.dive-container {

   display: flex;
  align-items :     center;
    gap: 4rem;

}

.dive-image {
   flex: 1;
	 position    :     relative;
}

.service-image {
          width: 100%;
    border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.dive-content {
   flex: 1;
}

.dive-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.dive-content p {
  color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  line-height: 1.9;
}

.dive-benefits {
	    display: flex;
  gap: 1rem;
	flex-wrap: wrap;
   margin-top: 2rem;
     }

.benefit-item {
    display: inline-block;
  background: linear-gradient(135deg, rgba(61, 94, 254, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
   padding: 0.8rem 1.5rem;
    border-radius: 25px;
  color: var(--primary-accent);
	 font-weight: 600;
   font-size: 0.95rem;
}

.coaching-programs
{

	  max-width: 1400px;
  margin: 0 auto;
    padding: 6rem 2rem;
  background-color: var(--light-bg);}

.programs-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2.5rem;
}

.program-card {
  background: var(--white);
    padding: 2.5rem;
   border-radius: 20px;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position    :       relative;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.program-card.growth,
.program-card.premium {
  border-color: var(--primary-accent);
}

.program-card.premium {
  transform: scale(1.05);
}

.program-card h3 {
   font-size: 1.6rem;
      margin-bottom: 0.5rem;
}

.program-price {
   font-size: 1.8rem;
  color: var(--primary-accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-description {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.program-features {
  list-style: none;
   margin-top: 1.5rem;
}

.program-features li {
   padding: 0.8rem 0;
    padding-left: 1.5rem;
    position  :   relative;
  color: var(--text-dark);
}

.program-features li::before     {

	  content: '✓';
	 position: absolute;
   left: 0;
  color: var(--success-color);
         font-weight: 700;
   font-size   :   1.2rem;


}

.financial-planning {
   max-width     :      1400px;
   margin: 0 auto;
   padding: 6rem 2rem;
}

.fin-container {
  display: flex;
  align-items  :  center;
  gap: 4rem;
   flex-direction: row-reverse;
}

.fin-content {
	   flex: 1;

}

.fin-content h2 {
   font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.fin-content p {
  color: var(--text-light);
   margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.fin-image {
  flex :        1;
}

.tax-optimization {
   max-width     :     1400px;
    margin     :   0 auto;
    padding: 6rem 2rem;
  background-color: var(--light-bg);
}

.tax-container {
     display: flex;

    align-items: center;

  gap: 4rem;
}

.tax-content {
    flex: 1;
}

.tax-content h2   {

	  font-size: 2.2rem;
   margin-bottom:        1.5rem;

}

.tax-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
   font-size    :       1.05rem;
}

.tax-highlights {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
  margin-top: 2rem;
}

.highlight {
  background: var(--white);
    padding: 1.5rem;
   border-radius   :        15px;
  box-shadow: var(--shadow-sm);
}

.highlight p {
  color: var(--text-light);
   font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.highlight h4 {
    font-size: 1.8rem;
  color: var(--primary-accent);
	 margin: 0;
}

.tax-image {
    flex: 1;
}

.webinars-conferences {
  max-width: 1400px;
  margin: 0 auto;
    padding: 6rem 2rem;


}

.events-showcase {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem; 

}

.event-card


{
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-accent) 100%);
  color: var(--white);
   padding: 2.5rem;
	 border-radius: 20px;
  box-shadow: var(--shadow-md);
   transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.event-card h3 {
  color: var(--white);
    font-size: 1.5rem;
   margin-bottom: 1rem;
}

.event-card p {
  color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1rem;
}

.event-meta {
	 font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
   font-style: italic;
   margin-top: 1.5rem;
}

.compliance-focus {
   max-width: 1400px;
   margin: 0 auto;
       padding: 6rem 2rem;
  background-color: var(--light-bg);
}

.comp-container {
   align-items: center;
  flex-direction: row-reverse;
    display: flex;
  gap: 4rem;
}

.comp-content {


   flex: 1;} 

.comp-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.comp-content p {
  color: var(--text-light); 
	  margin-bottom: 1.5rem; 
	  font-size: 1.05rem;
}

.compliance-checklist {
	display: flex;
  gap  :    1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.check-item {
  display: inline-block;
  background: var(--white);
   padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: var(--primary-accent);
   font-weight: 600;
    font-size: 0.95rem;
  border: 2px solid var(--primary-accent);
}

.comp-image {
         flex     :    1;
}

.success-stories {
     max-width    :       1400px;
    margin: 0 auto;
	padding: 6rem 2rem;
     }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--border-light);
   padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
          transition: all 0.3s ease;}

.story-card:hover {
  transform: translateY(-8px);

	  box-shadow: var(--shadow-lg);
}

.story-card h3   {
   font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.story-metric
{
    font-size   :     1.8rem;
  color: var(--primary-accent);
   font-weight   :  700;
   margin-bottom: 1rem;
}

.story-text {
  color: var(--text-light);
	 font-size: 0.95rem;
      line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-timeline {
     color: var(--secondary-accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.business-owner-journey 
 {

	    max-width: 1400px;
   margin: 0 auto;
    padding: 6rem 2rem;
  background-color: var(--light-bg);}

.journey-timeline {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;


}

.journey-step		{
  background: var(--white);
  padding: 2rem;
    border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-accent);
  transition: all 0.3s ease;
}

.journey-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.journey-step h3 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
  color: var(--primary-dark); 

}

.journey-step p {
  color: var(--text-light);
  font-size: 0.95rem;
    line-height: 1.7;
}

.cta-booking {
  max-width: 1400px;
    margin: 0 auto;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-accent) 100%);
	border-radius: 20px;
  text-align: center;
  color: var(--white);
	margin   :     4rem auto;
}

.booking-content h2 {
  color: var(--white);
  font-size     :  2.2rem;
  margin-bottom    :1rem;


}

.booking-content p    {
  color: rgba(255, 255, 255, 0.95);
	font-size: 1.1rem;
			margin-bottom: 2rem;
    max-width: 600px;
  margin-left     :   auto;
       margin-right: auto;
}

.booking-button {

	  display: inline-block;
    padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--primary-accent);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
    transition: all 0.3s ease;
  box-shadow: var(--shadow-md);


}

.booking-button:hover  {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--light-bg);
}

.contact-section	{
   max-width: 1400px;
	  margin: 0 auto;
	  padding: 6rem 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}  

.contact-form {
    display: flex;
   flex-direction    :column;
  gap: 1.5rem;
}

.form-group {
          display: flex;
    flex-direction: column;
} 

.form-group label {
  font-weight :600;
	margin-bottom: 0.5rem;
  color: var(--primary-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
  border: 2px solid var(--border-light);
	border-radius     : 10px;
  font-size :   1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline :  none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(61, 94, 254, 0.1);
  background-color: var(--white);
}

.form-group textarea {
  resize: vertical;
 min-height: 120px;
}

.form-submit {
   padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
  color: var(--white);
   border:       none;
  border-radius: 10px;
    font-size: 1.05rem;
   font-weight: 700;
  cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);


}

.contact-info

{
	 display: flex;
 flex-direction: column;
        gap: 2rem;
}  

.contact-info h3 {
  font-size: 1.5rem;
}

.info-block {
  background: var(--light-bg);
  padding: 1.5rem;
    border-radius: 15px;
  border-left: 4px solid var(--primary-accent);
}

.info-block h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
   font-size  :    1.1rem;
}

.info-block p {
  color: var(--text-light);
  margin :0;
   line-height: 1.6;
}

.footer {
  background-color: var(--primary-dark);

  color: var(--white);

   padding  :       3rem 0 1rem;

   margin-top :   6rem;
}

.footer-container {
  margin: 0 auto;
   padding: 0 2rem;
   max-width :      1400px;
}

.footer-main {

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
    margin-bottom: 3rem;
   align-items:start;}

.footer-logo-img {
    height: 136px; 
	 width: auto; 
	  filter: brightness(0) invert(1); 
	   margin-bottom: 1rem;
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.1rem;
                    margin-bottom: 1rem;
}

.footer-section ul {
  list-style:   none;
}

.footer-section ul li 
 {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-accent);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom		{

  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
   text-align: center;
  color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;


}@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        flex-direction: column;
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .dive-container,
    .fin-container,
    .tax-container,
    .comp-container {
        flex-direction: column;
        gap: 2rem;
    }

    .expertise-grid,
    .programs-grid,
    .stories-grid,
    .events-showcase,
    .journey-timeline {
        grid-template-columns: 1fr;
    }

    .program-card.premium {
        transform: scale(1);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tax-highlights {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .expertise-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .expertise-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .expertise-showcase,
    .coaching-programs,
    .financial-planning,
    .tax-optimization,
    .webinars-conferences,
    .compliance-focus,
    .success-stories,
    .business-owner-journey,
    .contact-section {
        padding: 3rem 1rem;
    }

    .cta-booking {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .booking-content h2 {
        font-size: 1.5rem;
    }

    .booking-content p {
        font-size: 0.95rem;
    }

    .dive-benefits,
    .compliance-checklist {
        flex-direction: column;
    }

    .benefit-item,
    .check-item {
        width: 100%;
        text-align: center;
    }

    .program-price {
        font-size: 1.5rem;
    }

    .story-metric {
        font-size: 1.5rem;
    }
}

.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-accent) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="25" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.3;
}

.services-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.services-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideDown 0.8s ease-out;
}

.services-hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin: 0;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.services-overview {
       max-width: 1400px;
   margin: 0 auto;
  padding: 4rem 2rem;
}



.overview-container


{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.overview-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  padding: 2rem;
   border-radius: 15px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
   transition: all 0.3s ease;
	 text-align: center;}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-accent);
}

.overview-card h3 {
  font-size: 1.4rem;
    margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.overview-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
         font-size: 0.95rem;
}

.overview-link {
   display    :      inline-block;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
  color: var(--white);
  border-radius: 25px;
   font-weight: 600;
   transition: all 0.3s ease;
    font-size: 0.95rem;
}

.overview-link:hover {
	  transform: scale(1.05);}

.service-detail {


  max-width: 1400px;
   margin: 0 auto;
   padding: 5rem 2rem;


}

.service-detail.alternate {
  background-color: var(--light-bg);
}

.service-detail-container {
   display:   grid;
	 grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-container.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail-container.reverse .service-detail-image	{
   order: 2;
}

.service-detail-container.reverse .service-detail-content {
  order: 1;
}

.service-detail-image {
  position: relative;
}

.detail-image {
   width: 100%;
    border-radius: 20px;
  box-shadow: var(--shadow-lg);
   transition: all 0.3s ease; 
	
}

.service-detail-image:hover .detail-image {
  transform: scale(1.02);
}

.service-detail-content h2 {
         font-size: 2.2rem;
   margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.service-detail-content > p {
  color: var(--text-light);
   font-size: 1.05rem;
   line-height: 1.9;
   margin-bottom: 2rem; 

}

.service-highlights {
    display     :grid;
  grid-template-columns: repeat(2, 1fr);
       gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-box {
  background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
  border-left: 4px solid var(--primary-accent);
  box-shadow: var(--shadow-sm);
  transition  :       all 0.3s ease;
}

.highlight-box:hover {
  transform: translateX(5px);

  box-shadow: var(--shadow-md);
}

.highlight-box h4 {
  color: var(--primary-dark);
  font-size:     1.1rem;
  margin-bottom: 0.7rem;
}

.highlight-box p {
  color: var(--text-light);
   font-size: 0.95rem;
  margin: 0;
    line-height: 1.6;
}

.service-benefits {
  background: linear-gradient(135deg, rgba(61, 94, 254, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
      padding   :  2rem;
  border-radius: 15px;
   margin-top: 2rem;
}

.service-benefits h3 {
    font-size: 1.4rem;
   margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.benefits-list {
    list-style: none;}

.benefits-list li {
   padding: 0.8rem 0;
   padding-left: 2rem;
	position: relative;
  color: var(--text-dark);
   font-size    :    0.95rem;
    line-height: 1.6;
}

.benefits-list li::before {
  content: '✓';
    position: absolute;
  left: 0;
  color: var(--success-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.pricing-section {
   max-width     :        1400px;
 margin: 0 auto;
		padding: 6rem 2rem;
  background-color: var(--light-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
	margin-top: 3rem;
}

.pricing-card {

  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
	position: relative;
   display: flex;
    flex-direction: column;
	}

.pricing-card:hover {
     transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
	}

.pricing-card.featured {
  border-color: var(--primary-accent);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
    top: -15px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
  color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
  font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.6rem;
  margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.price {
    font-size: 2.2rem;
  color: var(--primary-accent);
    font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-desc {
  color: var(--text-light);
    font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.pricing-features {


    list-style: none;
  margin-bottom: 2rem;
   flex-grow: 1;
}

.pricing-features li {
   padding: 0.7rem 0;
  padding-left: 1.5rem;
    position: relative;
  color: var(--text-dark);
   font-size: 0.95rem;
}

.pricing-features li::before     {
  content: '✓';
    position: absolute;
               left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.pricing-cta {
  display    :   block;
    padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
  color: var(--white);
  text-align: center;
    border-radius: 10px;
	 font-weight: 700;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-process {
    max-width: 1400px;
  margin: 0 auto;
 padding: 6rem 2rem;
}

.process-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.process-step {
  background: var(--white);
  padding: 2rem;
    border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-accent);
  transition: all 0.3s ease;
    text-align: center;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width :50px;
               height: 50px;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
  color: var(--white);
  border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
   font-size: 1.2rem;
    margin-bottom :        0.7rem;
  color: var(--primary-dark);
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
   margin   :        0;
  line-height: 1.6;
}

.faq-section {
    max-width:   1400px;
   margin: 0 auto;
    padding    :  6rem 2rem;
  background-color: var(--light-bg);

}

.faq-container {
		margin-top: 3rem;
   display: grid;
   gap: 1.5rem;
}

.faq-item {
  background: var(--white);
    padding: 2rem;
               border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-accent);
   transition: all 0.3s ease; 
	
}

.faq-item:hover {
  transform: translateX(5px);

	  box-shadow: var(--shadow-md);
}

.faq-question {

	   font-size: 1.2rem;
   margin-bottom: 1rem;
  color: var(--primary-dark);
    cursor   :        pointer;
	}



.faq-item p {
  color: var(--text-light); 
	font-size: 0.95rem; 
  line-height: 1.7; 
   margin: 0;
}

.cta-final {
	max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-accent) 100%);
    border-radius: 20px;
    text-align: center;
  color: var(--white);


}



.cta-final h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
        margin-bottom: 2rem;
}

.thankyou-hero {
    min-height: 50vh; 
	    display: flex; 
	  align-items: center; 
	   justify-content: center; 
	  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%); 
	  color: var(--white); 
	  padding:2rem;
}

.success-container {
  text-align: center;
 animation:     fadeIn 0.8s ease-out;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.success-icon {
    width: 80px;

               height: 80px;

   margin: 0 auto 2rem;

  color: var(--white);

	animation: scaleIn 0.6s ease-out; 

}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.success-icon svg {
	   width: 100%;
    height: 100%;
     }

.success-container h1 {
  color: var(--white);
  font-size     :   3rem;
    margin-bottom: 0.5rem;
}

.success-subtitle {
  color: rgba(255, 255, 255, 0.95);
   font-size: 1.3rem;
	margin: 0;
}

.thankyou-content {
	max-width: 1400px;
    margin: 0 auto;
  padding: 6rem 2rem;
  background-color: var(--light-bg);
}

.thankyou-container {
  display   :       grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.thankyou-main h2 {
		font-size: 2rem;
  margin-bottom :  1rem;
  color: var(--primary-dark);
}

.thankyou-main > p {
  color: var(--text-light);
   font-size:        1.05rem;
  line-height:     1.8;
   margin-bottom: 2rem;
}

.next-steps {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
          gap    :   1.5rem;
    margin-bottom: 3rem;
}

.step-card {

	  background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-accent);


     }

.step-card h3 {
    font-size: 1.1rem;
	    margin-bottom: 0.7rem;
	  color: var(--primary-dark);
}

.step-card p {
  color: var(--text-light);
	font-size   :    0.95rem;
   margin: 0;
   line-height: 1.6;
}

.thankyou-info {

	  background: var(--white);
   padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--success-color);}

.thankyou-info h3 {
  font-size: 1.3rem;
    margin-bottom: 1rem;
  color: var(--primary-dark);
}

.thankyou-info p

{
  color: var(--text-light);
   font-size: 0.95rem;
    margin-bottom:  1rem;
}

.contact-details {
  background: var(--light-bg);
  padding: 1.5rem;
   border-radius: 10px;
  margin-top: 1rem;
}

.contact-details p {
  color: var(--text-dark);
    font-size: 0.95rem;
  margin: 0;
    line-height: 1.8;
}

.thankyou-sidebar {
   display: flex;
   flex-direction: column;
   gap: 2rem;
}

.resource-box,
.trust-box {
  background: var(--white);
	padding: 2rem;
    border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-accent);
}

.resource-box h3,
.trust-box h3
	{
   font-size  :    1.2rem;
   margin-bottom   :  1.5rem;
  color: var(--primary-dark);
}

.resource-list,
.trust-list {
   list-style:    none;
}

.resource-list li,
.trust-list li {
     padding: 0.6rem 0;
    padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
   font-size: 0.95rem;
}

.resource-list li::before,
.trust-list li::before {
  content: '→';
  position: absolute;
   left: 0;
  color: var(--primary-accent);
    font-weight: 700;
}

.resource-list a {
  color: var(--primary-accent);
	 font-weight:    600;
}

.cta-section {
  max-width: 1400px;
   margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-accent) 100%);
  border-radius: 20px;
    text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
    font-size: 2.2rem;
	margin-bottom   :       1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
  margin-bottom: 2rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .service-detail-container {
        grid-template-columns: 1fr;
    }

    .service-detail-container.reverse .service-detail-image {
        order: 1;
    }

    .service-detail-container.reverse .service-detail-content {
        order: 2;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        padding: 1.2rem;
    }

    .pricing-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .thankyou-sidebar {
        order: -1;
    }
}

@media (max-width: 480px) {
    .services-overview,
    .service-detail,
    .pricing-section,
    .service-process,
    .faq-section,
    .thankyou-content {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-content h2,
    .thankyou-main h2 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .overview-card {
        padding: 1.5rem;
    }

    .highlight-box {
        padding: 1rem;
    }

    .step-card {
        padding: 1.2rem;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }
}.policy-hero    {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-accent) 100%);
  color: var(--white);
  padding: 6rem 2rem;
    text-align: center;
  min-height     :      40vh;
               display: flex;
  align-items: center;
    justify-content: center;
}

.policy-hero h1 {
  color: var(--white);
    font-size: 3rem;
    margin: 0;
  animation: slideDown 0.8s ease-out;
}@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policy-section {

	  padding: 6rem 2rem;
  background-color: var(--light-bg);
         min-height: 70vh;
	}

.policy-container {
	max-width :900px;
  margin: 0 auto;
  background: var(--white);
   padding: 4rem;
   border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.policy-container h2 {
	font-size :     2rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
   margin-top: 2.5rem;
    font-weight: 700;
  line-height: 1.2;
}

.policy-container h2:first-child {
  margin-top: 0;
}

.policy-container p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
   line-height: 1.8;
  font-size: 1rem;
	 text-align: justify;
}

.policy-container p:last-of-type {
  margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-hero {
        padding: 4rem 1rem;
        min-height: 35vh;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 4rem 1rem;
    }

    .policy-container {
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
    }

    .policy-container h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 3rem 1rem;
        min-height: 30vh;
    }

    .policy-hero h1 {
        font-size: 1.6rem;
    }

    .policy-section {
        padding: 2.5rem 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}