:root {
    --primary-orange: #F37021;
    --primary-orange-dark: #E65C00;
    --gold-: #FFD700;
    --bg-main: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
    --bg-section: #0b0b0b;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent: #FFD700;
    --accent-soft: #FFD700;
    --accent-glow: rgba(212, 175, 55, .15);
    --bg: #06080c;
    --card: #121720;
    --text: #e8ecf1;
    --muted: #9aa4af;
    --text-main: #f5f5f5;
    --text-secondary: #bfbfbf;
    --aar-gold: #FFD700;
    --aar-dark: #06080c;
    --text: #d9dde3;
    --white: #ffffff;
    --aar-gold: #FFD700;
    --aar-dark: #06080c;
    --white: #FFFFFF;
    --white-soft: #FDFCFB;
    --am-gold: #FFD700;
    --am-dark: #070a10;
    --am-text: #cfd6df;
     --am-gold: #FFD700;
        --am-gold-light: #f0cd04;
        --am-dark: #0a0a0a;
        --am-card: #111111;
            --bg-dark: #050505;
    --bg-soft: #0b0b0b;
    --gold: #FFD700;
    --text: #e5e5e5;
    --muted: #b5b5b5;
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 32px rgba(243, 112, 33, 0.25);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 25px;
    --radius-xl: 30px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1320px;
 --navbar-height: 90px;
    --navbar-height-mobile: 74px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);

    font-size: 16px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    padding-top: var(--navbar-height);
    line-height: 1.7;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% 35%, rgba(212, 175, 55, 0.07), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.04), transparent 50%),
        linear-gradient(180deg,
            #050505 0%,
            #0a0a0a 50%,
            #070707 100%);

    color: #e8ecf1;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}


h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-light);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}


.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 60px 0px 40px 0px;
}

.section-alt {
    background: linear-gradient(to bottom, var(--bg-alt), var(--bg-main));
}

.section-accent {
    background-color: var(--bg-accent);
}


.bg-gradient-orange {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
}

.bg-gradient-soft {
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-alt));
}


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

.text-dark {
    color: var(--text-dark);
}

.text-light {
    color: var(--text-light);
}

/* ============================================
   FLOATING NAVBAR
   ============================================ */
.navbar-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition-normal);
    width: 100%;
}

.navbar {
    width: 100%;
    margin: 0 auto;
    height: 90px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    transition: var(--transition-normal);
    gap: 18px;
}


/* ========================= */
/* NAVBAR BASE 
/* ========================= */
.navbar {
    background: linear-gradient(135deg,
            rgba(50, 45, 40, 0.45),
            rgba(20, 18, 15, 0.65));
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ========================= */
/* NAVBAR SCROLLED */
/* ========================= */
.navbar.scrolled {
    background: linear-gradient(90deg,
            rgba(12, 12, 12, 0.85),
            rgba(24, 24, 24, 0.92));
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.65),
        0 0 25px rgba(220, 175, 55, 0.08),
        inset 0 1px 0 rgba(220, 175, 55, 0.1);
}

/* ========================= */
/* NAVBAR BASE */
/* ========================= */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-container {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);

}

.logo-container img {
    width: 90% !important;
    height: 90% !important;
    object-fit: contain;
    padding: 0px;
}

.brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: none;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    flex: 1;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    white-space: nowrap;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: #000000;


    background: #FFD700;


    padding: 10px 18px;
    border-radius: 30px;

    border: 1px solid rgba(212, 175, 55, .35);

    backdrop-filter: blur(8px);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;

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


    background: rgba(60, 45, 20, .45);
    backdrop-filter: blur(10px);

    color: #FFD700;
    border: 1px solid rgba(212, 175, 55, .25);

    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
    transition: .35s ease;
}

.icon-btn:hover {
    background: linear-gradient(135deg, #F2D98A, #FFD700, #A8872A);
    color: #000;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(212, 175, 55, .35),
        0 0 25px rgba(212, 175, 55, .2);
}

.btn-secondary,
.btn-second,
.btn-slide {
    position: relative;
    z-index: 3;
}

.btn-primary {
    padding: 10px 22px;
    background: #FFD700;

    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(243, 112, 33, 0.35);
}



.btn-slide {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.4s ease;
}


.btn-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #FFD700;
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}


.btn-slide:hover {
    color: #000000;
}

.btn-slide:hover::before {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold-);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background: var(--primary-orange);
    width: 32px;
    border-radius: 6px;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-about {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 26px;
}

.section-title-about {
    margin-bottom: 28px;
    color: var(--gold-);
}


/* =========================
   BANNER FOR ALL PAGES
========================= */


.inner-banner {
    position: relative;

    height: 320px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

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

    padding: 0 20px;

    border-radius: 0 0 8px 8px;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.7));

    z-index: 1;
}


.banner-content {
    position: relative;
    z-index: 2;

    color: #ffffff;
    max-width: 800px;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}


.banner-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;

    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* text */
.banner-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .inner-banner {
        height: 220px;
        /* reduced mobile height */
        border-radius: 0 0 18px 18px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-text {
        font-size: 0.9rem;
    }
}

/* ========== ABOUT SECTION ========== */

.about-story-full {
    position: relative;
    width: 100%;
    padding: 70px 40px;
    z-index: 2;
    background:
        radial-gradient(circle at 20% 40%, rgba(212, 175, 55, .08), transparent 40%),
        linear-gradient(180deg,
            #000000 0%,
            #111111 45%,
            #1A1A1A 100%);
}


.about-story-inner {
    max-width: 1200px;
    margin: auto;
}


.about-story-text {
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    line-height: 1.7;
    font-weight: 300;
    color: #f5f5f5;
    letter-spacing: .2px;

    text-align: justify;
    text-align-last: center;
}


.about-story-text .hl {
    color: var(--gold-);
    font-weight: 500;
}


.about-story-text strong {
    font-weight: 500;
}

.about-sub-heading {
    text-align: center;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 600;
    margin: 40px 0 10px;
    color: #2a201c;
}


@media(max-width:992px) {
    .about-story-full {
        padding: 80px 30px;
    }

    .about-story-text {
        text-align: left;
        text-align-last: left;
        font-size: 1.4rem;
    }
}

@media(max-width:576px) {
    .about-story-full {
        padding: 60px 20px;
    }

    .about-story-text {
        font-size: 1.15rem;
        line-height: 1.8;
    }
}

/* ========== CORE VALUE SECTION ========== */

.abt-values-section {
    position: relative;
    width: 100%;
    padding: 120px 60px;

    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    overflow: hidden;
}


.abt-values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}


.abt-values-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.abt-values-tag {
    color: #FFD700;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.abt-values-title {
    font-size: 3rem;
    color: #fff;
}


.abt-values-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.abt-value-card {
    position: relative;
    padding: 35px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(80, 74, 57, 0.15);
    border-radius: 6px;

    transition: 0.35s ease;
}

.abt-value-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25px;
    bottom: 25px;
    width: 3px;
    background: linear-gradient(#FFD700, transparent);
}

.abt-value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 94, 71, 0.15);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

.abt-value-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;

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

    background: rgba(212, 175, 55, 0.12);
    color: #FFD700;
    font-size: 1.3rem;

    margin-bottom: 15px;
}

.abt-value-card h4 {
    color: #FFD700;
    font-size: 1.34rem;
    margin-bottom: 10px;
}

