/* Base Styles & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #ff8837; /* Orange */
    --primary-hover: #e67527;
    --secondary-color: #9b0d83; /* Purple */
    --secondary-hover: #7a0966;
    --text-dark: #222;
    --text-gray: #666;
    --bg-light: #fffaf7; /* Very light orange/purple tint */
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.brand-highlight {
    color: var(--secondary-color);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    height: 90px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.header-logo {
    max-height: 165px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 101;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-header-call-btn {
    display: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 136, 55, 0.3);
    animation: premiumPulse 3s infinite;
    border: none;
}

.mobile-header-call-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 136, 55, 0.5);
}

.mobile-nav-buttons {
    display: none;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 136, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-large {
    width: 100%;
    max-width: 350px;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Hide Book Now buttons on all screens */
#mainBookBtn, 
#headerBookBtn, 
#mobileBookBtn {
    display: none !important;
}

/* ==========================================================================
   MOBILE & TABLET HERO SECTION (Strictly active on screens < 1024px)
   ========================================================================== */
@media (max-width: 1023px) {

    .mobile-hero-section {
        display: block !important;
        width: 100%;
        min-height: 100vh;      /* Fallback for older browsers */
        min-height: 100dvh;     /* Fixes mobile address bar resizing issues */
        position: relative;
        background-image: url('images/Cover.webp');
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        overflow: hidden;
        z-index: 10;
    }

    /* Dark tint overlay to maximize text legibility over the image */
    .mobile-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(110, 10, 93, 0.6) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .mobile-hero-content {
        text-align: center;
        color: #ffffff !important;
        width: 100%;
        max-width: 480px; /* Constrains text width on larger mobile screens for layout look */
        z-index: 12;
    }

    .mobile-hero-content h1 {
        color: #ffffff !important;
        font-size: 1.45rem;
        line-height: 1.35;
        margin: 0 0 12px 0;
        font-weight: 700;
    }

    .mobile-hero-content h1 span.brand-highlight {
        display: block; 
        color: #ffffff !important;
        font-size: 1.10rem;
        margin-top: 8px;
        font-weight: 400;
        opacity: 0.9;
    }

    .mobile-hero-content .subtitle {
        color: #ff8837 !important;
        font-size: 1.05rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .mobile-hero-content .description {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .mobile-hero-content .action-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .mobile-hero-content .call-assistance {
        color: #ffffff;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin: 0;
        opacity: 0.85;
    }

    /* Premium Glassmorphism Mobile Call Tap Button */
    .mobile-hero-content .btn-mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 290px;
        padding: 15px 20px;
        font-size: 1.2rem;
        font-weight: 700;
        border: 2px solid #ffffff;
        border-radius: 50px;
        color: #ffffff;
        text-decoration: none;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: transform 0.2s ease;
    }
    
    .mobile-hero-content .btn-mobile-cta:active {
        transform: scale(0.97); /* Subtle response highlight when tapped on mobile */
    }

    /* Responsive scaling adjustments for tablets */
    @media (min-width: 600px) {
        .mobile-hero-content { max-width: 80%; }
        .mobile-hero-content h1 { font-size: 2.1rem; }
        .mobile-hero-content h1 span.brand-highlight { font-size: 1.35rem; }
        .mobile-hero-content .subtitle { font-size: 1.3rem; }
        .mobile-hero-content .description { font-size: 0.95rem; }
    }
}

/* ==========================================================================
   DESKTOP KILL-SWITCH (Completely removes element above mobile viewports)
   ========================================================================== */
@media (min-width: 1024px) {
    .mobile-hero-section {
        display: none !important;
    }
}


/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5% 80px 10%;
    min-height: calc(100vh - 90px);
    position: relative;
    background: #fff;
}

.hero-content {
    flex: 1 1 500px;
    max-width: 600px;
    z-index: 2;
}

.hero-image {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Action Area */
.action-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.divider-container {
    width: 100%;
    max-width: 350px;
    text-align: center;
    margin: 15px 0;
}

.divider {
    color: #aaa;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.call-assistance {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    width: 100%;
    max-width: 350px;
    text-align: center;
}
#callBtn {
    text-decoration: none !important;
    text-align: center !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%) !important;
    color: white !important;
    border: 2px solid var(--secondary-color) !important;
    box-shadow: 0 8px 25px rgba(155, 13, 131, 0.3) !important;
    transition: all 0.3s ease !important;
    animation: premiumPulse 3s infinite;
}

