﻿body {
}

:root {
    --primary: #1c19b7;
    --secondary: #d43c3c;
    --dark: #0f172a;
    --light: #f8fafc;
}

* {
    margin: 0;
    padding: 6px;
    box-sizing: border-box;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
    background: #fff;
    padding-top: 120px; /* space for fixed header */
}

/* ================= TOP ACTION BAR ================= */
.top-action-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #dbe49f;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 6px 12px;
    border-bottom: 1px solid #eee;
}

.call-btn {
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    color: var(--secondary) !important;
}

.apply-btn {
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    color: #fff;
}

.apply-btn {
    background: var(--primary);
}

.call-btn {
    background: #fff;
}

@media (max-width: 768px) {

    .navbar-brand {
        font-size: 20px !important;
        font-weight: bold;
        color: #df1066 !important;
        text-align: left !important;
    }

    .top-action-bar {
        justify-content: center;
        padding: 3px 5px;
    }



    .apply-btn,
    .call-btn {
        font-size: 12px;
        padding: 2px 6px;
    }
}

/* ================= NAVBAR (FIXED) ================= */
.navbar {
    position: fixed;
    top: 32px; /* below top bar */
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    padding: 0px !important;
    /*  padding: 10px 0;*/
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.navbar-brand {
    font-size: 40px;
    font-weight: bold;
    color: #df1066 !important;
    text-align: left !important;
}

@media (max-width: 768px) {

    .navbar {
        position: fixed;
        top: 28px; /* below top bar */
        left: 0;
        right: 0;
        z-index: 9998;
        background: #fff;
        padding: 0px !important;
        /*  padding: 10px 0;*/
        box-shadow: 0 2px 10px rgba(0,0,0,.05);
    }

    .navbar-brand {
        font-size: 25px;
        font-weight: bold;
        color: #df1066 !important;
        text-align: left !important;
    }
}

.nav-link {
    font-weight: 700;
    margin-left: 15px;
    font-size: 20px !important;
}

.navbar .dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.dropdown-item {
    font-weight: 600;
    font-size: 17px !important;
    color: #000 !important;
}

    .dropdown-item:hover {
        background: #f1f5f9;
    }

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* ================= HERO ================= */
.hero {
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)), url('/img/feature.jpg');
    background-size: cover;
    background-position: center;
    min-height: 65vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 50px 0;
    margin-top: -40px !important;
}


    .hero h1 {
        font-size: 52px;
        font-weight: 800;
    }

    .hero p {
        font-size: 20px;
    }

    .hero-btn {
        background: var(--secondary);
        padding: 14px 35px;
        border-radius: 50px;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        margin-top: 20px;
    }

    /* ================= SERVICES ================= */
    .section-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title1 {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 40px;
        font-weight: 800;
    }

    .section-title1 h2 {
        font-size: 40px;
        font-weight: 800;
    }



    /* ================= QUOTE ================= */
    .quote-section {
        background: #f1f5f9;
        padding: 70px 0;
    }

    .quote-box {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
    }

    .form-control, .form-select {
        height: 55px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    textarea.form-control {
        height: 120px;
    }

    .submit-btn {
        background: var(--secondary);
        color: #fff;
        border: none;
        padding: 14px 40px;
        border-radius: 50px;
        font-weight: 700;
    }

    /* ================= GALLERY ================= */
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
        gap: 15px;
    }

        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            transition: .3s;
        }

            .gallery img:hover {
                transform: scale(1.05);
            }

    /* ================= VIDEO ================= */
    .video-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,.1);
        height: 300px;
    }

        .video-card video {
            width: 100%;
            height: 300px;
        }

    /* ================= MODAL ================= */
    .modal-preview {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.9);
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

        .modal-preview img {
            max-width: 90%;
            max-height: 90%;
        }

    /* ================= FOOTER ================= */
    footer {
        background: #020617;
        color: #fff;
        padding: 10px 0;
    }


    /* GOOGLE FONT */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

    body {
        font-family: 'Poppins', sans-serif;
    }

    .bgcolr {
        background-color: rgba(14,165,233,0.25) !important;
    }
    /* SECTION */
    .quote-section {
        position: relative;
        background: #fff;
        /*radial-gradient(circle at top left, rgba(14,165,233,0.15), transparent 35%),
        radial-gradient(circle at bottom right, rgba(56,189,248,0.15), transparent 35%),
        linear-gradient(135deg, #020617, #0f172a);*/
        overflow: hidden;
        padding: 100px 0;
    }

    /* GLOW SHAPES */
    .quote-bg-shape,
    .quote-bg-shape2 {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        z-index: 1;
    }

    .quote-bg-shape {
        width: 300px;
        height: 300px;
        background: rgba(14,165,233,0.25);
        top: -80px;
        left: -80px;
    }

    .quote-bg-shape2 {
        width: 280px;
        height: 280px;
        background: rgba(56,189,248,0.20);
        bottom: -100px;
        right: -80px;
    }

    /* GLASS CARD */
    .quote-wrapper {
        position: relative;
        z-index: 2;
        max-width: 920px;
        padding: 60px;
        border-radius: 30px;
        /* background: rgba(255,255,255,0.08);*/
        background: radial-gradient(circle at top left, rgba(14,165,233,0.15), transparent 35%), radial-gradient(circle at bottom right, rgba(56,189,248,0.15), transparent 35%), linear-gradient(135deg, #020617, #0f172a);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 1px 1px rgba(255,255,255,0.1);
    }

    /* HEADER */
    .quote-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(56,189,248,0.12);
        border: 1px solid rgba(56,189,248,0.25);
        color: #38bdf8;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 20px;
        letter-spacing: .5px;
    }

    .quote-header {
    }

        .quote-header h2 {
            font-size: 52px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .quote-header p {
            color: #cbd5e1;
            font-size: 17px;
            max-width: 650px;
            margin: auto;
            line-height: 1.8;
        }

    /* INPUT */
    .input-group-custom {
        position: relative;
    }

        .input-group-custom .form-control,
        .input-group-custom .form-select {
            width: 100%;
            height: 65px;
            border-radius: 18px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            color: #fff;
            padding: 18px 50px 18px 18px;
            font-size: 15px;
            transition: all 0.35s ease;
        }

        .input-group-custom textarea.form-control {
            height: auto;
            min-height: 160px;
            resize: none;
            padding-top: 24px;
        }

        /* ICONS */
        .input-group-custom i {
            position: absolute;
            right: 18px;
            top: 22px;
            color: #38bdf8;
            font-size: 18px;
            pointer-events: none;
            transition: 0.3s;
        }

        /* FOCUS EFFECT */
        .input-group-custom .form-control:focus,
        .input-group-custom .form-select:focus {
            background: rgba(255,255,255,0.10);
            border-color: #38bdf8;
            box-shadow: 0 0 0 4px rgba(56,189,248,0.12), 0 0 25px rgba(56,189,248,0.20);
            color: #fff;
        }

            .input-group-custom .form-control:focus + label + i,
            .input-group-custom .form-select:focus + label + i {
                transform: scale(1.1);
            }

        /* LABELS */
        .input-group-custom label {
            position: absolute;
            left: 18px;
            top: 20px;
            color: #cbd5e1;
            font-size: 14px;
            transition: 0.3s ease;
            pointer-events: none;
            padding: 0 6px;
        }

        .input-group-custom .form-control:focus + label,
        .input-group-custom .form-control:valid + label,
        .input-group-custom textarea:focus + label,
        .input-group-custom textarea:valid + label,
        .input-group-custom .form-select:focus + label,
        .input-group-custom .form-select:valid + label {
            top: -10px;
            left: 14px;
            font-size: 12px;
            color: #38bdf8;
            background: #0f172a;
            border-radius: 6px;
        }

    /* PLACEHOLDER HIDE */
    .form-control::placeholder {
        color: transparent;
    }

    /* BUTTON */
    .quote-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #0ea5e9, #38bdf8);
        color: #fff;
        border: none;
        padding: 18px 42px;
        border-radius: 60px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.35s ease;
        box-shadow: 0 15px 35px rgba(14,165,233,0.35);
        position: relative;
        overflow: hidden;
    }

        .quote-btn::before {
            content: "";
            position: absolute;
            width: 40px;
            height: 200%;
            background: rgba(255,255,255,0.35);
            top: -50%;
            left: -80px;
            transform: rotate(25deg);
            transition: 0.7s;
        }

        .quote-btn:hover::before {
            left: 120%;
        }

        .quote-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(14,165,233,0.50);
        }

    /* SELECT */
    .form-select option {
        color: #000;
    }

    /* RESPONSIVE */
    @media(max-width:991px) {

        .quote-wrapper {
            padding: 45px 30px;
        }

        .quote-header h2 {
            font-size: 42px;
        }
    }

    @media(max-width:768px) {

        .quote-section {
            padding: 70px 0;
        }

        .quote-wrapper {
            padding: 35px 20px;
            border-radius: 24px;
        }

        .quote-header h2 {
            font-size: 34px;
        }

        .quote-header p {
            font-size: 15px;
        }

        .input-group-custom .form-control,
        .input-group-custom .form-select {
            height: 58px;
        }

        .quote-btn {
            width: 100%;
            justify-content: center;
        }
    }




    body {
        font-family: 'Poppins', sans-serif;
    }

    /* SECTION */
    .industry-section {
        position: relative;
        background: radial-gradient(circle at top left, rgba(14,165,233,0.12), transparent 35%), radial-gradient(circle at bottom right, rgba(56,189,248,0.12), transparent 35%), linear-gradient(135deg, #020617, #0f172a);
        overflow: hidden;
    }

    /* GLOW */
    .industry-glow {
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        filter: blur(90px);
        z-index: 1;
    }

    .glow-1 {
        top: -80px;
        left: -80px;
        background: rgba(14,165,233,0.18);
    }

    .glow-2 {
        bottom: -80px;
        right: -80px;
        background: rgba(56,189,248,0.18);
    }

    /* TITLE */
    .section-title {
        position: relative;
        z-index: 2;
    }

    .section-title1 {
        position: relative;
        z-index: 2;
    }

    .section-title .subtitle {
        display: inline-block;
        background: rgba(56,189,248,0.12);
        color: #38bdf8;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 18px;
        border: 1px solid rgba(56,189,248,0.2);
    }

    .section-title1 .subtitle {
        display: inline-block;
        background: rgba(56,189,248,0.12);
        color: #38bdf8;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 18px;
        border: 1px solid rgba(56,189,248,0.2);
    }

    .section-title h2 {
        color: #fff;
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .section-title p {
        max-width: 700px;
        margin: auto;
        color: #cbd5e1;
        line-height: 1.8;
        font-size: 16px;
    }

    .section-title1 h2 {
        color: #000;
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .section-title1 p {
        max-width: 700px;
        margin: auto;
        color: #cbd5e1;
        line-height: 1.8;
        font-size: 16px;
    }

    /* CARD */
    .industry-card {
        position: relative;
        z-index: 2;
        height: 100%;
        padding: 35px 25px;
        border-radius: 24px;
        text-align: center;
        background: rgba(255,255,255,0.06);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.10);
        transition: all 0.4s ease;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }

        /* HOVER EFFECT */
        .industry-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient( 135deg, rgba(56,189,248,0.15), transparent );
            opacity: 0;
            transition: 0.4s;
        }

        .industry-card:hover::before {
            opacity: 1;
        }

        .industry-card:hover {
            transform: translateY(-10px);
            border-color: rgba(56,189,248,0.4);
            box-shadow: 0 25px 50px rgba(14,165,233,0.25);
        }

    /* ICON */
    .icon-box {
        width: 85px;
        height: 85px;
        margin: auto;
        margin-bottom: 25px;
        border-radius: 22px;
        background: linear-gradient(135deg, #0ea5e9, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(14,165,233,0.35);
        position: relative;
    }

        .icon-box::after {
            content: "";
            position: absolute;
            inset: -8px;
            border-radius: 25px;
            border: 1px solid rgba(56,189,248,0.2);
        }

        .icon-box i {
            color: #fff;
            font-size: 34px;
        }

    /* TEXT */
    .industry-card h4 {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .industry-card p {
        color: #cbd5e1;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    /* NUMBER */
    .card-number {
        position: absolute;
        top: 18px;
        right: 20px;
        font-size: 45px;
        font-weight: 800;
        color: rgba(255,255,255,0.05);
        line-height: 1;
    }

    /* MOBILE */
    @media(max-width:991px) {

        .section-title h2 {
            font-size: 38px;
        }

        .section-title1 h2 {
            font-size: 38px;
        }

        .industry-card {
            padding: 28px 20px;
        }
    }

    @media(max-width:768px) {

        .industry-section {
            padding: 70px 0;
        }

        .section-title h2 {
            font-size: 32px;
        }

        .section-title p {
            font-size: 15px;
        }

        .section-title1 h2 {
            font-size: 32px;
        }

        .section-title1 p {
            font-size: 15px;
        }

        .industry-card {
            padding: 24px 16px;
            border-radius: 20px;
        }

        .icon-box {
            width: 70px;
            height: 70px;
        }

            .icon-box i {
                font-size: 28px;
            }

        .industry-card h4 {
            font-size: 18px;
        }

        .industry-card p {
            font-size: 13px;
        }

        .card-number {
            font-size: 35px;
        }
    }



    .services-section {
        background: #1f2937; /* dark modern background */
        color: #fff;
    }

    .section-title h2 {
        font-size: 2.2rem;
        font-weight: 700;
    }

    .section-title p {
        color: #cbd5e1;
    }

    /* Card Design */
    .service-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 30px 20px;
        border-radius: 16px;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        height: 100%;
    }

        /* Hover Effect */
        .service-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.1);
            border-color: #38bdf8;
        }

        /* Icon */
        .service-card i {
            font-size: 40px;
            color: #f59e0b;
            margin-bottom: 15px;
        }

        /* Title */
        .service-card h4 {
            color: #fff !important;
            font-size: 18px;
            font-weight: 600;
        }

    /* Mobile tweaks */
    @media (max-width: 576px) {
        .section-title h2 {
            font-size: 1.8rem;
        }

        .service-card {
            padding: 25px 15px;
        }
    }

    .floating-badge {
        position: fixed;
        top: 125px;
        right: 20px;
        background: #fff;
        padding: 10px 18px;
        border-radius: 50px;
        box-shadow: 0 5px 20px rgba(0,0,0,.08);
        font-size: 14px;
        font-weight: 600;
        color: #0d6efd;
        z-index: 99999;
    }