.abt-value-card p {
    color: #bdbdbd;
    line-height: 1.7;
    font-size: 1.18rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    .abt-values-section {
        padding: 40px 20px;
    }

    .abt-values-title {
        font-size: 2rem;
    }

    .abt-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* =========================
   VISION & MISSION
========================= */


.abt-vm-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #111111 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}


.abt-vm-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%);
    background-size: 100px 100px;
    animation: abtVmGrid 20s linear infinite;
}

@keyframes abtVmGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}


.abt-vm-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}


.abt-vm-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    min-height: 80vh;
}


.abt-vm-vision {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), transparent);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.abt-vm-vision::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, transparent, #D4AF37, transparent);
}


.abt-vm-mission {
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05));
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.abt-vm-mission::before {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, transparent, #FFD700, transparent);
}

/* =========================
   CENTER VIDEO 
========================= */

.abt-vm-visual {
    position: relative;
    overflow: hidden;
    margin: -40px 0;
    z-index: 3;
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.2);

    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 800px;
}

.abt-vm-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    position: relative;
    z-index: 1; 
    
    filter: brightness(0.85) contrast(1.2) saturate(1.1);
    transition: transform 0.8s ease, filter 0.6s ease;
}

.abt-vm-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.15) 55%,
        rgba(0,0,0,0.35) 100%
    );

    z-index: 2;
    pointer-events: none;
}
.abt-vm-tag {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #FFD700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.abt-vm-tag::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    max-width: 100px;
}

.abt-vm-head {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.abt-vm-head span {
    color: #FFD700;
    display: block;
    font-size: 1.2rem;
    letter-spacing: 8px;
    margin-top: 10px;
}

.abt-vm-desc {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}


.abt-vm-list {
    list-style: none;
}

.abt-vm-list li {
    font-size: 1rem;
    color: #b0b0b0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    gap: 20px;
    transition: 0.3s;
}

.abt-vm-list li:hover {
    color: #fff;
    padding-left: 5px;
}

.abt-vm-list li::before {
    content: '→';
    color: #FFD700;
}


.abt-vm-deco {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.abt-vm-deco.tr {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.abt-vm-deco.br {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}


.abt-vm-anim {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s;
}

.abt-vm-anim.on {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 991px) {
    .abt-vm-wrap {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .abt-vm-visual {
        height: 400px;
        margin: 0;
    }

    .abt-vm-visual video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .abt-vm-deco {
        display: none;
    }
}


/* =========================
 WHY SECTION - About
========================= */
.why-section {
    position: relative;
    padding: 90px 0;

    background: linear-gradient(to right,
            #000000 0%,
            #020202 40%,
            #000000 100%);

    box-shadow: inset 0 80px 120px rgba(0, 0, 0, 0.9);
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, .05), transparent 60%);
    pointer-events: none;
}

/* ===== LEFT STICKY ===== */

.why-left {
    position: sticky;
    top: 120px;
    padding-right: 30px;
    z-index: 5;
}

.why-section,
.why-section .container,
.why-section .row,
.why-section .col-lg-5 {
    overflow: visible !important;
}

.why-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;


    background: linear-gradient(90deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);

    margin-bottom: 20px;
}

.why-desc {
    color: #d1cfcf;
    line-height: 1.7;
    font-size: 1.22rem;
}

/* =========================
 RIGHT SIDE (EDGE DESIGN)
========================= */

.why-right {
    position: relative;
    padding-left: 30px;
}

/* .why-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(213, 188, 44, 0.25), transparent);
} */

.why-card {
    position: relative;
    padding: 30px 0;

    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;

    margin-bottom: 0;
    transition: 0.3s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, #FFD700, transparent);
}

.why-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card:last-child {
    border-bottom: none;
}

.why-card:hover {
    transform: translateX(8px);
}

.why-card h4 {
    color: #FFD700;
    font-size: 1.55rem;
    margin-bottom: 12px;
}

.why-card p {
    color: #bdbdbd;
    font-size: 1.18rem;
    line-height: 1.7;
}

/* =========================
 MOBILE
========================= */

@media(max-width:992px) {

    .why-section {
        background: #000000;
        padding: 20px 0;
        box-shadow: inset 0 40px 80px rgba(0, 0, 0, 0.8);
    }

    .why-section::before {
        background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, .03), transparent 60%);
    }

    .why-left {
        position: relative;
        top: 0;
        margin-bottom: 60px;
        padding-right: 0;
    }

    .why-right {
        padding-left: 20px;
    }

    .why-right::before {
        left: 0;
    }

    .why-card::before {
        left: -8px;
    }

    .why-title {
        font-size: 2rem;
    }
}


/* =========================
   VISION - SERVICE
========================= */

.vision-block {
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/charcoal-background.webp") center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, .65) 0%,
            rgba(0, 0, 0, .75) 60%,
            rgba(0, 0, 0, .85) 100%);
    z-index: 1;
}

.vision-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: auto;
    padding: 50px 20px;
}

.vision-label {
    color: var(--white-soft);
    font-size: .8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 18px;
}

.vision-title {
    color: var(--aar-gold);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.vision-text {
    color: rgba(255, 255, 255, .88);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 760px;
    margin: auto;
}

@media(max-width:992px) {
    .vision-block {
        min-height: 340px;
    }

    .vision-text {
        font-size: 1.1rem;
    }
}

@media(max-width:576px) {
    .vision-block {
        min-height: 300px;
    }

    .vision-title {
        font-size: 2rem;
    }

    .vision-text {
        font-size: 1rem;
    }
}

@media(max-width:768px) {
    .vision-block {
        background-attachment: scroll;
    }
}


/* =========================
 SERVICES  SECTION
========================= */

.services-adv-section {
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: visible;

    background:
        radial-gradient(circle at 85% 20%, rgba(198, 178, 25, 0.06), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.4), transparent 50%),
        linear-gradient(180deg,
            #0b0d10 0%,
            #0f1318 40%,
            #0c0f13 70%,
            #080a0c 100%);
}


.services-adv-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}


.services-adv-right {
    position: relative;
    padding-left: 20px;
    counter-reset: service-item;
    z-index: 2;
}


.services-adv-card {
    position: relative;
    padding: 0 0 65px 0;
    transition: all 0.35s ease;
    counter-increment: service-item;
}


.services-adv-card:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
}


.services-adv-card h4 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: #eaeaea;
    position: relative;
    padding-left: 42px;
    letter-spacing: 0.2px;
}


.services-adv-card h4::before {
    content: "0" counter(service-item);
    position: absolute;
    left: 0;
    top: 8px;

    font-size: 0.8rem;
    font-weight: 600;
    color: #FFD700;

    letter-spacing: 2px;

    text-shadow:
        0 0 6px rgba(198, 178, 25, 0.6),
        0 0 14px rgba(198, 178, 25, 0.3);
}


.services-adv-card p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    font-size: 1.05rem;
    margin-left: 42px;
    max-width: 600px;
}


.services-adv-card:hover h4 {
    color: #C6B219;
}

.services-adv-card:hover p {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(6px);
}

.services-adv-card:hover {
    transform: translateX(6px);
}


@media(max-width: 992px) {

    .services-adv-section {
        padding: 80px 0;
    }

    .services-adv-left {
        position: relative;
        top: 0;
        margin-bottom: 50px;
        padding-right: 0;
    }

    .services-adv-title {
        font-size: 2.2rem;
    }

    .services-adv-card h4 {
        font-size: 1.4rem;
    }
}