#callBtn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(155, 13, 131, 0.5) !important;
}

#callBtnMobile {
    text-decoration: none !important;
    text-align: center !important;
    background: linear-gradient(135deg, white 0%, #f5f5f5 100%) !important;
    color: var(--secondary-color) !important;
    border: 2px solid white !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    animation: premiumPulse 3s infinite;
}

#callBtnMobile:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Hero Video Styles - UPDATED TO MERGE INTO BACKGROUND */
.hero-video-container {
    width: 100%;
    max-width: 600px;
    background-color: transparent; /* Ensures no background conflicts */
    animation: fadeInVideo 1s ease-out forwards;
    /* Removed all borders, shadows, and rounded corners */
}

.hero-video {
    width: 100%;
    height: 700px;
    display: block;
    object-fit: cover;
    /* This blend mode makes the white background of the video completely transparent, merging it perfectly with the page */
    mix-blend-mode: multiply; 
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Pulse Animation for Call Buttons */
@keyframes premiumPulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 136, 55, 0.4), 0 0 0 0 rgba(255, 136, 55, 0.7);
    }
    50% {
        box-shadow: 0 4px 15px rgba(255, 136, 55, 0.4), 0 0 0 10px rgba(255, 136, 55, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 136, 55, 0.4), 0 0 0 0 rgba(255, 136, 55, 0);
    }
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 20% { transform: rotate(-5deg); }
    30%, 50%, 70%, 90% { transform: rotate(5deg); }
    40%, 60%, 80% { transform: rotate(-5deg); }
}

/* Responsive Rules for All Devices */
@media (max-width: 1024px) {
    .hero-section {
        padding: 40px 5%;
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 40px;
    }
    .description {
        margin: 0 auto 30px auto;
    }
    .action-area {
        align-items: center;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: clip;
        width: 100%;
    }
    .desktop-only {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-header-call-btn {
        display: flex !important;
    }
    .header-logo {
        max-height: 90px;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: left 0.4s ease;
        gap: 25px;
        z-index: 98;
    }
    .nav-links.active {
        left: 0;
    }
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 80%;
        margin-top: 10px;
    }
    .mobile-nav-buttons .btn {
        width: 100%;
    }
    .about-visual-modern {
        flex: 1 1 100%;
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw;
        max-width: 100vw;
        height: auto;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
    .image-wrapper {
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        height: auto;
        overflow: hidden;
        box-shadow: none !important;
        position: relative;
    }
    .main-img {
        border: none !important;
        border-radius: 0 !important;
        width: 770px;
        height: 510px;
        display: block;
        margin: 0 !important;
        padding: 0 !important;
    }
    .about-section-modern {
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible;
        background-color: transparent;
        box-shadow: none;
    }
    .about-container-modern {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: none;

    }
    .about-content-modern {
        padding: 40px 5%;
        flex: 1 1 100%;
        width: 100%;
        background-color: #ffffff;
        order: 2;
    }
    .floating-badge {
        display: none !important;
    }
    .mobile-hero-section {
        display: none;
    }
    .hero-section {
        display: none;
    }
    .hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .btn-large {
        max-width: 100%;
    }
}

/* ==========================================================================
   MODERN ABOUT SECTION STYLES
   ========================================================================== */
.about-section-modern {
    padding: 60px 5%;
    margin-top: -40px;
    background-color: #ffffff;
    position: relative;
    z-index: 5;
}

.about-container-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    /*max-width: 1280px;*/
    margin: 0 auto;
}

/* --- Left Side: Visual --- */
.about-visual-modern {
    flex: 1 1 450px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    /* Soft purple shadow for depth */
    box-shadow: 0 20px 40px rgba(155, 13, 131, 0.1); 
}

