* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /* Desktop layout */
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
  }
  
  /* Hide toggle by default */
  .mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
  }
  
  nav {
    background-color: white;
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
  }
  
  .navbar li {
    margin: 0 15px;
    color: black;
    cursor: pointer;
  }
  
  .navbar a {
    color: black;
    text-decoration: none;
  
  }
  
  .navbar li:hover {
    opacity: 0.8;
  }
  
  .logo {
    color: rgb(9, 8, 8);
    font-size: 1.5em;
    text-decoration: none;
    font-weight: bold;
    padding-right: 50px;
    margin: 10px;
  }
  
  /* Dropdown Container */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding-top: 20px;
    /* Pushes the entire dropdown content down */
    list-style: none;
    display: none;
    width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    text-align: left;
    border-top: 3px solid #002244;
  }
  
  /* Show menu on hover (desktop) */
  .dropdown:hover .dropdown-menu,
  .dropdown-menu:hover {
    display: block;
  }
  
  /* Dropdown Items */
  .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f5f5f5;
  }
  
  /* Enhanced dropdown functionality for mobile */
  @media (max-width: 768px) {
    .dropdown-menu {
      display: none !important;
      /* Make sure it's hidden initially */
    }
  
    .dropdown.active .dropdown-menu {
      display: block !important;
      /* Only show when dropdown is active */
    }
  }
  

.btn-yellow {
    background-color: #f5de58;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .btn-yellow:hover {
    background-color: #e0c22f;
  }
  
/* Container Settings */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A90E2 0%, #5E72E4 100%);
    padding: 120px 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/backg.jpg');
    background-size: cover;
    opacity: 0.6;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero .cta-button {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    background-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(111, 207, 151, 0.4);
}

