
        :root {
            --primary-orange: #ff7a00;
            --hero-gradient: linear-gradient(135deg, #2f356d 0%, #2a003f 100%);
            --glass-bg: rgba(255, 255, 255, 0.95);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #fcfcfd;
            color: #1a1a1a;
        }

        /* NAVBAR */
        .navbar-custom {
            background: transparent;
            padding: 25px 0;
            position: absolute;
            width: 100%;
            z-index: 100;
        }

        .logo {
            color: white;
            font-weight: 800;
            font-size: 26px;
            letter-spacing: -0.5px;
        }

        .nav-menu a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: white;
        }

        .nav-menu a::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            left: 0;
            bottom: -5px;
            transition: 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* HERO SECTION */
        .hero {
            background: var(--hero-gradient);
            color: white;
            padding: 160px 0 180px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 20px;
            opacity: 0.9;
            font-weight: 400;
        }

        .highlight {
            color: var(--primary-orange);
            font-weight: 700;
            display: inline-block;
        }

        /* SEARCH BOX UPGRADE */
        .search-container {
            max-width: 850px;
            margin: 40px auto 0;
        }

        .search-box {
            background: var(--glass-bg);
            border-radius: 100px;
            padding: 8px 10px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .search-input-group {
            padding: 10px 20px;
        }

        .search-box input {
            border: none;
            background: transparent;
            font-weight: 500;
            color: #333;
        }

        .search-box input:focus {
            outline: none;
            box-shadow: none;
        }

        .search-divider {
            width: 1px;
            height: 35px;
            background: #e0e0e0;
            margin: 0 10px;
        }

        /* CATEGORY CARDS */
        .category-wrapper {
            margin-top: -100px;
            position: relative;
            z-index: 5;
        }

        .category-card {
            border: none;
            border-radius: 24px;
            padding: 30px 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .cat-home { border-top: 5px solid #4caf50; }
        .cat-edu { border-top: 5px solid #ff9800; }
        .cat-serv { border-top: 5px solid #2196f3; }

        .category-title {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 25px;
            color: #333;
        }

        .category-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #555;
            transition: 0.2s;
        }

        .category-item:hover {
            color: var(--primary-orange);
        }

        .category-item img {
            width: 55px;
            height: 55px;
            border-radius: 16px;
            object-fit: cover;
            margin-bottom: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .category-item span {
            font-size: 13px;
            font-weight: 600;
        }

        .view-all {
            color: var(--primary-orange);
            font-weight: 700;
            font-size: 14px;
            margin-top: 25px;
            display: inline-block;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* BADGE & BUTTONS */
        .free-badge {
            background: linear-gradient(to right, #ff9800, #ff5722);
            color: white;
            font-size: 9px;
            padding: 3px 8px;
            border-radius: 50px;
            font-weight: 800;
            vertical-align: middle;
        }

        .btn-list {
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 600;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

    





    
    /* HEADING ENHANCEMENT */
    .section-title {
        font-size: 1.25rem;
        color: #1a1a1a;
        margin-bottom: 2px;
    }
    
    .underline-glow {
        display: block;
        width: 40px;
        height: 4px;
        background: linear-gradient(90deg, #ff7a00, #ff9a3d);
        border-radius: 10px;
        margin-top: 6px;
    }

    /* CITY CARD UPGRADE */
    .city-card {
        width: 110px;
        text-decoration: none;
        color: #444;
        transition: all 0.3s ease;
    }

    .city-img-wrapper {
        width: 100px;
        height: 100px;
        margin: 0 auto 12px;
        border-radius: 50%; /* Circular for a modern look */
        padding: 4px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        background: #fff;
    }

    .city-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }

    .city-name {
        font-weight: 600;
        font-size: 14px;
        transition: 0.2s;
    }

    /* HOVER EFFECTS */
    .city-card:hover .city-img-wrapper {
        border-color: #ff7a00;
        transform: translateY(-5px);
    }

    .city-card:hover .city-name {
        color: #ff7a00;
    }

    /* Horizontal scroll for mobile optimization */
    @media (max-width: 768px) {
        .cities-grid {
            overflow-x: auto;
            white-space: nowrap;
            padding-bottom: 15px;
            display: flex !important;
            flex-wrap: nowrap !important;
        }
        .city-card {
            flex: 0 0 auto;
        }
    }






    /* OVERSEAS SECTION ENHANCEMENT */
    .overseas-section {
        background: radial-gradient(circle at top right, #132c44, #071a2f);
        border-radius: 40px 40px 0 0; /* Smooth transition from section above */
    }

    /* CARD UPGRADE */
    .overseas-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 30px;
        height: 100%;
        transition: all 0.4s ease;
    }

    .overseas-card:hover {
        background: rgba(255, 255, 255, 0.07);
        transform: translateY(-10px);
        border-color: rgba(255, 122, 0, 0.4);
    }

    /* IMAGE / FLAG BOX */
    .country-img-container {
        width: 55px;
        height: 55px;
        background: rgba(255,255,255,0.1);
        padding: 4px;
        border-radius: 14px;
    }

    .country-img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

    /* LIST REFINEMENT */
    .overseas-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

    .overseas-list li {
        color: #b0c4de;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 14px;
        transition: 0.3s;
        cursor: pointer;
    }

    .overseas-list li:hover {
        color: #ff7a00;
        padding-left: 5px;
    }

    .overseas-list li::after {
        content: "\F285"; /* Bootstrap Icon Chevron */
        font-family: "bootstrap-icons";
        float: right;
        font-size: 12px;
        opacity: 0.5;
    }

    /* STATS BOX UPGRADE */
    .stats-container {
        background: rgba(0, 0, 0, 0.2);
        padding: 15px;
        border-radius: 16px;
        border: 1px dashed rgba(255,255,255,0.1);
        margin-top: 20px;
    }

    .stat-item strong {
        font-size: 1.1rem;
        color: #fff;
        display: block;
    }

    .stat-item small {
        color: #8fa3b9;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* BUTTON */
    .btn-enquire {
        width: 100%;
        border-radius: 12px;
        padding: 10px;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-enquire:hover {
        background-color: #ff7a00;
        border-color: #ff7a00;
        color: white;
    }







    /* SECTION TITLE ENHANCEMENT */
    .aviation-title-group .underline-blue {
        display: block;
        width: 50px;
        height: 4px;
        background: #0d6efd; /* Blue accent for Aviation */
        border-radius: 10px;
        margin-top: 8px;
    }

    /* AVIATION CARD UPGRADE */
    .aviation-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 24px;
        height: 100%;
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .aviation-card:hover {
        border-color: #0d6efd;
        box-shadow: 0 12px 24px rgba(13, 110, 253, 0.08);
        transform: translateY(-5px);
    }

    .aviation-card h6 {
        color: #1a1a1a;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    /* LIST REFINEMENT */
    .aviation-list {
        list-style: none;
        padding: 0;
        margin: 15px 0 auto; /* Pushes button to bottom */
    }

    .aviation-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f8f9fa;
        font-size: 13.5px;
        color: #555;
        font-weight: 500;
        transition: 0.2s;
        cursor: pointer;
    }

    .aviation-list li:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .aviation-list li::after {
        content: "\F285"; /* BS Icon */
        font-family: "bootstrap-icons";
        float: right;
        font-size: 11px;
        opacity: 0.4;
    }

    /* PREMIUM CARD UPGRADE */
    .premium-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        position: relative;
        border: 2px solid #ffc107; /* Gold/Warning border */
        overflow: hidden;
    }

    .premium-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #ffc107;
        color: #000;
        font-weight: 800;
        font-size: 10px;
        padding: 4px 10px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        z-index: 2;
    }

    .premium-card img {
        transition: transform 0.5s ease;
    }

    .premium-card:hover img {
        transform: scale(1.08);
    }

    .rating-star {
        color: #ffc107;
        font-size: 13px;
    }

    /* BUTTONS */
    .btn-aviation {
        border-radius: 10px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.5px;
    }







    /* TUITION SECTION UPGRADE */
    .tuition-section {
        background: #f4fbf8; /* Light, clean emerald tint */
    }

    /* CARD REFINEMENT */
    .tuition-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid #e0f2ea;
        padding: 25px;
        height: 100%;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 15px rgba(0, 74, 43, 0.03);
    }

    .tuition-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 74, 43, 0.08);
        border-color: #0a8f5c;
    }

    /* HEADER STYLE */
    .tuition-header-new {
        margin-bottom: 20px;
    }

    .tuition-header-new h6 {
        color: #0a8f5c;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .tuition-header-new small {
        color: #6c757d;
        font-size: 12.5px;
        line-height: 1.4;
        display: block;
    }

    /* LIST UPGRADE */
    .tuition-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1; /* Pushes button to bottom */
    }

    .tuition-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f1f1f1;
        font-size: 14px;
        color: #444;
        font-weight: 500;
        transition: 0.2s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tuition-list li:hover {
        color: #0a8f5c;
        padding-left: 5px;
    }

    .tuition-list li::after {
        content: "\F285"; /* BS Icon Chevron */
        font-family: "bootstrap-icons";
        font-size: 10px;
        opacity: 0.3;
    }

    /* BUTTON UPGRADE */
    .btn-emerald {
        border-color: #0a8f5c;
        color: #0a8f5c;
        border-radius: 50px;
        font-weight: 600;
        font-size: 12px;
        padding: 8px 20px;
        margin-top: 20px;
        transition: all 0.3s;
        align-self: flex-start;
    }

    .btn-emerald:hover {
        background-color: #0a8f5c;
        border-color: #0a8f5c;
        color: white;
    }

    .section-accent {
        width: 40px;
        height: 4px;
        background: #0a8f5c;
        border-radius: 10px;
        display: block;
        margin-top: 8px;
    }






    /* COLLEGES SECTION ENHANCEMENT */
    .colleges-section {
        background: #fff9f3; /* Very soft peach tint */
    }

    /* CARD DESIGN */
    .college-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 25px;
        height: 100%;
        border: 1px solid #ffe8d6;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 12px rgba(255, 106, 0, 0.03);
    }

    .college-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(255, 106, 0, 0.1);
        border-color: #ff6a00;
    }

    /* HEADER */
    .college-header-new {
        margin-bottom: 20px;
    }

    .college-header-new h6 {
        color: #d35400;
        font-weight: 700;
        font-size: 1.15rem;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }

    .college-header-new small {
        color: #7f8c8d;
        font-size: 12px;
        line-height: 1.5;
        display: block;
    }

    /* LIST STYLE */
    .college-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
    }

    .college-list li {
        padding: 12px 0;
        border-bottom: 1px solid #fdf2e9;
        font-size: 14px;
        color: #4a4a4a;
        font-weight: 500;
        transition: 0.2s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .college-list li:hover {
        color: #ff6a00;
        padding-left: 8px;
    }

    .college-list li::after {
        content: "\F285"; /* Bootstrap Icon Chevron */
        font-family: "bootstrap-icons";
        font-size: 11px;
        opacity: 0.4;
    }

    /* BUTTON */
    .btn-sunset {
        border: 1.5px solid #ff6a00;
        color: #ff6a00;
        border-radius: 12px;
        font-weight: 700;
        font-size: 12px;
        padding: 10px 24px;
        margin-top: 25px;
        background: transparent;
        transition: all 0.3s;
        align-self: flex-start;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-sunset:hover {
        background-color: #ff6a00;
        color: white;
        box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
    }

    .college-icon {
        background: #fff0e1;
        color: #ff6a00;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        margin-bottom: 15px;
    }






    /* HOME SERVICES SECTION UPGRADE */
    .home-services-section {
        background: #f8fafc; /* Crisp, clean utility background */
    }

    /* SERVICE CARD REFINEMENT */
    .service-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 24px;
        height: 100%;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(30, 64, 175, 0.08);
        border-color: #3b82f6;
    }

    /* ICON STYLE */
    .service-icon-circle {
        width: 48px;
        height: 48px;
        background: #eff6ff;
        color: #2563eb;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 16px;
        font-size: 1.25rem;
    }

    /* HEADER */
    .service-header-new h6 {
        color: #1e293b;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .service-header-new small {
        color: #64748b;
        font-size: 12px;
        line-height: 1.4;
        display: block;
        margin-bottom: 15px;
    }

    /* LIST STYLE */
    .service-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
    }

    .service-list li {
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 13.5px;
        color: #475569;
        font-weight: 500;
        transition: 0.2s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .service-list li:hover {
        color: #2563eb;
        padding-left: 5px;
    }

    .service-list li::after {
        content: "\F285"; /* Bootstrap Icon Chevron */
        font-family: "bootstrap-icons";
        font-size: 10px;
        opacity: 0.3;
    }

    /* BUTTON */
    .btn-service {
        border-radius: 10px;
        font-weight: 600;
        font-size: 12px;
        padding: 8px 16px;
        margin-top: 20px;
        transition: all 0.3s;
        align-self: flex-start;
        border-color: #cbd5e1;
        color: #475569;
    }

    .btn-service:hover {
        background-color: #2563eb;
        border-color: #2563eb;
        color: white;
    }

    .service-accent {
        width: 35px;
        height: 4px;
        background: #3b82f6;
        border-radius: 10px;
        display: block;
        margin-top: 8px;
    }






    /* HOME IMPROVEMENT SECTION UPGRADE */
    .improvement-section {
        background: #f1f5f9; /* Soft slate background */
    }

    /* CARD DESIGN */
    .improve-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 24px;
        height: 100%;
        border: 1px solid #e2e8f0;
        border-top: 4px solid #0d9488; /* Teal top accent */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .improve-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        border-top-width: 6px;
    }

    /* HEADER & ICON */
    .improve-icon-box {
        width: 44px;
        height: 44px;
        background: #f0fdfa;
        color: #0d9488;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .improve-header-new h6 {
        color: #0f172a;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .improve-header-new small {
        color: #64748b;
        font-size: 12.5px;
        line-height: 1.5;
        display: block;
        min-height: 38px; /* Keeps card alignment consistent */
    }

    /* LIST STYLE */
    .improve-list {
        list-style: none;
        padding: 0;
        margin: 15px 0 0 0;
        flex-grow: 1;
    }

    .improve-list li {
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 13.5px;
        color: #334155;
        font-weight: 500;
        transition: all 0.2s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .improve-list li:hover {
        color: #0d9488;
        padding-left: 8px;
    }

    .improve-list li::after {
        content: "\F285"; /* BS Icon Chevron */
        font-family: "bootstrap-icons";
        font-size: 10px;
        opacity: 0.3;
    }

    /* BUTTON */
    .btn-improve {
        background: transparent;
        border: 2px solid #0d9488;
        color: #0d9488;
        border-radius: 12px;
        font-weight: 700;
        font-size: 12px;
        padding: 10px 20px;
        margin-top: 25px;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-improve:hover {
        background: #0d9488;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    }

    .improvement-accent {
        width: 45px;
        height: 5px;
        background: #0d9488;
        border-radius: 10px;
        display: block;
        margin-top: 8px;
    }






    /* REPAIR & SERVICE SECTION UPGRADE */
    .repair-section {
        background: #fafafa; /* Very light neutral grey */
    }

    /* CARD DESIGN */
    .repair-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 28px;
        height: 100%;
        border: 1px solid #e5e7eb;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    /* TOP ACCENT LINE */
    .repair-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #facc15; /* Safety Yellow */
        opacity: 0;
        transition: 0.3s;
    }

    .repair-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border-color: #facc15;
    }

    .repair-card:hover::before {
        opacity: 1;
    }

    /* ICON STYLE */
    .repair-icon-box {
        width: 50px;
        height: 50px;
        background: #fef9c3;
        color: #854d0e;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    /* HEADER */
    .repair-header-new h6 {
        color: #1f2937;
        font-weight: 800;
        font-size: 1.15rem;
        margin-bottom: 6px;
        letter-spacing: -0.3px;
    }

    .repair-header-new small {
        color: #6b7280;
        font-size: 13px;
        line-height: 1.5;
        display: block;
        margin-bottom: 20px;
    }

    /* LIST STYLE */
    .repair-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
    }

    .repair-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
        font-size: 14px;
        color: #374151;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.2s;
    }

    .repair-list li:hover {
        color: #a16207;
        padding-left: 5px;
    }

    .repair-list li::after {
        content: "\F64D"; /* BS Icon Wrench or Arrow */
        font-family: "bootstrap-icons";
        font-size: 11px;
        opacity: 0.2;
    }

    /* BUTTON */
    .btn-repair {
        background: #1f2937;
        color: #ffffff;
        border-radius: 12px;
        font-weight: 700;
        font-size: 12px;
        padding: 12px 24px;
        margin-top: 25px;
        border: none;
        transition: all 0.3s;
        width: 100%; /* Full width for a "Quick Fix" button feel */
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-repair:hover {
        background: #facc15;
        color: #1f2937;
        box-shadow: 0 4px 12px rgba(250, 204, 21, 0.4);
    }

    .repair-accent-title {
        width: 40px;
        height: 5px;
        background: #facc15;
        border-radius: 10px;
        display: block;
        margin-top: 10px;
    }







    /* WEDDING & EVENTS SECTION ENHANCEMENT */
    .wedding-section {
        background: #fffafa; /* Very light blush background */
    }

    /* CARD DESIGN */
    .wedding-card {
        background: #ffffff;
        border-radius: 25px;
        padding: 0; /* Let the header handle padding */
        height: 100%;
        border: 1px solid #fce4ec;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(136, 14, 79, 0.03);
    }

    .wedding-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(136, 14, 79, 0.1);
        border-color: #f06292;
    }

    /* GLASS HEADER */
    .wedding-header-new {
        background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
        padding: 25px;
        text-align: center;
        border-bottom: 2px solid #fff;
    }

    .wedding-icon-wrap {
        width: 55px;
        height: 55px;
        background: white;
        color: #c2185b;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 auto 15px auto;
        font-size: 1.4rem;
        box-shadow: 0 4px 10px rgba(194, 24, 91, 0.15);
    }

    .wedding-header-new h6 {
        color: #880e4f;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .wedding-header-new small {
        color: #ad1457;
        font-size: 12px;
        font-style: italic;
        display: block;
    }

    /* LIST STYLE */
    .wedding-list {
        list-style: none;
        padding: 20px 25px;
        margin: 0;
        flex-grow: 1;
    }

    .wedding-list li {
        padding: 12px 0;
        border-bottom: 1px solid #fdf2f2;
        font-size: 14px;
        color: #4a4a4a;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.3s;
    }

    .wedding-list li:hover {
        color: #c2185b;
        padding-left: 10px;
    }

    .wedding-list li::after {
        content: "\F2E2"; /* BS Heart Icon or Sparkle */
        font-family: "bootstrap-icons";
        font-size: 10px;
        opacity: 0.4;
        color: #f06292;
    }

    /* BUTTON */
    .btn-wedding {
        background: #c2185b;
        color: white;
        border-radius: 0 0 25px 25px; /* Matches card bottom */
        font-weight: 600;
        font-size: 13px;
        padding: 15px;
        border: none;
        width: 100%;
        transition: 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-wedding:hover {
        background: #880e4f;
        color: white;
    }

    .wedding-title-accent {
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, #c2185b, #f06292);
        border-radius: 10px;
        display: block;
        margin-top: 8px;
    }






    /* FOOTER LINKS ENHANCEMENT */
    .footer-links-section {
        background: #111827; /* Deep Slate/Charcoal */
        color: #e5e7eb;
        border-top: 4px solid #ff6a00;
    }

    /* BLOCK HEADINGS */
    .footer-block h6 {
        color: #ffffff;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 0.85rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    .footer-block h6::after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin-left: 15px;
    }

    /* LINK CLOUD */
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        row-gap: 8px;
        column-gap: 0;
    }

    .footer-links span {
        font-size: 13px;
        color: #9ca3af;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    /* PIPE SEPARATOR */
    .footer-links span:not(:last-child)::after {
        content: "|";
        margin: 0 12px;
        color: #374151;
        font-weight: 300;
    }

    .footer-links span:hover {
        color: #ff6a00;
        text-shadow: 0 0 10px rgba(255, 106, 0, 0.2);
    }

    /* HORIZONTAL DIVIDER */
    .footer-links-section hr {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin: 30px 0;
        opacity: 1;
    }

    /* CITIES SECTION SPECIFIC */
    .city-tag {
        background: rgba(255, 255, 255, 0.05);
        padding: 4px 12px;
        border-radius: 6px;
        margin-right: 10px;
        border: 1px solid transparent;
    }

    .city-tag:hover {
        background: rgba(255, 106, 0, 0.1);
        border-color: #ff6a00;
    }





    /* MAIN FOOTER REFINEMENT */
    .main-footer {
        background: #fdfdfd; /* Crisp off-white */
        border-top: 1px solid #eee;
    }

    /* BRANDING */
    .footer-logo {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #ff8c00, #ed1c24);
        border-radius: 8px; /* Modern squircle */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(237, 28, 36, 0.2);
    }

    .brand-text {
        letter-spacing: -0.5px;
    }

    /* MENU STYLE */
    .footer-menu {
        list-style: none;
        padding: 0;
        margin-top: 15px;
        display: grid;
        grid-template-columns: 1fr; /* Default single column */
    }

    /* Dual column for longer lists on desktop */
    @media (min-width: 768px) {
        .dual-col {
            grid-template-columns: 1fr 1fr;
            gap: 0 20px;
        }
    }

    .footer-menu li {
        font-size: 13.5px;
        color: #64748b;
        margin-bottom: 10px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
    }

    .footer-menu li:hover {
        color: #ff6a00;
        padding-left: 5px;
        cursor: pointer;
    }

    /* SOCIAL ICONS */
    .social-icons {
        display: flex;
        gap: 8px;
    }

    .social-icons i {
        font-size: 16px;
        background: #f1f5f9;
        color: #475569;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .social-icons i:hover {
        background: #ff6a00;
        color: white;
        transform: scale(1.1) translateY(-3px);
    }

    /* BOTTOM BAR */
    .copyright-bar {
        background: #f8fafc;
        border-top: 1px solid #e2e8f0;
    }


    .footer-menu li a {
    text-decoration: none;
    color: #64748b;
    width: 100%;
    display: block;
    transition: all 0.2s ease;
}

.footer-menu li a:hover {
    color: #ff6a00;
    padding-left: 5px;
}