.main-img {
    width: 770px;
    height: 510px;
    border-radius: 16px;
    display: block;
    border: 8px solid #ffffff;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #9b0d83; /* Purple */
    color: #ffffff;
    padding: 24px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(255, 136, 55, 0.2);
    border-left: 6px solid #ff8837; /* Orange Accent */
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

/* --- Right Side: Content --- */
.about-content-modern {
    flex: 1 1 550px;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight-purple, .areas-section span  {
    color: #9b0d83; /* Purple */
}

.accent-line {
    width: 80px;
    height: 5px;
    background-color: #ff8837; /* Orange */
    margin-bottom: 30px;
    border-radius: 3px;
}

.lead-text {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* --- Feature Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 25px;
    background-color: #fffaf7; /* Very light tint */
    border-radius: 12px;
    border: 1px solid rgba(255, 136, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(155, 13, 131, 0.08);
}

.icon-box {
    background-color: #ff8837; /* Orange */
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-text h4 {
    font-size: 1.1rem;
    color: #222222;
    margin-bottom: 6px;
    font-weight: 700;
}

.card-text p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .about-container-modern {
        flex-direction: column;
    }
    .about-visual-modern {
        margin-bottom: 50px;
        width: 100%;
        max-width: 600px;
    }
    .floating-badge {
        right: 20px;
        bottom: -20px;
        padding: 16px 24px;
    }
    .badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-content-modern {
        padding: 40px 5%;
        flex: 1 1 100%;
        width: 100%;
        background-color: #ffffff;
        order: 2;
    }
    .about-visual-modern {
        margin-bottom: 0;
        max-width: none;
        order: 1;
    }
    .floating-badge {
        display: none !important;
    }
    .about-container-modern {
        gap: 0;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .section-heading {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   SERVICES SECTION STYLES
   ========================================================================== */
.services-section {
    padding: 100px 5%;
    background-color: #f8f9fc; /* Very light, clean gray background */
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Header Area --- */
.services-header {
    font-size: 2.2rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.highlight-orange-italic{
    color: #ff8837; /* Orange */
    font-style: italic;
}

.services-subtitle {
    color: #666666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-box {
    background-color: #ffffff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    font-size: 1.6rem;
    color: #9b0d83; /* Purple theme applied to icons */
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: #9b0d83; /* Purple */
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(155, 13, 131, 0.2);
}

.service-content h3 {
    font-size: 1.3rem;
    color: #222222;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive Rules for Services Section --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #ffffff;
        padding: 30px 20px;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }
    
    .service-icon-box {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 5%;
    }
    .services-header .section-title {
        font-size: 2.2rem;
    }
}


/* ==========================================================================
   PREMIUM WHY CHOOSE US STYLES (WITH BACKGROUND PARTICLES)
   ========================================================================== */
.why-choose-premium {
    position: relative;
    padding: 40px 5%; 
    background-color: #ffffff;
    overflow: hidden; /* Keeps background particles inside the section */
}

/* --- Background Particles Layout --- */
.bg-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Keep behind content */
    pointer-events: none; /* Ensures particles don't block user clicks */
}

.bg-shape {
    position: absolute;
}

/* 1. Large Soft Orange Glow */
.soft-glow-orange {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 136, 55, 0.08) 0%, rgba(255, 136, 55, 0) 70%);
    top: -150px;
    right: -100px;
}

/* 2. Giant Faded Purple Ring */
.giant-ring-purple {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid rgba(155, 13, 131, 0.05); /* Very faint purple border */
    bottom: -50px;
    left: -80px;
}

/* 3. Modern Dot Matrix Pattern */
.dot-matrix {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(255, 136, 55, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    top: 40%;
    right: 5%;
    opacity: 0.6;
}

/* --- Content Container (Must sit above background) --- */
.choose-container-premium {
    position: relative;
    z-index: 2; /* Sits above the bg-particles */
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Clean Header --- */
.choose-header-premium {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.premium-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-purple {
    color: #9b0d83; /* Purple */
}

.premium-intro {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.7;
}

/* --- Features Grid --- */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px; 
}

.premium-feature-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.premium-feature-card:hover {
    transform: translateY(-8px);
}

/* --- Catchy Icon Stage & Particles --- */
.icon-stage {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 35px auto;
}

.main-icon-box {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.premium-feature-card:hover .main-icon-box {
    transform: rotate(0deg) scale(1.05);
}

.orange-bg {
    background: linear-gradient(135deg, #ff8837 0%, #e67527 100%);
    box-shadow: 0 15px 30px rgba(255, 136, 55, 0.3);
}

.purple-bg {
    background: linear-gradient(135deg, #9b0d83 0%, #7a0966 100%);
    box-shadow: 0 15px 30px rgba(155, 13, 131, 0.3);
}

/* --- The Small Floating Particles --- */
.particle {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
}

.dot-orange { width: 14px; height: 14px; background-color: #ff8837; }
.dot-purple { width: 14px; height: 14px; background-color: #9b0d83; }
.dot-small { width: 8px; height: 8px; background-color: #d1d5db; }

.ring-orange {
    width: 24px; height: 24px;
    border: 3px solid #ff8837;
    background-color: transparent;
}

.ring-purple {
    width: 24px; height: 24px;
    border: 3px solid #9b0d83;
    background-color: transparent;
}

/* Particle Positions */
.top-right { top: -10px; right: -15px; }
.top-left { top: -10px; left: -15px; }
.bottom-right { bottom: -10px; right: -15px; }
.bottom-left { bottom: -10px; left: -15px; }
.left-mid { top: 40%; left: -25px; }
.right-mid { top: 40%; right: -25px; }
.top-mid { top: -25px; left: 40%; }

/* --- Text Content --- */
.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .premium-features-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .premium-heading { font-size: 2.5rem; }
    .premium-features-grid { grid-template-columns: 1fr; }
    .premium-feature-card:last-child { max-width: 100%; }
    .bg-particles-container { display: none; } /* Hide large bg shapes on mobile to save space */
}

/* ==========================================================================
   STICKY CALL BUTTON
   ========================================================================== */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 136, 55, 0.4), inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
    animation: premiumPulse 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sticky-call-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(255, 136, 55, 0.6), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.sticky-call-btn .call-text {
    display: none;
}

@media (max-width: 768px) {
    .sticky-call-btn {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   COPYRIGHT FOOTER STYLES
   ========================================================================== */
.site-footer {
    background-color: #111111; /* Sleek dark background */
    border-top: 4px solid #9b0d83; /* Purple brand accent line */
}

.footer-bottom {
    padding: 25px 5%;
}

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

.copyright-text {
    color: #999999;
    font-size: 0.95rem;
    margin: 0;
}

.brand-text {
    color: #ff8837; /* Orange highlight for brand name */
    font-weight: 600;
}

/* --- Legal Links --- */
.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff8837; /* Orange on hover */
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #222222; /* Slightly lighter dark gray for contrast */
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #9b0d83; /* Purple on hover */
    transform: translateY(-3px); /* Subtle lift effect */
}

/* --- Responsive Rules --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 25px;
    }

    .footer-links {
        justify-content: center;
    }
}
/* ==========================================================================
   BOTTOM CTA SECTION STYLES
   ========================================================================== */
.bottom-cta-section {
    position: relative;
    padding: 80px 5% 40px;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden; /* Keeps background icons from causing scrollbars */
}

.cta-wrapper {
    position: relative;
    z-index: 2; /* Keeps buttons above background icons */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto 70px auto;
    flex-wrap: wrap;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222222;
}

.cta-action-btn {
    width: 300px; /* Fixed width to match the image perfectly */
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    gap: 8px;
}

/* Premium styling for call buttons (with phone icon) */
.cta-block:last-child .cta-action-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(255, 136, 55, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.1);
    animation: premiumPulse 3s infinite;
}

.cta-block:last-child .cta-action-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 136, 55, 0.5), inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

/* Premium styling for book button */
.btm-cta-block .cta-action-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c4178f 100%);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(155, 13, 131, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.btm-cta-block .cta-action-btn:hover {
    background: linear-gradient(135deg, var(--secondary-hover) 0%, #a01575 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(155, 13, 131, 0.5), inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

/* --- Decorative Background Icons --- */
.bg-icon {
    position: absolute;
    font-size: 8rem;
    z-index: 0;
    pointer-events: none; /* Prevents icons from blocking clicks */
}

.left-icon {
    left: 15%;
    bottom: 50px;
    color: rgba(155, 13, 131, 0.05); /* Very faint purple */
    transform: rotate(-15deg);
}

.right-icon {
    right: 15%;
    bottom: 50px;
    color: rgba(255, 136, 55, 0.08); /* Very faint orange */
}

/* --- Go To Top Button --- */
.go-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.go-to-top i {
    font-size: 0.9rem;
}

.go-to-top:hover {
    color: #ff8837; /* Orange on hover */
    transform: translateY(-3px); /* Gentle upward bounce on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .left-icon { left: 5%; }
    .right-icon { right: 5%; }
}

@media (max-width: 768px) {
    .cta-wrapper {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .cta-action-btn {
        width: 100%;
        min-width: 280px;
    }
    
    /* Hide decorative icons on mobile to keep it clean */
    .bg-icon {
        display: none; 
    }
}
/* ==========================================================================
   MASTER RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Tablet Layout (Max-width: 1024px) --- */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero-section {
        padding: 40px 5%;
        flex-direction: column;
        text-align: center;
    }
    .hero-content { margin-bottom: 40px; }
    .description { margin: 0 auto 30px auto; }
    .action-area { align-items: center; }

    /* About Section */
    .about-container-modern { flex-direction: column; }
    .about-visual-modern {
        margin-bottom: 50px;
        width: 100%;
        max-width: 600px;
    }
    .floating-badge {
        right: 20px;
        bottom: -20px;
        padding: 16px 24px;
    }
    .badge-number { font-size: 2rem; }

    /* Services & Why Choose Us Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .premium-feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --- Mobile Layout (Max-width: 768px) --- */
@media (max-width: 768px) {
    /* Navigation Menu */
    .desktop-only { display: none; }
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: absolute;
        top: 100%; 
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: left 0.4s ease;
        gap: 20px;
        z-index: 99;
    }
    .nav-links.active { left: 0; }
    
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 80%;
        margin-top: 10px;
    }
    .mobile-nav-buttons .btn { width: 100%; }

    /* About Section */
    .about-container-modern {
        display: block;
    }

    /* Hero adjustments */
    .hero-video-container { max-width: 100%; }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #ffffff;
        padding: 30px 20px;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }
    .service-icon-box { margin-bottom: 10px; }

    /* Why Choose Us Section */
    .premium-heading { font-size: 2.5rem; }
    .premium-features-grid { grid-template-columns: 1fr; }
    .premium-feature-card:last-child { max-width: 100%; }
    .bg-particles-container { display: none; } /* Hide large bg shapes on mobile */

    /* Bottom CTA Section */
    .bg-icon { display: none; } /* Hide decorative icons on mobile */
    .cta-wrapper { 
        gap: 40px; 
        margin-bottom: 50px; 
    }
    .cta-action-btn { 
        width: 100%; 
        min-width: 280px; 
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 25px;
    }
    .footer-links { justify-content: center; }
}

/* --- Small Phones (Max-width: 480px) --- */
@media (max-width: 480px) {
    /* Global Typography & Buttons */
    h1 { font-size: 2rem; }
    .btn-large { width: 100%; max-width: 100%; }
    
    /* About Badge Fixes */
    .floating-badge { 
        right: 5px; 
        bottom: -15px; 
        padding: 10px 15px; 
    }
    .about-visual-modern { margin-bottom: 30px; }
    
    /* Section Padding Adjustments */
    .services-section { padding: 60px 5%; }
    .services-header .section-title { font-size: 2.2rem; }
    
    .features-grid { grid-template-columns: 1fr; }
}
.btm-cta-block{
    display: none !important;
}



    .partners-section{
      position:relative;
      overflow:hidden;
      padding:100px 0;
      background:linear-gradient(130deg, #91054b8a 0%, #f3509173 30%, #f3852a61 70%, #ad501287 100%)
    }

    /* Overlay Dots */
    .Trusted {
      text-align: center;
      font-size: 3.2rem;
      padding-bottom: 80px;
      color: #222;
    }
    .partners-section::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size:8px 8px;
      opacity:0.4;
      pointer-events:none;
    }

    .scroll-wrapper{
      overflow:hidden;
      position:relative;
      width:100%;
    }

    .scroll-track{
      display:flex;
      align-items:center;
      gap:120px;
      width:max-content;
      /* animation:infiniteScroll 20s linear infinite;*/
    }

    .logo-box{
      min-width:180px;
      display:flex;
      justify-content:center;
      align-items:center;
      transition:0.4s ease;
      opacity:0.8;
    
    }

    .logo-box img{
      max-width:250px;
      height: 75px;
      filter:brightness(0) invert(00.95rem);
      transition:0.4s ease;
    }

    .logo-box:hover{
      transform:translateY(-5px) scale(1.05);
      opacity:2;
    }

    .logo-box:hover img{
      filter:brightness(0) invert(00.85rem) drop-shadow(0 0 10px rgba(255,255,255,0.4));
    }

    @keyframes infiniteScroll{
      0%{
        transform:translateX(0);
      }
      100%{
        transform:translateX(-50%);
      }
    }

    /* Responsive */
    @media(max-width:768px){
      .scroll-track{
        gap:60px;
      }

      .logo-box{
        min-width:120px;
      }

      .logo-box img{
        max-width:110px;
      }
    }

    /* ================= NAVBAR ================= */

.navbar{
    width:100%;
    padding:22px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    z-index:1000;
}

.logo{
    color:#fff;
    font-size:30px;
    font-weight:700;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:45px;
}

.nav-links a{
    color:#181313;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#ff4d4d;
}

/* ================= MEGA LINK ================= */

.mega-wrapper{
    position:static;
}

.mega-link{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown-icon{
    font-size:14px;
    transition:0.3s ease;
}

/* ROTATE ICON */

.mega-wrapper:hover .dropdown-icon{
    transform:rotate(180deg);
}

/* ================= MEGA MENU ================= */

.mega-menu{
    position:absolute;

    top:100%;
    left:0;

    width:100%;

    background:#ffffff;

    padding:50px 70px;

    border-top:1px solid rgba(255,255,255,0.05);

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:0.4s ease;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.55);
}

/* SHOW ON HOVER */

.mega-wrapper:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ================= GRID ================= */

.mega-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px;
}

/* ================= CARD ================= */

.mega-card{
    transition:0.35s ease;
}

.mega-card:hover{
    transform:translateY(-8px);
}

.mega-card h2{
    color:#222020;
    font-size:20px;
    margin-bottom:18px;
}

.mega-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:18px;
}

.mega-card a{
    color:#505050;
    font-size:14px;
    line-height:1.8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .mega-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .navbar{
        padding:20px;
    }

    .nav-links{
        gap:20px;
    }

    .mega-menu{
        padding:30px 20px;
    }

    .mega-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .mega-grid{
        grid-template-columns:1fr;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

body{
  margin:0;
  background:#f5f8ff;
}

.service-card img{
    height: 50px;
    width: 50px;
}

.coverage-section{
  padding:100px 20px;
}

.coverage-header{
  text-align:center;
  max-width:800px;
  margin:auto;
  margin-bottom:70px;
}

.tag{
  display:inline-block;
  padding:12px 24px;
  border-radius:100px;
  background:#efe8ff;
  color:#7a00ff;
  font-weight:600;
  margin-bottom:25px;
}

.coverage-header h2{
  font-size: 3.2rem;
  font-weight:700;
  color:#111;
  margin-bottom:18px;
}

.coverage-header h2 span{
  color: #9b0d83;
}

.coverage-header p{
  color:#666;
  font-size:18px;
  line-height:1.7;
}

/* GRID */

.coverage-grid{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap:28px;
}

/* CARD */

.service-card{
  position:relative;

  min-height:240px;

  padding:35px;

  border-radius:30px;

  overflow:hidden;

  background:
  linear-gradient(135deg,#ffffff,#f4edff);

  border:1px solid rgba(255,255,255,0.7);

  box-shadow:
  0 12px 35px rgba(0,0,0,0.06);

  transition:all 0.45s cubic-bezier(.17,.67,.38,1.46);

  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* TOP BORDER */

.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;

  background:
  linear-gradient(130deg,#9b0d83,#ff8837);
}

/* ICON */

.icon{
  width:65px;
  height:65px;

  border-radius:22px;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;

  margin-bottom:25px;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

/* TEXT */

.service-card h3{
  font-size:26px;
  color:#111;
  margin-bottom:10px;
}

/*.service-card span{
  color:#666;
  font-size:16px;
  line-height:1.6;
}*/


/* GLOW */

.pulse{
  position:absolute;
  width:220px;
  height:220px;

  right:-80px;
  bottom:-80px;

  border-radius:50%;

  background:
  radial-gradient(circle,rgba(122,0,255,0.12),transparent 70%);

  transition:0.5s ease;
}

/* HOVER */

.service-card:hover{
  transform:
  translateY(-12px)
  scale(1.02);

  box-shadow:
  0 25px 60px rgba(122,0,255,0.14);
}

.service-card:hover .icon{
  transform:
  rotate(-8deg)
  scale(1.1);
}

.service-card:hover .pulse{
  transform:scale(1.4);
}

/* RESPONSIVE */

@media(max-width:768px){

  .coverage-grid{
    grid-template-columns:1fr;
  }

  .coverage-header h2{
    font-size:42px;
  }

  .service-card{
    min-height:220px;
  }

  .service-card h3{
    font-size:28px;
  }

}



.oha-footer{
  background:
    radial-gradient(circle at top left, rgba(223, 125, 13, 0.753), transparent 35%),
    linear-gradient(135deg,#090d14a1,#111827fb 55%,#06080d7c);
  color:#fff;
  padding:80px 6% 60px;
  font-family:'Outfit',sans-serif;
}

.oha-footer-container{
  display:grid;
  grid-template-columns:1.15fr 1.2fr 1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.oha-logo{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:28px;
}

.oha-logo img{
    margin-left:-20px;
    height:143px;
    width:300px;
}

.oha-logo i{
    margin-top:10px;
  font-size:71px;
  color:#fff;
}

.oha-logo h2{
  color:#fff;
  font-size:45px;
  margin:0;
  text-transform:uppercase;
}

.oha-logo h2::first-letter{
  color:#ffb937;
}

.oha-logo span{
  letter-spacing:0px;
  text-transform:uppercase;
  font-size:25px;
}

.oha-brand p{
  color:#e5e7eb;
  line-height:1.8;
  font-size:16px;
  margin-bottom:28px;
}


.oha-contact{
  display:grid;
  gap:18px;
}

.oha-contact div{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:600;
}

.oha-contact i{
  width:45px;
  height:45px;
  background:#ff8837;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.oha-glass-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(16px);
  border-radius:22px;
  padding:28px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.oha-glass-card h3{
  font-size:23px;
  margin-bottom:28px;
  padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.25);
}

.oha-glass-card h3 i{
  background:#ff8837;
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-right:12px;
}

.oha-glass-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.oha-glass-card li{
  position:relative;
  padding-left:24px;
  margin-bottom:18px;
  color:#f3f4f6;
  font-size:16px;
}

.oha-glass-card li::before{
  content:"›";
  position:absolute;
  left:0;
  color:#ff8837;
  font-size:26px;
  line-height:18px;
  font-weight:900;
}

.oha-social-box{
  padding:32px 10px;
}

.oha-social-box h3{
  font-size:28px;
  line-height:1.3;
  margin-bottom:18px;
}

.oha-social-box h3 span{
  color:#ff8837;
}

.oha-social-box p{
  color:#d1d5db;
  line-height:1.7;
  margin-bottom:35px;
}

.oha-social-icons{
    padding-top: 35px;
  display:flex;
  gap:14px;
  margin-bottom:45px;
}

.oha-social-icons a{
  width:46px;
  height:46px;
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.18);
  transition:.3s ease;
}

.oha-social-icons a:hover{
  background:#ff8837;
  transform:translateY(-5px);
  color:#fff;
}

.oha-helpline{
  border:1px solid rgba(245, 153, 14, 0.699);
  background:rgba(223, 114, 12, 0.144);
  border-radius:18px;
  padding:20px;
  display:flex;
  gap:16px;
  align-items:center;
}

.oha-helpline i{
  width:58px;
  height:58px;
  background:#ff8837;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.oha-helpline span{
  text-transform:uppercase;
  font-size:13px;
  color:#e5e7eb;
}

.oha-helpline strong{
  display:block;
  font-size:26px;
  margin-top:4px;
}

.oha-footer-bottom{
  margin-top:55px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
}

.bottom-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:#fff;
}

.bottom-logo i{
  color:#ff8837;
  font-size:28px;
}

.oha-footer-bottom p{
  color:#d1d5db;
}

.oha-footer-bottom strong{
  color:#ff8837;
}

.bottom-links{
  display:flex;
  gap:28px;
}

.bottom-links a{
  color:#d1d5db;
  text-decoration:none;
  transition:.3s ease;
}

.bottom-links a:hover{
  color:#ff8837;
}

@media(max-width:1200px){
  .oha-footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

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

  .oha-footer{
    padding:60px 5% 25px;
  }

  .oha-logo h2{
    font-size:26px;
  }

  .oha-footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .bottom-links{
    flex-direction:column;
    gap:14px;
  }
}

/* APPLY SCROLL INSIDE BOTH LIST BOXES */

.oha-glass-card ul{
    list-style:none;
    padding-right:8px;

    height:310px;          /* box height */
    overflow-y:auto;       /* vertical scroll */

    scrollbar-width:thin;
    scrollbar-color:#ff8837 transparent;
}

/* CHROME SCROLLBAR */

.oha-glass-card ul::-webkit-scrollbar{
    width:6px;
}

.oha-glass-card ul::-webkit-scrollbar-track{
    background:transparent;
}

.oha-glass-card ul::-webkit-scrollbar-thumb{
    background:#ff8837;
    border-radius:20px;
}