.hero .cta-button:hover {
    background-color: var(--secondary-dark);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Global Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Enhanced Special Offer Section with Premium Styling */
:root {
    /* Refined Color Palette */
    --primary: #3E64FF;
    --primary-light: #5A7BFF;
    --primary-dark: #2E4CD0;
    --secondary: #2DCE89;
    --secondary-light: #4DE5A6;
    --secondary-dark: #24AA74;
    --accent: #FF6B6B;
    --accent-light: #FFECEC;
    --text-dark: #1A202C;
    --text-medium: #4A5568;
    --text-light: #718096;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-lighter: #F0F4F8;

    /* Advanced Gradients */
    --gradient-primary: linear-gradient(135deg, #3E64FF 0%, #5A7BFF 100%);
    --gradient-secondary: linear-gradient(135deg, #2DCE89 0%, #4DE5A6 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
    --gradient-light: linear-gradient(135deg, #EDF2F7 0%, #F7FAFC 100%);

    /* Professional Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 32px rgba(0, 0, 0, 0.12);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-focus: 0 0 0 3px rgba(62, 100, 255, 0.25);

    /* Typography Variables */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Container Settings */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* Special Offer Section */
.special-offer {
    position: relative;
    background: var(--bg-white);
    margin-top: -80px;
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    overflow: hidden;
    z-index: 10;
    transform: translateY(0);
    transition: var(--transition-bounce);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Glass effect and enhanced hover */
.special-offer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.special-offer:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 25px 50px -12px rgba(62, 100, 255, 0.15);
}

/* Decorative Elements */
.special-offer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(62, 100, 255, 0.08) 0%, rgba(62, 100, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.special-offer::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(45, 206, 137, 0.08) 0%, rgba(45, 206, 137, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Badge */
.special-offer-badge {
    position: absolute;
    top: 0;
    right: 3rem;
    background: var(--gradient-accent);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    transform: translateY(-100%);
}

/* Heading Styles with enhanced decorations */
.special-offer h2 {
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.8s ease forwards;
}

.special-offer h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Decorative dots */
.special-offer h2::before {
    content: '•••';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-light);
    font-size: 1.5rem;
    letter-spacing: 8px;
    opacity: 0.7;
}

.special-offer p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 2.75rem;
    line-height: 1.7;
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Price Display with 3D effect */
.special-offer-details {
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.special-offer-price {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 2.5rem;
    position: relative;
    transition: var(--transition-normal);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Price background glow effect */
.special-offer-price::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(45, 206, 137, 0.1) 0%, rgba(45, 206, 137, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-slow);
}

.special-offer:hover .special-offer-price::before {
    opacity: 1;
    transform: scale(1);
}

.special-offer-price small {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.75rem;
    letter-spacing: 0.5px;
}

/* Offer Items with enhanced cards */
.special-offer-includes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.special-offer-item {
    display: flex;
    align-items: center;
    background: var(--bg-lighter);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    min-width: 220px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: slideInStaggered 0.7s var(--transition-bounce) both;
    animation-fill-mode: both;
}

/* Staggered animation timing */
.special-offer-item:nth-child(1) {
    animation-delay: 0.6s;
}

.special-offer-item:nth-child(2) {
    animation-delay: 0.8s;
}

.special-offer-item:nth-child(3) {
    animation-delay: 1s;
}

/* Enhanced hover effects for cards */
.special-offer-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(to right, var(--bg-lighter), white);
    border-color: rgba(226, 232, 240, 0.3);
}

/* Subtle background pattern */
.special-offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f0f4f8' fill-opacity='0.6' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: -1;
    transition: var(--transition-normal);
}

.special-offer-item:hover::before {
    opacity: 0.5;
}

/* Enhanced icon styling */
.special-offer-item i {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-right: 1rem;
    background: rgba(45, 206, 137, 0.12);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-xs);
    position: relative;
}

/* Icon inner glow */
.special-offer-item i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(45, 206, 137, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.special-offer-item:hover i {
    background: var(--gradient-secondary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.special-offer-item:hover i::after {
    opacity: 1;
    transform: scale(1.2);
}

.special-offer-item span {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.special-offer-item:hover span {
    color: var(--primary);
}

/* Call to Action Button with premium styling */
.special-offer .cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 16px rgba(62, 100, 255, 0.25);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    z-index: 1;
    animation: pulseButton 2.5s infinite;
}

/* Button gradient shine effect */
.special-offer .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: var(--transition-slow);
    z-index: -1;
}

.special-offer .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(62, 100, 255, 0.4);
    background-image: linear-gradient(135deg, #4A6FFF 0%, #5A7BFF 100%);
}

.special-offer .cta-button:hover::before {
    left: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInStaggered {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseButton {
    0% {
        box-shadow: 0 8px 16px rgba(62, 100, 255, 0.25);
    }

    50% {
        box-shadow: 0 8px 24px rgba(62, 100, 255, 0.5);
    }

    100% {
        box-shadow: 0 8px 16px rgba(62, 100, 255, 0.25);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    60% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Design with cleaner breakpoints */
@media (max-width: 1100px) {
    .special-offer {
        padding: 3rem 2.5rem;
    }

    .special-offer-price {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .special-offer {
        margin-top: -60px;
        padding: 2.5rem 1.75rem;
    }

    .special-offer h2 {
        font-size: 2rem;
    }

    .special-offer-price {
        font-size: 3.25rem;
    }

    .special-offer-includes {
        flex-direction: column;
        align-items: center;
    }

    .special-offer-item {
        width: 100%;
        max-width: 320px;
    }

    .special-offer-badge {
        right: 2rem;
    }
}

@media (max-width: 576px) {
    .special-offer {
        margin-top: -40px;
        padding: 2rem 1.25rem;
        border-radius: var(--radius-md);
    }

    .special-offer h2 {
        font-size: 1.75rem;
    }

    .special-offer h2::before {
        top: -25px;
        font-size: 1.25rem;
    }

    .special-offer p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .special-offer-price {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .special-offer .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .special-offer-badge {
        right: 1.5rem;
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
}

/* What to Expect Section */
.what-to-expect {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    position: relative;
    overflow: hidden;
  }
  
  .what-to-expect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3182ce, #63b3ed, #90cdf4);
  }
  
  .what-to-expect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(99, 179, 237, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 10%, rgba(49, 130, 206, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #2c5282;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3182ce, #63b3ed);
    border-radius: 3px;
  }
  
  .section-description {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #4a5568;
  }
  
  .expect-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .expect-step {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid transparent;
  }
  
  .expect-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-bottom: 4px solid #63b3ed;
  }
  
  .step-number {
    background: linear-gradient(135deg, #3182ce, #63b3ed);
    color: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.3);
    position: relative;
    z-index: 1;
  }
  
  .step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
  }
  
  .step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .expect-steps {
      grid-template-columns: 1fr;
    }
    
    .section-title {
      font-size: 30px;
    }
    
    .what-to-expect {
      padding: 60px 0;
    }
  }
/* You-First Approach Section Styling */
.you-first-section {
    padding: 100px 0;
    background: linear-gradient(120deg, #f8faff 0%, #f0f5ff 100%);
    position: relative;
    overflow: hidden;
}

.you-first-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 180, 250, 0.1) 0%, rgba(100, 180, 250, 0) 70%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.approach-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a90e2;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #4a90e2;
    transform: translateY(-50%);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #5d6778;
    margin-bottom: 40px;
}

.approach-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.approach-feature {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.approach-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    position: relative;
    margin-right: 20px;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.approach-feature:hover .feature-icon::after {
    transform: scale(1.8);
}

.feature-icon i {
    background: linear-gradient(135deg, #4a90e2, #5ca9fb);
    color: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.approach-feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.approach-feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5d6778;
    margin: 0;
}

.approach-image {
    position: relative;
    padding: 20px;
}

.approach-image-box {
    width: 100%;
    height: 500px;
    background-image: url('../images/approach-image-box.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.approach-image:hover .approach-image-box {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.approach-image-decoration {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #5ca9fb, #4a90e2);
    bottom: -20px;
    left: -20px;
    border-radius: 12px;
    z-index: 1;
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.approach-image-pattern {
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    top: -20px;
    right: -20px;
    border-radius: 12px;
    z-index: 1;
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .approach-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-image {
        order: -1;
    }
    
    .approach-image-box {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .you-first-section {
        padding: 70px 0;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .approach-image-box {
        height: 350px;
    }
}

/* Insurance & Affordability Section */
.insurance-affordability {
  padding: 90px 0;
  background: linear-gradient(120deg, #f8f9fa 30%, #e9f2fb 100%);
  position: relative;
  overflow: hidden;
}

.insurance-affordability::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 137, 230, 0.05) 0%, rgba(65, 137, 230, 0) 70%);
}

.insurance-affordability::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, rgba(74, 144, 226, 0) 70%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c5282;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #4a90e2, #63b3ed);
  border-radius: 3px;
}

.section-description {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
}

/* Insurance Grid Styles */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.insurance-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 4px solid transparent;
}

.insurance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #4a90e2, #63b3ed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.insurance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #4a90e2;
}

.insurance-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ebf4ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.15);
}

.card-icon i {
  font-size: 30px;
  color: #4a90e2;
  transition: all 0.3s ease;
}

.insurance-card:hover .card-icon {
  background: linear-gradient(135deg, #4a90e2, #63b3ed);
}

.insurance-card:hover .card-icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
}

.card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* Payment Options Styles */
.payment-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.payment-title {
  font-size: 26px;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.payment-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #4a90e2, #63b3ed);
  border-radius: 3px;
}

.payment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.payment-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.payment-item:hover {
  background: #edf2f7;
  border-left: 3px solid #4a90e2;
  transform: translateX(5px);
}

.payment-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ebf4ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.payment-icon i {
  font-size: 24px;
  color: #4a90e2;
  transition: all 0.3s ease;
}

.payment-item:hover .payment-icon {
  background: linear-gradient(135deg, #4a90e2, #63b3ed);
}

.payment-item:hover .payment-icon i {
  color: #ffffff;
}

.payment-content {
  flex-grow: 1;
}

.payment-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.payment-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .insurance-affordability {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .insurance-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-list {
    grid-template-columns: 1fr;
  }
  
  .payment-item {
    padding: 20px;
  }
}
/* Visit Us Section */
.visit-us {
    background: linear-gradient(to right, #f0f7ff, #e8f4fe);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.visit-us::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 179, 237, 0.05) 0%, rgba(99, 179, 237, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.visit-us::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.05) 0%, rgba(49, 130, 206, 0) 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-underline {
    height: 3px;
    width: 70px;
    background: linear-gradient(to right, #3182ce, #63b3ed);
    margin: 0 auto;
    border-radius: 3px;
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.visit-info {
    padding-right: 20px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.icon-container {
    background: linear-gradient(135deg, #3182ce, #63b3ed);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.2);
}

.icon-container i {
    font-size: 22px;
}

.contact-item-content {
    flex-grow: 1;
}

.contact-item-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.contact-item-content p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.visit-hours {
    background: #ffffff;
    padding: 9vh;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border-top: 5px solid #3182ce;
    margin-top: 30px;
}

.hours-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.hours-icon {
    background: linear-gradient(135deg, #3182ce, #63b3ed);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.2);
}

.hours-icon i {
    color: white;
    font-size: 20px;
}

.visit-hours h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.hours-list {
    margin: 25px 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(203, 213, 224, 0.5);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2d3748;
    font-size: 16px;
}

.time {
    color: #4a5568;
    font-size: 16px;
}

.call-now {
    display: block;
    padding: 18px 20px;
    background: linear-gradient(135deg, #38b2ac, #4fd1c5);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 17px;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(56, 178, 172, 0.3);
}

.call-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(56, 178, 172, 0.4);
}

.call-now i {
    margin-right: 10px;
}

/* Media Queries */
@media (max-width: 992px) {
    .visit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visit-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .visit-us {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .icon-container {
        width: 50px;
        height: 50px;
    }
    
    .visit-hours {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .visit-us {
        padding: 50px 0;
    }
    
    .contact-item-content h4 {
        font-size: 16px;
    }
    
    .contact-item-content p {
        font-size: 14px;
    }
    
    .hours-item {
        padding: 12px 0;
    }
    
    .day, .time {
        font-size: 14px;
    }
    
    .call-now {
        padding: 15px;
        font-size: 16px;
    }
}

/* start of footer */
.custom-footer {
    background: linear-gradient(45deg,
            rgba(15, 23, 42, 0.9) 20%,
            rgba(15, 23, 42, 0.85) 40%,
            rgba(15, 23, 42, 0.92) 60%,
            rgba(15, 23, 42, 0.88) 80%);
    color: white;
    padding: 50px 20px 0;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-column h3 {
    color: #f1c359;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f1c359;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-column a:hover {
    color: #f1c359;
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 12px;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #f1c359;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.social-icons a:hover img {
    filter: brightness(0) invert(0.8) sepia(1) saturate(5) hue-rotate(0deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    margin: 5px 0;
    opacity: 0.8;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #f1c359;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }
}

/* Mobile Navigation Styles - Updated */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1001;
  }
  
  /* Mobile Menu Button */
  .hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0 auto;
    margin-top: 13px;
  }
  
  .hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .hamburger span:nth-child(1) {
    top: 0px;
  }
  
  .hamburger span:nth-child(2) {
    top: 8px;
  }
  
  .hamburger span:nth-child(3) {
    top: 16px;
  }
  
  /* Keep body from scrolling when mobile menu is open */
  body.no-scroll {
    overflow: hidden;
  }
  
  /* Updated Mobile Navigation Styles */
  @media screen and (max-width: 992px) {
    .main-nav {
      flex-wrap: wrap;
    }
  
    .mobile-nav-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 20px;
      z-index: 2001;
    }
  
    .navbar {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      background: white;
      align-items: center;
      justify-content: flex-start;
      padding-top: 100px;
      z-index: 2000;
    }
  
    .navbar.active {
      display: flex;
    }
  
    .navbar li {
      width: 100%;
      text-align: center;
      padding: 15px 0;
    }
  
    .logo {
      position: relative;
      z-index: 2002;
    }
    
    .dropdown-menu {
      position: static;
      width: 100%;
      box-shadow: none;
      padding: 0;
      padding-right: 35px;
      margin-top: 15px;
    }
    
    .dropdown.active .dropdown-menu {
      display: block;
    }
    
    /* For the active hamburger button */
    .mobile-nav-toggle.active .hamburger span:nth-child(1) {
      top: 8px;
      transform: rotate(135deg);
    }
    
    .mobile-nav-toggle.active .hamburger span:nth-child(2) {
      opacity: 0;
      left: -60px;
    }
    
    .mobile-nav-toggle.active .hamburger span:nth-child(3) {
      top: 8px;
      transform: rotate(-135deg);
    }
  }