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

:root {
    --primary: #0f3d6b;
    --primary-light: #165899;
    --primary-dark: #0a2745;
    --secondary: #f77f00;
    --secondary-hover: #ff9a33;
    --text-main: #2b2b2b;
    --text-muted: #666666;
    --bg-light: #f4f7fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html, body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Lenis smooth scrolling requires html/body to have smooth scroll behavior removed */
html {
    scroll-behavior: initial;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

/* Custom Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(15, 61, 107, 0.3);
}

.btn-primary-custom:hover {
    box-shadow: 0 8px 25px rgba(15, 61, 107, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff5e00 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 127, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 127, 0, 0.5);
    color: white;
}

.btn-outline-primary-custom {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

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

/* Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    margin: 0 12px;
    position: relative;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-brand img {
    height: 55px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 100% 0%, rgba(247, 127, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(15, 61, 107, 0.08) 0%, transparent 40%),
        var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Abstract SVG Shapes for Hero */
.hero-shape-1 {
    position: absolute;
    top: 50px;
    right: -100px;
    opacity: 0.1;
    z-index: 0;
    animation: rotate 60s linear infinite;
}

.hero-shape-2 {
    position: absolute;
    bottom: 0;
    left: -50px;
    opacity: 0.05;
    z-index: 0;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.15) 0%, rgba(247, 127, 0, 0.05) 100%);
    color: var(--secondary);
    border: 1px solid rgba(247, 127, 0, 0.2);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.hero-title span {
    color: var(--secondary);
    background: linear-gradient(135deg, var(--secondary) 0%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-img-container {
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 61, 107, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-element {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.floating-element.top {
    top: -20px;
    left: -20px;
    animation: float 4s ease-in-out infinite;
}

.floating-element.bottom {
    bottom: -20px;
    right: -20px;
    animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

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

/* Floating Action Menu (Like YOU Broadband) */
.quick-action-bar {
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.action-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    text-decoration: none;
    color: var(--text-main);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.action-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(15, 61, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.action-card:hover .action-icon {
    background: var(--primary);
    color: white;
}

/* Section Titles */
.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    color: var(--primary-dark);
    font-size: 2.8rem;
}

/* Feature Grid */
.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 61, 107, 0.1);
}

.feature-icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(15, 61, 107, 0.05) 0%, rgba(15, 61, 107, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon-wrap {
    background: var(--primary);
    transform: scale(1.1);
}

.feature-icon-wrap i {
    font-size: 40px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon-wrap i {
    color: white;
}

/* Plan Tabs & Cards */
.plan-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    margin: 0 auto 50px;
}

.plan-tabs-wrapper {
    text-align: center;
}

.plan-tab {
    padding: 12px 35px;
    border-radius: 50px;
    background: transparent;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.plan-tab.active,
.plan-tab:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(15, 61, 107, 0.2);
}

.plan-cards-container {
    display: none;
}

.plan-cards-container.active {
    display: flex;
}

.plan-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 61, 107, 0.15);
    border-color: rgba(247, 127, 0, 0.3);
}

.plan-duration {
    background: var(--primary-dark);
    text-align: center;
    padding: 20px 0;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-body {
    padding: 40px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.plan-speed {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    background: rgba(247, 127, 0, 0.1);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.plan-price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
    font-weight: 500;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--secondary);
    font-size: 1.3rem;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 25px;
    right: -40px;
    background: var(--secondary);
    color: white;
    padding: 8px 50px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Call to Action Banner */
.cta-banner {
    background: var(--primary-dark);
    padding: 80px 40px;
    color: white;
    text-align: center;
    border-radius: 24px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 61, 107, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(247, 127, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.cta-banner > * {
    position: relative;
    z-index: 2;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    background: white;
}

.accordion-button {
    font-weight: 700;
    color: var(--primary-dark);
    padding: 25px 30px;
    background: white;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: white;
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(34%) sepia(51%) saturate(3015%) hue-rotate(189deg) brightness(85%) contrast(85%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 30px;
    color: var(--text-muted);
    background: white;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, #ff5e00 100%);
}

.footer-logo {
    height: 60px;
    margin-bottom: 30px;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.footer h5 {
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    margin-right: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-section {
        text-align: center;
        padding-top: 130px;
    }

    .hero-img-container {
        margin-top: 50px;
    }

    .quick-action-bar {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .plan-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;
    }

    .plan-tab {
        text-align: center;
        border-radius: 10px;
    }

    .floating-element {
        padding: 8px 12px;
        gap: 10px;
        border-radius: 8px;
    }

    .floating-element .rounded-circle {
        width: 35px !important;
        height: 35px !important;
    }

    .floating-element .rounded-circle svg {
        width: 16px;
        height: 16px;
    }

    .floating-element h6 {
        font-size: 0.85rem;
    }

    .floating-element small {
        font-size: 0.7rem;
    }

    .floating-element.top {
        top: 0px;
        left: 0px;
    }

    .floating-element.bottom {
        bottom: 10px;
        right: 0px;
    }
}

/* Native CSS Scroll Reveal Animations */
.css-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.css-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Global Inner Page Hero Styles */
        .about-hero {
            padding-top: 140px;
            padding-bottom: 100px;
            background: var(--primary-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }
        /* Animated Gradient Blobs */
        .hero-blob-1 {
            position: absolute;
            top: -20%; left: -10%;
            width: 60%; height: 70%;
            background: radial-gradient(circle, rgba(247,127,0,0.25) 0%, transparent 60%);
            border-radius: 50%;
            filter: blur(40px);
            animation: blob-float 15s infinite alternate ease-in-out;
            z-index: 0;
        }
        .hero-blob-2 {
            position: absolute;
            bottom: -30%; right: -10%;
            width: 70%; height: 80%;
            background: radial-gradient(circle, rgba(22, 88, 153, 0.4) 0%, transparent 60%);
            border-radius: 50%;
            filter: blur(50px);
            animation: blob-float 18s infinite alternate-reverse ease-in-out;
            z-index: 0;
        }
        .hero-blob-3 {
            position: absolute;
            top: 10%; right: 20%;
            width: 40%; height: 50%;
            background: radial-gradient(circle, rgba(15, 61, 107, 0.8) 0%, transparent 50%);
            border-radius: 50%;
            filter: blur(30px);
            animation: blob-float-2 20s infinite alternate ease-in-out;
            z-index: 0;
        }
        
        @keyframes blob-float {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(10%, 15%) scale(1.1); }
            100% { transform: translate(-5%, 5%) scale(0.9); }
        }
        @keyframes blob-float-2 {
            0% { transform: translate(0, 0) scale(0.9); }
            50% { transform: translate(-15%, 10%) scale(1.1); }
            100% { transform: translate(10%, -10%) scale(1); }
        }
        
        /* Floating Glass Cards */
        .hero-glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            position: absolute;
            animation: card-float 6s infinite alternate ease-in-out;
        }
        .glass-card-1 { top: 0; right: 20%; width: 280px; z-index: 3; }
        .glass-card-2 { bottom: 0; left: 0; width: 220px; z-index: 2; animation-delay: -3s; }
        .glass-card-3 { top: 50%; right: 0; transform: translateY(-50%); width: 200px; z-index: 1; animation-delay: -1.5s; background: rgba(247, 127, 0, 0.1); border-color: rgba(247, 127, 0, 0.3); }
        
        @keyframes card-float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-20px); }
        }

        .about-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb-custom {
            display: inline-flex;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
            margin-bottom: 30px;
            font-size: 0.95rem;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb-custom a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
        }
        .breadcrumb-custom a:hover {
            color: white;
        }
        .breadcrumb-custom span {
            margin: 0 12px;
            color: rgba(255,255,255,0.5);
        }