@media(max-width: 576px) {

    .services-adv-section {
        padding: 60px 0;
    }

    .services-adv-title {
        font-size: 1.8rem;
    }

    .services-adv-card h4 {
        font-size: 1.2rem;
        padding-left: 30px;
    }

    .services-adv-card p {
        font-size: 0.95rem;
        margin-left: 30px;
    }
}


/* =========================
   PROJECTS SECTION
========================= */

.project-bg {
    position: relative;
    padding: 60px 0 0px;
    overflow: hidden;

    background:
        radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.07), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(212, 175, 55, 0.04), transparent 45%),
        linear-gradient(180deg,
            #050505 0%,
            #0a0a0a 40%,
            #111111 75%,
            #070707 100%);
}

.project-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
    pointer-events: none;
}


.project-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}


@media(max-width:768px) {
    .project-bg {
        padding: 70px 0;
    }
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

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

.project-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    border-radius: 6px;
    position: relative;

    background: linear-gradient(145deg,
            rgba(25, 25, 25, 0.9) 0%,
            rgba(15, 15, 15, 0.95) 50%,
            rgba(8, 8, 8, 1) 100%);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition: .45s cubic-bezier(.2, .8, .2, 1);
}


.project-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    transition: 1.2s;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, .35));
}


.project-content {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;


    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.95) 100%);


    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.project-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    width: 2px;

    background: linear-gradient(to bottom,
            transparent 0%,
            #FFD700 50%,
            transparent 100%);

    opacity: 0.7;
}


.project-content::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:

        linear-gradient(to right, rgba(212, 175, 55, 0.4), transparent) top left / 100% 1px no-repeat,

        linear-gradient(to bottom, rgba(212, 175, 55, 0.4), transparent) top right / 1px 100% no-repeat;

    opacity: 0.6;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.project-badge {
    color: #1a1a1a;

    background: linear-gradient(135deg,
            #FFF3B0,
            #FFD700,
            #D4AF37);

    padding: 8px 18px;
    border-radius: 999px;

    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);

    border: 1px solid rgba(255, 215, 0, 0.25);
}

.project-badge:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.5),
        inset 0 1px 4px rgba(255, 255, 255, 0.35);
}

.project-quantity {
    color: #d8d7d7;
    font-size: 18px;
    white-space: nowrap;
}

.project-content h3 {
    font-weight: 700;
    font-size: 1.55rem;
    margin-bottom: 10px;
    line-height: 1.35;
    color: var(--gold-);
}

.project-card:hover .project-content h3 {
    text-shadow: 0 0 14px rgba(212, 175, 55, .18);
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.project-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .98rem;
    color: #bdbdbd;
}

.project-detail span {
    color: #d0d0d0;
}

.project-detail i {
    color: #FFD700;
    margin-top: 3px;
}

.client-logo img {
    width: 90px;
    height: auto;
    object-fit: contain;
    display: block;
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);

    transition: 0.3s ease;
}

.client-logo img:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

@media(max-width:768px) {


    .project-content {
        padding: 22px;
    }

    .project-header {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 14px;
    }

    .client-logo img {
        width: 70px;
        padding: 6px;
        border-radius: 10px;
    }

    .project-badge {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .project-quantity {
        width: 100%;
        font-size: 13px;
        color: #aaa;
        margin-top: 4px;
    }

    .project-content h3,
    .project-content h2 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .project-detail,
    .project-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

}

/* ======================
   MOBILE
====================== */

@media(max-width:992px) {

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-content {
        padding: 32px;
    }

    .project-image img {
        min-height: 240px;
    }

}

/* ============================================
   HERO SECTION
   ============================================ */


.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==============================
   HERO VIDEO BACKGROUND
============================== */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.15) saturate(1.1);

    z-index: 1;
}

/* ==============================
   HERO OVERLAY
============================== */

.hero-overlay {
    position: absolute;
    inset: 0;

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

    padding: 80px 40px;
    text-align: center;
    z-index: 2;
    background:
        radial-gradient(circle at 12% 45%, rgba(212, 175, 55, 0.18), transparent 55%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.50) 75%,
            rgba(0, 0, 0, 0.70) 100%);

    backdrop-filter: blur(1px);
}

/* ==============================
   HERO CONTENT
============================== */

.hero-content {
    max-width: 900px;
    color: #fff;
}


.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}


.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;

    color: #FFD700;

    margin-bottom: 20px;

    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(212, 175, 55, 0.35);
}


.hero-description {
    max-width: 680px;
    margin: 0 auto 35px;

    font-size: 1.1rem;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.92);
}

/* ==============================
   HERO BUTTONS
============================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}


.btn-second {
    padding: 14px 34px;
    border-radius: 50px;

    background: linear-gradient(135deg, #FFD700, #b8962e);

    color: #000;
    font-weight: 600;
    text-decoration: none;

    border: 2px solid #fff;

    transition: 0.3s;
}

.btn-second:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, .4);
}


.btn-secondary {
    padding: 14px 34px;
    border-radius: 50px;

    background: #ffffff;
    color: black;

    font-weight: 600;
    text-decoration: none;

    border: 2px solid #D4AF37;

    transition: 0.3s;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
}

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

@media (max-width:768px) {

    .hero-section {
        height: 85vh;
    }

    .hero-overlay {
        padding: 100px 20px 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
    }

}


/* =========================
   SAFETY SECTION
========================= */

.safety-section {
    position: relative;
    padding: 40px 0;

    background:
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, .06), transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(212, 175, 55, .04), transparent 50%),
        linear-gradient(180deg,
            #050505 0%,
            #090909 40%,
            #050505 100%);
}


/* =========================
   HEADER
========================= */

.safety-quote {
    color: #cfcfcf;
    font-size: 1.1rem;
    margin-top: 12px;
}

.safety-quote span {
    color: #FFD700;
    font-weight: 600;
}


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

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 60px;
    margin-top: 80px;
}


/* =========================
   ITEM (NO CARD)
========================= */

.safety-card {
    position: relative;
    padding-left: 20px;
}


.safety-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: 45px;

    background: linear-gradient(#FFD700, transparent);
}


/* =========================
   TITLE
========================= */

.safety-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.safety-card h3 i {
    color: #FFD700;
}


/* =========================
   TEXT
========================= */

.safety-card p {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: .99rem;
}


/* =========================
   BUTTON
========================= */

.safety-section .btn-slide {
    margin-top: 50px;
}


/* =========================
   MOBILE
========================= */

