* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

    background: #000;

    overflow-x: hidden;
}








:root {
            --gold: #d4af37;
            --dark: #0a0a0a;
            --glass: rgba(255, 255, 255, 0.05);
        }

        body {
            background-color: var(--dark);
            font-family: 'Poppins', sans-serif;
            color: #ffffff;
        }

        /* Premium Glassmorphism Navbar */
        .navbar {
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            padding: 15px 0;
            transition: all 0.4s ease;
        }

        .navbar-brand img {
            height: 60px;
            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
        }

        /* Animated Nav Links */
        .nav-link {
            color: #fff !important;
            font-weight: 400;
            margin: 0 15px;
            position: relative;
            transition: 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--gold);
            transition: 0.4s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--gold) !important;
            transform: translateY(-2px);
        }

        /* Gold Gradient Button */
        .btn-gold {
            background: linear-gradient(45deg, #b8860b, #d4af37);
            color: #000;
            font-weight: 600;
            border: none;
            padding: 10px 25px;
            border-radius: 0; /* Sharp legal look */
            transition: 0.4s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-gold:hover {
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            transform: scale(1.05);
        }

        /* Mobile Menu Toggler */
        .navbar-toggler {
            border-color: var(--gold);
            padding: 10px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(212, 175, 55, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }






























/* =========================
                SERVICES SECTION
        ========================= */

.services-section {

    padding: 120px 20px;

    background:
        linear-gradient(180deg,
            #000,
            #070707,
            #000);

    position: relative;
}

/* GOLD GLOW */

.services-section::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -250px;
    right: -200px;

    background:
        radial-gradient(rgba(212, 175, 55, .12),
            transparent 70%);

    filter: blur(20px);
}

.container {

    width: 100%;
    max-width: 1450px;

    margin: auto;

    position: relative;

    z-index: 2;
}

/* =========================
                TITLE
        ========================= */

.section-heading {

    text-align: center;

    margin-bottom: 90px;
}

.section-heading span {

    color: #d4af37;

    letter-spacing: 5px;

    font-size: 14px;

    font-weight: 600;
}

.section-heading h2 {

    color: #fff;

    font-size: 62px;

    margin-top: 18px;

    line-height: 1.3;
}

.section-heading p {

    color: #cfcfcf;

    margin-top: 20px;

    line-height: 2;

    font-size: 16px;
}

/* =========================
                MAIN BOX
        ========================= */

.main-service-box {

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .04),
            rgba(255, 255, 255, .02));

    border:
        1px solid rgba(212, 175, 55, .10);

    border-radius: 40px;

    padding: 50px;

    margin-bottom: 70px;

    position: relative;

    overflow: hidden;

    transition: .5s;
}

/* TOP LINE */

.main-service-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(90deg,
            transparent,
            #d4af37,
            #fff,
            #d4af37,
            transparent);

    background-size: 300%;

    animation: moveLine 6s linear infinite;
}

.main-service-box:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 50px rgba(212, 175, 55, .10);
}

/* =========================
                MAIN TITLE
        ========================= */

.service-title {

    text-align: center;

    margin-bottom: 50px;
}

.service-title h3 {

    color: #d4af37;

    font-size: 40px;

    margin-bottom: 15px;
}

.service-title p {

    color: #cfcfcf;

    max-width: 800px;

    margin: auto;

    line-height: 2;

    font-size: 15px;
}

/* =========================
                GRID
        ========================= */

.service-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 25px;
}

/* =========================
                CARD
        ========================= */

.service-card {

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .02));

    border:
        1px solid rgba(255, 255, 255, .05);

    border-radius: 28px;

    padding: 30px 22px;

    text-align: center;

    transition: .5s;

    position: relative;

    overflow: hidden;
}

/* GOLD GLOW */

.service-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    background:
        radial-gradient(rgba(212, 175, 55, .12),
            transparent 70%);

    transition: .5s;
}

/* HOVER */

.service-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(212, 175, 55, .20);

    box-shadow:
        0 18px 40px rgba(212, 175, 55, .10);
}

.service-card:hover::before {

    transform:
        scale(1.2);
}

/* =========================
                ICON
        ========================= */

.service-icon {

    width: 90px;
    height: 90px;

    border-radius: 25px;

    background:
        linear-gradient(135deg,
            #d4af37,
            #f6d365);

    margin: auto auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 2;

    box-shadow:
        0 12px 30px rgba(212, 175, 55, .20);
}

.service-icon i {

    color: #000;

    font-size: 34px;
}

/* =========================
                CARD TITLE
        ========================= */

.service-card h4 {

    color: #d4af37;

    font-size: 21px;

    margin-bottom: 15px;

    line-height: 1.5;

    position: relative;

    z-index: 2;
}

/* =========================
                TEXT
        ========================= */

.service-card p {

    color: #cfcfcf;

    line-height: 1.8;

    font-size: 14px;

    margin-bottom: 25px;

    position: relative;

    z-index: 2;
}

/* =========================
                BUTTON
        ========================= */

.service-card a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 24px;

    border-radius: 40px;

    background:
        linear-gradient(135deg,
            #d4af37,
            #f6d365);

    color: #000;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .4s;

    position: relative;

    z-index: 2;
}

.service-card a:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 25px rgba(212, 175, 55, .25);
}

/* =========================
                ANIMATION
        ========================= */

@keyframes moveLine {

    0% {
        background-position: 0%;
    }

    100% {
        background-position: 300%;
    }
}

/* =========================
                RESPONSIVE
        ========================= */

@media(max-width:768px) {

    .section-heading h2 {

        font-size: 38px;
    }

    .service-title h3 {

        font-size: 30px;
    }

    .main-service-box {

        padding: 35px 20px;
    }
}

@media(max-width:576px) {

    .section-heading h2 {

        font-size: 30px;
    }
}


























































/* =========================
                FOOTER
        ========================= */

        .main-footer{

            background:#050505;

            padding:80px 0 25px;

            border-top:
            1px solid rgba(212,175,55,.12);
        }

        .footer-bottom{

            text-align:center;

            color:var(--gold);
        }

        /* =========================
                RESPONSIVE
        ========================= */

        @media(max-width:991px){

            .career-hero h1{

                font-size:48px;
            }

            .form-title h2,
            .cta-box h2{

                font-size:40px;
            }
        }

        @media(max-width:768px){

            .navbar-brand img{

                height:55px;
            }

            .career-hero h1{

                font-size:36px;
            }

            .career-wrapper,
            .cta-box{

                padding:60px 25px;
            }

            .form-title h2,
            .cta-box h2{

                font-size:32px;
            }
        }