@media(max-width:992px) {

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .safety-card {
        padding-left: 18px;
    }

    .safety-quote {
        font-size: 1rem;
    }

}

    /* ============================================
    TEAM SECTION
    ============================================ */
    :root {
       
    }

    /* Premium Header */
    .am-page-header {
        padding: 70px 0 60px;
        background: 
            radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1), transparent 60%),
            linear-gradient(180deg, #000 0%, #050505 100%);
        position: relative;
        text-align: center;
    }

    .am-page-header::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--am-gold), transparent);
    }

    .header-title {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #fff 0%, var(--am-gold) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -1px;
    }

 
    .am-team-section {
        position: relative;
        padding: 80px 0 60px;
        background: 
            radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 60%),
            linear-gradient(180deg, #000 0%, #080808 50%, #000 100%);
    }

  
    .am-section-head {
        margin-bottom: 60px;
        text-align: center;
    }

    .am-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--am-gold);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 4px;
        text-transform: uppercase;
        padding: 10px 24px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 50px;
        background: rgba(212, 175, 55, 0.05);
        backdrop-filter: blur(10px);
    }

    .am-label::before,
    .am-label::after {
        content: '✦';
        font-size: 0.6rem;
        opacity: 0.6;
    }

    .am-title {
       font-size: clamp(2rem, 3vw, 2.8rem);
        font-weight: 700;
        color: rgb(243, 243, 243);
        position: relative;
        display: inline-block;
    }

   
    .am-member-card {
        background: linear-gradient(145deg, rgba(17, 17, 17, 0.9) 0%, rgba(13, 13, 13, 0.95) 100%);
        border-radius: 24px;
        padding: 50px 30px 40px;
        height: 100%;
        min-height: 420px;
        border: 1px solid rgba(212, 175, 55, 0.12);
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        backdrop-filter: blur(20px);
        box-shadow: 
            0 25px 60px rgba(0, 0, 0, 0.8),
            0 0 0 1px rgba(255, 255, 255, 0.03),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }


    .am-member-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--am-gold) 20%, 
            var(--am-gold-light) 50%, 
            var(--am-gold) 80%, 
            transparent 100%);
        opacity: 0.6;
        transition: all 0.4s ease;
    }

    
    .am-member-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.6s ease;
        pointer-events: none;
    }

    .am-member-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 
            0 35px 80px rgba(0, 0, 0, 0.9),
            0 0 40px rgba(212, 175, 55, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .am-member-card:hover::before {
        opacity: 1;
        height: 4px;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    .am-member-card:hover::after {
        opacity: 1;
    }

   
    .am-member-avatar {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
        position: relative;
        border-radius: 50%;
        padding: 5px;
        background: linear-gradient(135deg, var(--am-gold), var(--am-gold-light), var(--am-gold));
        box-shadow: 
            0 15px 40px rgba(212, 175, 55, 0.3),
            0 0 0 1px rgba(212, 175, 55, 0.5);
        transition: all 0.4s ease;
    }

    .am-member-avatar::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: conic-gradient(from 0deg, transparent, var(--am-gold), transparent, var(--am-gold), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        animation: rotate 3s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .am-member-card:hover .am-member-avatar {
        transform: scale(1.08);
        box-shadow: 
            0 20px 50px rgba(212, 175, 55, 0.4),
            0 0 0 2px rgba(212, 175, 55, 0.8);
    }

    .am-member-card:hover .am-member-avatar::before {
        opacity: 0.6;
    }

    .am-member-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #0d0d0d;
        filter: grayscale(30%);
        transition: all 0.4s ease;
    }

    .am-member-card:hover .am-member-avatar img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

   
    .am-member-card h4 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
        letter-spacing: -0.3px;
    }

    .am-member-card > p {
        color: var(--am-gold);
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .am-member-card > span {
        display: inline-block;
        color: #b2b1b1;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        padding: 6px 16px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 25px;
    }

   
    .am-member-desc {
        width: 100%;
        margin-top: auto;
        padding-top: 25px;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        position: relative;
    }

    .am-member-desc::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 4rem;
        color: rgba(212, 175, 55, 0.1);
        line-height: 1;
        pointer-events: none;
    }

    .am-member-desc p {
        font-size: 1.10rem;
        line-height: 1.8;
        color: #cdcccc;
        margin: 0;
        font-weight: 400;
    }

    .fade-in {
        animation: fadeIn 1s ease forwards;
        opacity: 0;
    }

    .slide-in-left {
        animation: slideInLeft 0.8s ease forwards;
        opacity: 0;
    }

    .slide-in-right {
        animation: slideInRight 0.8s ease forwards;
        opacity: 0;
    }

    @keyframes fadeIn {
        to { opacity: 1; }
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-40px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(40px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

   
    .row > div:nth-child(1) { animation-delay: 0.1s; }
    .row > div:nth-child(2) { animation-delay: 0.2s; }
    .row > div:nth-child(3) { animation-delay: 0.3s; }
    .row > div:nth-child(4) { animation-delay: 0.4s; }

   
    @media (max-width: 991px) {
        .am-title {
            font-size: 2.4rem;
        }
        
        .am-member-card {
            min-height: 380px;
        }
    }

    @media (max-width: 768px) {
        .am-team-section {
            padding:0px 0 70px;
        }
        
        .am-title {
            font-size: 2rem;
        }
        
        .am-member-card {
            min-height: auto;
            margin-bottom: 20px;
        }
        
        .am-member-avatar {
            width: 130px;
            height: 130px;
        }
    }

/* ===================================
   Final Leadership Section
=================================== */

.am-leadership-final {
    position: relative;
    padding: 90px 0;

    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.05), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.04), transparent 50%),
        linear-gradient(180deg,
            #000000 0%,
            #040404 50%,
            #000000 100%);

    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.am-final-image {
    max-width: 380px;
    margin: 0 auto;
}

.am-final-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.am-final-label {
    color: #D4AF37;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.am-final-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.am-final-content p {
    font-size: 1.10rem;
    color: #cfd6df;
    line-height: 1.8;
    margin-bottom: 18px;
}

.am-final-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 30px;
    background: #FFD700;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s ease;
}

.am-final-btn:hover {
    background: #e6c75a;
    transform: translateY(-3px);
}


@media (max-width: 768px) {


    .am-leadership-final {
        padding: 40px 0;
    }

    .am-final-image {
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .am-final-image img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        border-radius: 18px;
    }

    .am-final-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .am-final-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .am-final-content p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* ======================================
   PERFECT MOBILE CENTER FIX (CLEAN)
====================================== */

@media (max-width: 768px) {

    .am-team-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .am-team-section .col-lg-3,
    .am-team-section .col-md-4,
    .am-team-section .col-sm-6,
    .am-team-section .col-12 {
        padding-left: 12px;
        padding-right: 12px;
    }


}


/* ======================================
    CONTACT SECTION
====================================== */

.am-contact-section {
    padding: 60px 20px 70px 40px;

    background:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 0, 0.08), transparent 40%),
        linear-gradient(180deg, #0a0a0a 0%, #0c0f14 40%, #07090d 100%);

    color: var(--white);
    position: relative;
    overflow: hidden;
}

.am-contact-section::before {
    content: '';
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.04), transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(255, 140, 0, 0.04), transparent 35%);

    pointer-events: none;
    z-index: 0;
}

.am-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

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

.am-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

.am-contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.am-info-card {
    display: flex;
    gap: 15px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(18, 23, 32, 0.9) 0%, rgba(12, 16, 22, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.am-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.6s;
}

.am-info-card:hover::before {
    left: 100%;
}

.am-info-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.am-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(243, 112, 33, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--am-gold);
    font-size: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
}

.am-info-card h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--am-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.am-info-card p {
    font-size: 15px;
    color: var(--am-text);
    line-height: 1.5;
}

/* =========================
   BUSINESS HOURS
========================= */

.am-hours-card {
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(18, 23, 32, 0.95) 0%, rgba(10, 14, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 235, 8, 0.2);
    margin-top: auto;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.am-hours-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aar-gold), transparent);
    opacity: 0.6;
}

.am-hours-card h4 {
    margin-bottom: 15px;
    color: var(--aar-gold);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.am-hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--white);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.am-hours-row:last-child {
    border-bottom: none;
}


.am-hours-row.active {
    color: var(--am-gold);
    background: rgba(255, 215, 0, 0.05);
    margin: 0 -10px;
    padding: 6px 10px;
    border-radius: 8px;
}

/* =========================
   RIGHT SIDE FORM 
========================= */

.am-contact-form {
    padding: 50px 40px;
    border-radius: 24px;
    background: linear-gradient(165deg, #121720 0%, #0c1118 50%, #090d12 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}


.am-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--am-gold), transparent);
    opacity: 0.6;
}

.am-contact-form h3 {
    margin-bottom: 30px;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--am-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.am-contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--aar-gold), var(--am-gold));
    border-radius: 2px;
}


.am-contact-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.am-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.am-contact-form input,
.am-contact-form select,
.am-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 8, 12, 0.6);
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.am-contact-form input:hover,
.am-contact-form select:hover,
.am-contact-form textarea:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(6, 8, 12, 0.8);
}

.am-contact-form input:focus,
.am-contact-form select:focus,
.am-contact-form textarea:focus {
    outline: none;
    border-color: var(--am-gold);
    background: rgba(6, 8, 12, 0.9);
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.am-contact-form textarea {
    min-height: 140px;
    margin-top: 15px;
    resize: vertical;
}

.am-contact-form input::placeholder,
.am-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.775);
}

.am-contact-form select option {
    background: #121720;
    color: var(--white);
}


.am-contact-form button {
    margin-top: auto;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--aar-gold) 0%, var(--aar-gold) 100%);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(243, 112, 33, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    letter-spacing: 0.5px;
}


.am-contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.am-contact-form button:hover::before {
    left: 100%;
}

.am-contact-form button:hover {
    color: rgb(18, 1, 1);
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(243, 112, 33, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
}

.am-contact-form button:active {
    transform: translateY(0);
}

/* ===============================
   MAP SECTION 
=============================== */

.am-map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.02);
    margin-top: 60px;
}

.am-map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
    filter: grayscale(100%) contrast(1.2) brightness(0.8);
    transition: all 0.4s ease;
}


.am-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(6, 8, 12, 0.7) 0%,
            rgba(6, 8, 12, 0.3) 50%,
            rgba(6, 8, 12, 0.6) 100%);
    pointer-events: none;
}

.am-map-wrapper:hover iframe {
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
}

.am-map-wrapper:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 215, 0, 0.1);
}

/* Mobile */
@media(max-width:768px) {
    .am-map-wrapper iframe {
        height: 320px;
    }
}

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

@media(max-width: 992px) {
    .am-contact-grid {
        grid-template-columns: 1fr;
    }

    .am-form-row {
        flex-direction: column;
    }

    .am-contact-form {
        padding: 35px 25px;
    }

    .am-contact-heading h2 {
        font-size: 28px;
    }
}


@media(max-width: 768px) {
    .am-contact-section {
        padding: 30px 15px 30px 15px;
    }

    .am-contact-form {
        padding: 30px 20px 40px 20px;
        height: auto;
    }

    .am-contact-form form {
        height: auto;
    }

    .am-contact-form button {
        margin-top: 25px;
    }

    .am-contact-form textarea {
        min-height: 160px;
    }

    .am-info-card,
    .am-hours-card {
        padding: 18px;
    }
}

/* =========================
   BUTTON
========================= */

.btn-primary {
    background:#FFD700;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    transition: .3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}


/* =========================
   WHATSAPP FLOAT FIX
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}


/* ============================================
   TERMS & CONDITIONS SECTION - EDGE TO EDGE
   ============================================ */

.terms-section {
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-main) 0%, var(--aar-dark) 100%);
    pointer-events: none;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--gold);
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 50%;
    top: 80%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 30%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 80%;
    top: 70%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    left: 90%;
    top: 50%;
    animation-delay: 2.5s;
}

.particle:nth-child(8) {
    left: 15%;
    top: 90%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) translateX(-10px);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-40px) translateX(5px);
        opacity: 0.5;
    }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}


.terms-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.terms-header::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.terms-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.terms-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.terms-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.company-name {
    color: var(--gold);
    font-weight: 600;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.terms-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--gold) 10%,
            var(--gold) 90%,
            transparent 100%);
    opacity: 0.3;
}

.term-item {
    position: relative;
    padding: 50px 0 50px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.term-item:last-child {
    border-bottom: none;
}

.term-item:hover {
    padding-left: 90px;
}


.term-number {
    position: absolute;
    left: 0;
    top: 50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.term-item:hover .term-number {
    background: var(--gold);
    color: var(--aar-dark);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.term-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.term-content p {
    font-size: 1.05rem;
    color: var(--am-text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.term-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.term-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--am-text);
    line-height: 1.8;
    transition: all 0.3s ease;
}

.term-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 700;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.term-content ul li:hover {
    color: var(--white);
    padding-left: 35px;
}

.term-content ul li:hover::before {
    opacity: 1;
    transform: translateX(5px);
}


.contact-section {
    margin-top: 80px;
    padding: 60px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-text {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-email {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.contact-email:hover {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.contact-email:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .terms-header {
        margin-bottom: 60px;
    }

    .terms-list::before {
        left: 19px;
    }

    .term-item {
        padding: 40px 0 40px 60px;
    }

    .term-item:hover {
        padding-left: 65px;
    }

    .term-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        top: 40px;
    }

    .term-content h3 {
        font-size: 1.3rem;
    }

    .term-content p,
    .term-content ul li {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 40px 20px;
    }
}


.glow-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
    pointer-events: none;
    z-index: 100;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg,
            #0a0a0a 0%,
            #111111 50%,
            #070707 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold-);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--gold-);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-left: auto;
    margin-right:80px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold-);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}


.counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
}

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

@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 1100px) {
    .navbar-nav {
        display: none !important;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-actions .btn-primary {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 250px;
    }

    .vm-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .navbar {
        height: 70px;
        padding: 0 16px;
    }

    .logo-container {
        width: 52px;
        height: 52px;
    }

    .logo-container img {
        width: 88%;
        height: 88%;
        object-fit: contain;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .terms-content {
        padding: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}


.mobile-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 18px;
    right: 18px;
    background: rgba(29, 29, 29, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 999;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px;
}

.mobile-menu .nav-item {
    width: 100%;
}

.mobile-menu .nav-link {
    display: block;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
    background: rgba(243, 112, 33, 0.1);
}

.mobile-menu .btn-primary {
    display: block;
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}


.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.08);
    /* soft ring */
    border-top: 4px solid #FFD700;
    /* premium gold */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ==============================
 STATS SECTION
============================== */

.stats-section {
    position: relative;
    padding: 110px 0;
    background: url('../images/black-bg.png') center/cover no-repeat;
    overflow: hidden;
}


.stats-overlay {
    position: absolute;
    inset: 0;
   background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.829) 0%,
        rgba(0, 0, 0, 0.917) 100%
    );
    z-index: 1;
}


.stats-section .container {
    position: relative;
    z-index: 2;
}


.stat-number {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}


.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #b3b2b2;
    line-height: 1;
}


.symbol {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-left: 4px;
    margin-top: 4px;
}


.stat-box p {
    color:#FFD700;
    font-size: 1.12rem;
    margin-top: 12px;
}


.stat-box {
    padding: 30px 20px;
}


@media (max-width: 992px) {
    .counter {
        font-size: 2.5rem;
    }


    .symbol {
        font-size: 1.8rem;
    }
}



@media (max-width: 768px) {

    
    .stats-section {
        padding: 40px 15px;
        text-align: center;
    }

    .stats-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

    }

  
    .stats-section .col-lg-3,
    .stats-section .col-md-6,
    .stats-section .col-sm-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

   
    .stat-box {
        padding: 12px 5px;
        width: 100%;
    }

    .stat-box::after {
        display: none;
    }


    .stat-number {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 4px;
    }

    .counter {
        font-size: 2.4rem;
        font-weight: 900;
        color: #ffffff;
        line-height: 1;
        letter-spacing: 0.5px;
    }


    .symbol {
        font-size: 1.4rem;
        font-weight: 800;
        color: #FFD700;
        margin-left: 3px;
        margin-top: 0;
    }

    .stat-box p {
        font-size: 0.95rem;
        margin-top: 2px;
        line-height: 1.3;
        color: rgba(255, 255, 255, 0.95);
    }
}


@media (max-width: 480px) {

    .stats-section {
        padding: 35px 12px;
    }

    .counter {
        font-size: 2.1rem;
    }

    .symbol {
        font-size: 1.2rem;
    }

    .stat-box p {
        font-size: 0.9rem;
    }

}

/* ==============================
   PREMIUM CTA SECTION 
============================== */
 
.cta-section {
    padding: 40px 0;
    background:
        linear-gradient(180deg,
            #070707 0%,
            #0a0a0a 50%,
            #030303 100%);
}

.cta-content {
    width: 100%;
    padding: 0 24px;
    max-width: none;
}



.cta-wrapper {
    position: relative;
    border-radius: 8px;
    padding: 70px 70px;
    overflow: hidden;

 

     background: url("../images/cta.jpg") no-repeat center center;
    background-size: cover;  
    
    min-height: 350px; 
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.8);


}

.cta-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(3, 7, 12, 0.98) 0%,
            rgba(5, 10, 18, 0.95) 45%,
            rgba(6, 12, 20, 0.75) 75%,
            rgba(6, 12, 20, 0.55) 100%);

    z-index: 1;
}



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



.cta-title {
    color: #ffffff;
    font-size: clamp(2.4rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.cta-text {
    color: #c9d3df;
    font-size: 1.15rem;
    max-width: 580px;
    margin-bottom: 35px;
}



.cta-btn {
    display: inline-block;
    padding: 18px 40px;

    background: linear-gradient(135deg, #FFD700, #b8931f);

    color: #111;
    font-size: 1.1rem;
    font-weight: 600;

    border-radius: 50px;
    text-decoration: none;

    transition: all 0.35s ease;

    box-shadow:
        0 25px 50px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);

}

.cta-btn:hover {
    transform: translateY(-6px);
    box-shadow:
        0 35px 70px rgba(212, 175, 55, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

@media (max-width: 992px) {
    .cta-wrapper {
        padding: 70px 50px;
    }

    .cta-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 40px;

    }
}


@media (max-width: 768px) {

    .cta-section {
        padding: 20px 0;
        text-align: center;
    }

    .cta-wrapper {
        padding: 45px 22px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .cta-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 40px;
    }

    .col-lg-4 {
        justify-content: center;
        margin-top: 10px;
    }
}


@media(max-width:768px) {


    .mobile-quote-fab {
        position: fixed;
        right: 18px;
        bottom: 95px;
        z-index: 999;
        display: block;
    }

    .mobile-quote-fab a {
        background: var(--gold-);
        color: black;
        padding: 14px 20px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }


    .whatsapp-float {
        position: fixed;
        right: 18px;
        bottom: 25px;
        z-index: 999;
    }


    .mobile-menu {
        position: fixed;
        top: 90px;
        left: 20px;
        right: 20px;
        background: rgba(12, 12, 12, .75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 22px;

        box-shadow:
            0 30px 80px rgba(0, 0, 0, .65),
            0 0 40px rgba(212, 175, 55, .08);

        padding: 20px;
        z-index: 999;

        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: .35s ease;
    }


    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }


    .mobile-menu .nav-link {
        display: block;
        padding: 16px 18px;
        border-radius: 14px;
        color: #eee;
        transition: .25s;
    }

    .mobile-menu .nav-link:hover {
        background: rgba(212, 175, 55, .08);
    }


    .mobile-menu .nav-link.active {
        background: linear-gradient(90deg,
                rgba(212, 175, 55, .18),
                rgba(212, 175, 55, .08));
        color: #FFD700;
    }


    .mobile-menu .btn-primary {
        margin-top: 18px;
    }

}

/* ================================
   SERVICES SECTION
================================ */

.aaratrika-services {
    position: relative;
    padding: 60px 0;

    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05), transparent 55%),
        linear-gradient(180deg,
            #050505 0%,
            #090909 50%,
            #050505 100%);
}



.aaratrika-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--gold-);
    margin-bottom: 10px;
}

.aaratrika-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #FFFFFF;

    margin-bottom: 18px;

    /* text-shadow:0 0 18px rgba(239,191,4,0.35); */
}

.aaratrika-desc {
    max-width:800px;
    margin: 0 auto;
    color: #c7c8cb;
    font-size: 1.15rem;
    line-height: 1.7;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
}


.aaratrika-card {
    position: relative;
    padding-left: 24px;
    transition: .35s ease;
}


/* GOLD DIVIDER */

.aaratrika-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;

    width: 4px;
    height: 52px;

    background: linear-gradient(to bottom,
            var(--gold-),
            rgba(239, 191, 4, 0.15));

    border-radius: 4px;
}


.aaratrika-card h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-);

    margin-bottom: 12px;
    line-height: 1.4;

    transition: .3s ease;
}


.aaratrika-card p {
    color: #cfd6df;
    font-size: 17px;
    line-height: 1.7;
}

.aaratrika-card:hover {
    transform: translateY(-6px);
}

.aaratrika-card:hover h5 {
    text-shadow: 0 0 18px rgba(239, 191, 4, 0.45);
}


@media (max-width:992px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

}


@media (max-width:768px) {

    .aaratrika-services {
        padding: 20px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .aaratrika-title {
        font-size: 1.7rem;
    }

    .aaratrika-desc {
        font-size: .95rem;
    }

    .aaratrika-card h5 {
        font-size: 20px;
    }

}

/* ================= about SECTION ================= */

.about-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05), transparent 45%),
        linear-gradient(180deg, var(--bg-dark), var(--bg-soft), var(--bg-dark));
}


.about-container {
    max-width: 1350px;
    margin: auto;
    padding: 0 40px;
}


.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-label {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 13px;
}

.about-title {
    font-size: 40px;
    color: #fff;
    margin: 10px 0;
}

.about-desc {
    max-width: 700px;
    margin: auto;
    color: var(--muted);
}


.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}


.about-image {
    margin-left: -70px;
}

.about-image img {
    width: 100%;
    max-width: 850px;
    border-radius:8px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.7);
}


.about-content {
    max-width: 600px;
}

.about-highlight {
    color: var(--aar-gold);
    font-size: 26px;
    margin-bottom: 20px;
}

.about-highlight span {
    background: linear-gradient(120deg,
            #FFF3B0,
            #FFD700,
            #E6BE8A,
            #FFD700,
            #FFF3B0);
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

.about-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}


.about-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}


.about-values-row {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}


.value-item {
    flex: 1;
    min-width: 220px;
    padding-right: 20px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;

    color: #FFD700;


    text-shadow: 0 0 6px rgba(212, 175, 55, 0.15);
}


.value-item p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}


.value-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}


@media(max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        margin-left: 0;
    }

    .about-content {
        max-width: 100%;
    }

    .about-values-row {
        flex-direction: column;
        border-top: none;
    }

    .value-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 20px;
    }
}

@media(max-width: 600px) {
    .about-section {
        padding: 80px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-desc {
        font-size: 16px;
    }
}


/* ===============================
NAVBAR + HERO IMPROVEMENTS
=============================== */

.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 0;
    background: black;
    width: 100%;
}

.navbar {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: var(--navbar-height);
    border-radius: 0;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #000000;
}

.navbar.scrolled {
    background: rgba(4, 4, 4, 0.75);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
}

.brand-text {
    display: inline-block;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
}


@media (max-width: 768px) {
    :root {
        --navbar-height: var(--navbar-height-mobile);
    }

    html {
        scroll-padding-top: var(--navbar-height);
    }

    body {
        padding-top: var(--navbar-height);
    }

    .navbar {
        height: var(--navbar-height);
        padding: 0 14px;
        border-radius: 16px;
    }

    .navbar-wrapper {
        padding: 0 12px;
    }

    .logo-container {
        width: 52px;
        height: 52px;
    }

    .navbar-actions .btn-primary {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

}

/* ===============================
SAFETY PAGE
=============================== */

:root {
    --aar-gold: #FFD700;
    --aar-gold-light: #FFD700;
    --aar-gold-dark: #FFD700;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #141414;
    --text-primary: #ffffff;
    --text-secondary: #bfbfbf;
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-gold-hover: rgba(212, 175, 55, 0.6);
    --glow-gold: rgba(212, 175, 55, 0.15);
}


.aarx-safety-section {
    width: 100%;
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.05), transparent 45%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.04), transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.02), transparent 60%),
        linear-gradient(180deg,
            #000000 0%,
            #050505 45%,
            #000000 100%);
}

.aarx-safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}


.aarx-safety-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 30%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -20px) scale(1.1);
    }
}


.aarx-safety-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}


.aarx-safety-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.aarx-main-title {
    color: var(--aar-gold);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.aarx-title-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--aar-gold), transparent);
    margin: 0 auto 30px;
    position: relative;
}

.aarx-title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--aar-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--aar-gold);
}

.aarx-main-desc {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}


.aarx-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    align-items: start;
}


.aarx-glass-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95));
    border: 1px solid rgb(15, 15, 15);
    border-radius: 8px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aarx-glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold-hover);
    box-shadow:
        0 35px 60px -15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


.aarx-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.aarx-glass-card:hover .aarx-card-glow {
    opacity: 1;
}


.aarx-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--aar-gold) 0%, var(--aar-gold-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.aarx-icon svg {
    width: 40px;
    height: 40px;
    color: #000;
    stroke-width: 2.5;
}

.aarx-glass-card:hover .aarx-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow:
        0 15px 40px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.aarx-icon-alt {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid var(--aar-gold);
}

.aarx-icon-alt svg {
    color: var(--aar-gold);
}


.aarx-card-title {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}


.aarx-card-text {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 1.26rem;
}


.aarx-content-block {
    margin-bottom: 30px;
}

.aarx-subtitle {
    color: var(--aar-gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aarx-subtitle::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--aar-gold);
    border-radius: 2px;
}


.aarx-list {
    list-style: none;
    padding: 0;
}

.aarx-list li {
    color: var(--text-secondary);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.aarx-list li:last-child {
    border-bottom: none;
}

.aarx-list li:hover {
    color: var(--text-primary);
    padding-left: 35px;
}

.aarx-bullet {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--aar-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.aarx-list li:hover .aarx-bullet {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.aarx-note {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.aarx-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--aar-gold);
}

.aarx-note-icon {
    width: 40px;
    height: 40px;
    background: var(--aar-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.aarx-note span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
}

.aarx-note-alt {
    background: linear-gradient(135deg, rgba(180, 50, 50, 0.15), rgba(180, 50, 50, 0.05));
    border-color: rgba(220, 80, 80, 0.4);
}

.aarx-note-alt::before {
    background: #dc5050;
}

.aarx-note-alt .aarx-note-icon {
    background: #dc5050;
    box-shadow: 0 0 20px rgba(220, 80, 80, 0.4);
}


@media (max-width: 1200px) {
    .aarx-cards-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .aarx-safety-section {
        padding: 30px 0;
    }

    .aarx-safety-container {
        padding: 0 20px;
    }

    .aarx-safety-header {
        margin-bottom: 50px;
    }

    .aarx-glass-card {
        padding: 30px;
        border-radius: 20px;
    }

    .aarx-icon {
        width: 70px;
        height: 70px;
    }

    .aarx-icon svg {
        width: 30px;
        height: 30px;
    }

    .aarx-list li {
        font-size: 0.9rem;
    }

    .aarx-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .aarx-glass-card {
        padding: 25px 20px;
    }

    .aarx-card-title {
        font-size: 1.4rem;
    }

    .aarx-subtitle {
        font-size: 1rem;
    }
}



/* ===============================
SAFETY PAGE- STATUS SECTION
=============================== */

.aarx-stats {
    position: relative;
    padding: 120px 0;
    background: url('../images/safety-work.png') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}


.aarx-stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.838), rgb(0, 0, 0));
}


.aarx-stat-icon {
    font-size: 3rem;
    color: var(--aar-gold);
    margin-bottom: 18px;
}


.aarx-counter {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}


.aarx-num {
    line-height: 1;
}


.aarx-plus {
    font-size: 1.5rem;
    color: var(--aar-gold);
    margin-top: 8px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, .6);
}


.aarx-stat-label {
    color: rgba(255, 255, 255, .85);
    font-size: 1.15rem;
    margin-top: 10px;
}


@media(max-width:768px) {

    .aarx-stats {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .aarx-counter {
        font-size: 2.2rem;
    }

    .aarx-plus {
        font-size: 1.2rem;
        margin-top: 6px;
    }

}

/* ===============================
   TRUST SECTION
================================= */

#trust {
    padding: 80px 0 70px;
    background: linear-gradient(180deg, #050505, #0b0b0b, #050505);
}


.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header h2 {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;
}


.logo-marquee {
    position: relative;
    overflow: hidden;
}


.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

/* ===============================
   TRACK
================================= */

.logo-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    will-change: transform;
}


.logo-track img {
    height: 75px;
    width: auto;
    object-fit: contain;

    padding: 6px 10px;

    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;

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

    opacity: 0.95;

    transition: all 0.3s ease;
}

.logo-track img:hover {
    transform: translateY(-5px) scale(1.04);

    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(212, 175, 55, 0.15);
}

/* ===============================
   MOBILE
================================= */

@media (max-width: 768px) {

    #trust {
        padding: 60px 0;
    }

    .trust-header h2 {
        font-size: 1.4rem;
    }

    .logo-track {
        gap: 25px;
    }

    .logo-track img {
        height: 55px;
        padding: 5px 8px;
        border-radius: 10px;
    }

}


/* =========================================
   MOBILE RESPONSIVE (FINAL CLEAN FIX)
========================================= */

@media (max-width: 768px) {


    body {
        padding-top: 74px;
    }

    .container,
    .about-container {
        padding: 0 16px;
    }

    section {
        overflow-x: hidden;
    }

    .hero-section {
        height: 85vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .about-section {
        padding: 10px 0 20px;
    }

    .about-header {
        margin-bottom: 50px;
    }

    .about-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-desc {
        font-size: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        margin-left: 0;
    }

    .about-image img {
        border-radius: 12px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-highlight {
        font-size: 20px;
        line-height: 1.4;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }


    .about-values-row {
        flex-direction: column;
        gap: 20px;
        border-top: none;
        margin-top: 40px;
        padding-top: 0;
    }

    .value-item {
        padding: 0 0 16px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .value-item:last-child {
        border-bottom: none;
    }

    .value-item h4 {
        font-size: 17px;
    }

    .value-item p {
        font-size: 14px;
    }

    /* ===== SERVICES ===== */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aaratrika-card h5 {
        font-size: 18px;
    }

    .aaratrika-card p {
        font-size: 15px;
    }

    /* ===== PROJECTS ===== */
    .project-card {
        grid-template-columns: 1fr;
    }

    .project-image img {
        min-height: 220px;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h3 {
        font-size: 18px;
    }

    /* ===== CTA ===== */
    .cta-wrapper {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    .cta-btn {
        width: 100%;
        padding: 14px;
        font-size: 0.95rem;
    }

    /* ===== FOOTER ===== */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* ===== FIX EXTRA GAP ISSUE ===== */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}

/* PROJECTS BANNER */

    .projects-banner-wrapper {
        position: relative;
        width: 100%;
        height: 70vh;       
    min-height: 500px;   
    max-height: 850px;
        overflow: hidden;
        background: #000;
        opacity: 1;
        pointer-events: all;
    }


    .projects-banner-track {
        display: flex;
        height: 100%;
        transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
        transform: translateZ(0); 
    }

 
    .projects-banner-slide {
        min-width: 100%;
        height: 100%;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: opacity 0.8s ease-in-out;
    }

.projects-banner-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}
    .projects-banner-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        width: 90%;
        max-width: 900px;
        padding: 2rem;
    }

    .projects-banner-title {
        font-size: clamp(2.5rem, 5vw, 5rem);
        font-weight: 800;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(40px);
        animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .projects-banner-title::after {
        content: '';
        display: block;
        width: 100px;
        margin: 1.5rem auto 0;
        border-radius: 2px;
        transform: scaleX(0);
        animation: expandLine 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
    }

    .projects-banner-text {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.8;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
        font-weight: 300;
        letter-spacing: 0.05em;
    }

    .projects-banner-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        color: #ffffff;
        font-size: 1.2rem;
        opacity: 1;
        pointer-events: all;
    }

    /* Show nav on hover 
    .projects-banner-wrapper:hover .projects-banner-nav {
        opacity: 1;
        pointer-events: all;
    }*/

    .projects-banner-nav:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.8);
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .projects-banner-nav-prev {
        left: 40px;
    }

    .projects-banner-nav-next {
        right: 40px;
    }

    .projects-banner-nav::before {
        content: '';
        width: 14px;
        height: 14px;
        border-top: 3px solid currentColor;
        border-right: 3px solid currentColor;
        transition: transform 0.3s ease;
    }

    .projects-banner-nav-prev::before {
        transform: rotate(-135deg);
        margin-left: 4px;
    }

    .projects-banner-nav-next::before {
        transform: rotate(45deg);
        margin-right: 4px;
    }

    .projects-banner-dots {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 16px;
        z-index: 10;
    }

    .projects-banner-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 2px solid transparent;
        position: relative;
    }

    .projects-banner-dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #FFD700;
        transition: transform 0.3s ease;
    }

    .projects-banner-dot:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.2);
    }

    .projects-banner-dot.active {
        background: transparent;
        border-color:#FFD700;
        transform: scale(1.4);
    }

    .projects-banner-dot.active::after {
        transform: translate(-50%, -50%) scale(0.5);
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

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

/* TABLETS */
@media (max-width: 1024px) {
    .projects-banner-wrapper {
        height: 60vh;
        min-height: 420px;
    }

    .projects-banner-nav {
        width: 46px;
        height: 46px;
    }

    .projects-banner-nav-prev {
        left: 12px;
    }

    .projects-banner-nav-next {
        right: 12px;
    }
}



@media (max-width: 768px) {
    .projects-banner-wrapper {
        height: 55vh;
        min-height: 380px;
    }

    .projects-banner-content {
        width: 85%; 
        max-width: 500px;
        padding: 1rem;
        top: 50%;
    }

    .projects-banner-title {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        line-height: 1.3;
        margin-bottom: 0.7rem;
    }

    .projects-banner-text {
        font-size: 0.88rem;
        line-height: 1.5;
        max-width: 90%;
        margin: 0 auto;
    }

    .projects-banner-nav {
        width: 38px;
        height: 38px;
    }

    .projects-banner-nav-prev {
        left: 8px;
    }

    .projects-banner-nav-next {
        right: 8px;
    }

    .projects-banner-dots {
        bottom: 16px;
        gap: 8px;
    }

    .projects-banner-dot {
        width: 9px;
        height: 9px;
    }
}



@media (max-width: 480px) {
    .projects-banner-wrapper {
        height: 50vh;
        min-height: 420px;
    }

    .projects-banner-content {
        width: 82%; 
        max-width: 320px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0.8rem;
        text-align: center;
    }

    .projects-banner-title {
        font-size: 1.2rem;
        letter-spacing: 0.04em;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .projects-banner-text {
        font-size: 0.78rem;
        line-height: 1.4;
        max-width: 260px;
        margin: 0 auto;
    }


    .projects-banner-content .btn,
    .projects-banner-content button {
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 20px;
    }

    .projects-banner-nav {
        width: 30px;
        height: 30px;
    }

    .projects-banner-nav-prev {
        left: 5px;
    }

    .projects-banner-nav-next {
        right: 5px;
    }

    .projects-banner-dots {
        bottom: 10px;
        gap: 6px;
    }

    .projects-banner-dot {
        width: 7px;
        height: 7px;
    }
}


@media (max-width: 360px) {
    .projects-banner-wrapper {
        height: 65vh;
    }

    .projects-banner-content {
        width: 85%;
        max-width: 280px;
    }

    .projects-banner-title {
        font-size: 1rem;
    }

    .projects-banner-text {
        font-size: 0.7rem;
    }
}


@media (prefers-reduced-motion: reduce) {
    .projects-banner-track {
        transition: transform 0.5s ease;
    }

    .projects-banner-title,
    .projects-banner-text,
    .projects-banner-title::after {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .projects-banner-title::after {
        transform: scaleX(1);
    }
}

.am-contact-form input,
.am-contact-form textarea,
.am-contact-form select {
    color: #ffffff !important;
}

.am-contact-form input::placeholder,
.am-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.am-contact-form select option {
    color: #000000;
    background-color: #ffffff;
}



.am-form-row {
    display: flex;
    gap: 16px;
}

.am-form-row .am-field-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}


@media (max-width: 576px) {
    .am-form-row {
        flex-direction: column;
    }
}