﻿ 
/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --gold: #c9a84c;
    --gold-light: #f0c871;
    --gold-dark: #a8892e;
    --dark: #0a1628;
    --dark-blue: #1a2a4a;
    --text-light: #f8f9fa;
    --text-muted: #8a9bb5;
    --nav-font: 'Inter', sans-serif;
}

/* ============================================
   GENERAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* ============================================
   NAVIGATION - COMPLETELY REWRITTEN
   ============================================ */

/* Header */
.header {
    background: var(--gold-light) !important;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Navbar */
.navbar {
    background: var(--gold-light) !important;
    padding: 0 !important;
    position: relative;
    z-index: 1050;
}

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 15px;
    }

/* Brand/Logo */
.navbar-brand {
    padding: 5px 0;
    margin-right: 0;
    flex-shrink: 0;
}

    .navbar-brand img {
        height: 120px;
        width: auto;
        transition: height 0.3s ease;
    }

/* Toggle Button */
.navbar-toggler {
    border: 1px solid #12a2da;
    padding: 8px 12px;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(5, 113, 155, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Collapse */
.navbar-collapse {
    flex-grow: 1;
    justify-content: flex-end;
}

/* ============================================
   DESKTOP NAVIGATION (992px and above)
   ============================================ */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 5px;
        margin-left: auto !important;
    }

    .nav-item {
        position: relative;
        padding: 0;
    }

    .nav-link {
        color: #000 !important;
        font-size: 1.05em;
        font-weight: 500;
        padding: 25px 15px !important;
        position: relative;
        transition: all 0.3s ease;
        white-space: nowrap;
        font-family: var(--nav-font);
    }

        /* Underline animation */
        .nav-link::after {
            content: '';
            position: absolute;
            height: 2px;
            bottom: 15px;
            left: 50%;
            background-color: #12a2da;
            width: 0;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #12a2da !important;
        }

    /* Dropdown */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1060 !important;
        background: #ffffff !important;
        border: none !important;
        border-radius: 8px !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
        min-width: 220px;
        padding: 8px 0;
        margin-top: 0;
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .dropdown.show .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Hover dropdown */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        color: #05719b !important;
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.3s ease;
        background: transparent !important;
    }

        .dropdown-item:hover {
            background: #f0f7fb !important;
            color: #12a2da !important;
            padding-left: 25px;
        }

    .dropdown-toggle::after {
        margin-left: 6px;
        vertical-align: middle;
    }
}

/* ============================================
   MOBILE NAVIGATION (below 992px)
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-nav {
        padding: 10px 0;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

        .nav-item:last-child {
            border-bottom: none;
        }

    .nav-link {
        color: #05719b !important;
        padding: 12px 15px !important;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.3s;
    }

        .nav-link:hover,
        .nav-link.active {
            color: #12a2da !important;
            background: #f0f7fb;
            border-radius: 6px;
        }

    .dropdown-toggle::after {
        margin-left: 8px;
    }

    .dropdown-menu {
        border: none !important;
        background: #f8f9fa !important;
        padding: 0;
        margin: 0 0 5px 15px;
        border-radius: 6px;
    }

    .dropdown-item {
        padding: 10px 20px;
        color: #05719b;
        font-size: 14px;
        border-radius: 0;
    }

        .dropdown-item:hover {
            background: #eef6fa;
            color: #12a2da;
        }
}

/* ============================================
   RESPONSIVE LOGO
   ============================================ */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 60px;
    }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #000;
    color: #fff;
    padding: 14px 0;
    font-size: 20px;
    border-bottom: 1px solid var(--dark);
}

    .top-bar a {
        color: var(--gold-light);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .top-bar a:hover {
            color: #fff;
        }

    .top-bar .social-icons a {
        color: #fff;
        margin-left: 15px;
        transition: all 0.3s ease;
    }

        .top-bar .social-icons a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--gold);
        border-radius: 2px;
    }

    .section-title.text-center::after {
        left: 50%;
        transform: translateX(-50%);
    }

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 20px auto 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background: var(--gold);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

    .btn-gold:hover {
        background: var(--gold-dark);
        border-color: var(--gold-dark);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
    }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
    }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-full {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: visible !important; /* Fixed: allow dropdown to show */
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .hero-slider .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        transform: scale(1.1);
        transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1;
    }

        .hero-slider .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        .hero-slider .slide .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 100%);
            z-index: 3;
        }

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slider-arrow:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-50%) scale(1.1);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .slider-arrow.prev {
        left: 30px;
    }

    .slider-arrow.next {
        right: 30px;
    }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

    .slider-dots .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

        .slider-dots .dot.active {
            background: #c9a84c;
            border-color: #fff;
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
        }

        .slider-dots .dot:hover {
            background: rgba(255, 255, 255, 0.6);
        }

/* Hero Content */
.hero-content-overlay {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 60px 0;
}

    .hero-content-overlay .hero-badge {
        display: inline-block;
        background: rgba(201, 168, 76, 0.15);
        color: #c9a84c;
        padding: 8px 25px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 1px;
        margin-bottom: 20px;
        border: 1px solid rgba(201, 168, 76, 0.2);
        animation: fadeInUp 1s ease;
    }

    .hero-content-overlay .hero-title {
        font-size: 4.5rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.1;
        margin-bottom: 20px;
        animation: fadeInUp 1.2s ease;
    }

        .hero-content-overlay .hero-title span {
            color: #c9a84c;
        }

    .hero-content-overlay .hero-description {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.75);
        max-width: 550px;
        line-height: 1.8;
        margin-bottom: 30px;
        animation: fadeInUp 1.4s ease;
    }

    .hero-content-overlay .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
        animation: fadeInUp 1.6s ease;
    }

    .hero-content-overlay .hero-stats {
        display: flex;
        gap: 50px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        animation: fadeInUp 1.8s ease;
    }

        .hero-content-overlay .hero-stats .stat h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #c9a84c;
            font-family: 'Inter', sans-serif;
            margin-bottom: 4px;
        }

        .hero-content-overlay .hero-stats .stat p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
        }

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    animation: float 6s ease-in-out infinite;
}

    .floating-badge i {
        color: var(--gold);
        font-size: 1.2rem;
    }

    .floating-badge span {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .floating-badge small {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
        display: block;
    }

    .floating-badge:nth-child(1) {
        top: 10%;
        right: -10%;
        animation-delay: 0s;
    }

    .floating-badge:nth-child(2) {
        bottom: 20%;
        left: -15%;
        animation-delay: 2s;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: #f8f9fc;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

    .about-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

    .about-features .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        color: #555;
    }

        .about-features .feature i {
            color: var(--gold);
            font-size: 1.1rem;
        }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    background: #fff;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        border-color: var(--gold-light);
    }

    .product-card .icon-wrapper {
        width: 70px;
        height: 70px;
        background: rgba(201, 168, 76, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 28px;
        color: var(--gold);
        transition: all 0.3s ease;
    }

    .product-card:hover .icon-wrapper {
        background: var(--gold);
        color: #fff;
    }

    .product-card h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
        font-family: 'Inter', sans-serif;
    }

    .product-card p {
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .product-card .product-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--gold);
        color: #fff;
        font-size: 0.6rem;
        padding: 3px 12px;
        border-radius: 20px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
    color: #fff;
    padding: 100px 0;
}

    .mission-section .section-title {
        color: #fff;
    }

        .mission-section .section-title::after {
            background: var(--gold);
        }

    .mission-section .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
    }

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

    .mission-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
    }

    .mission-card .icon {
        width: 60px;
        height: 60px;
        background: rgba(201, 168, 76, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .mission-card h4 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: #fff;
    }

    .mission-card p {
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.7;
        font-size: 0.95rem;
    }

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    background: #fff;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

    .value-card:hover {
        border-color: var(--gold-light);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    }

    .value-card .icon {
        font-size: 40px;
        color: var(--gold);
        margin-bottom: 15px;
    }

    .value-card h5 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
        margin: 0;
    }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    background: #f8f9fc;
}

.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

    .why-card:hover {
        border-color: var(--gold-light);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    }

    .why-card .number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--gold);
        opacity: 0.3;
        font-family: 'Playfair Display', serif;
        line-height: 1;
        min-width: 50px;
    }

    .why-card h5 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    .why-card p {
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
        margin: 0;
    }

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

    .leadership-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #f6c23e, #e8a317, #f6c23e);
        background-size: 200% 100%;
        animation: shimmer 3s ease-in-out infinite;
    }

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(246, 194, 62, 0.15);
    color: #e8a317;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.leadership-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(246, 194, 62, 0.1);
}

    .leadership-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .leadership-card.ceo-card {
        border-top: 4px solid #f6c23e;
    }

    .leadership-card.md-card {
        border-top: 4px solid #0a1628;
    }

.card-header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f6c23e, #e8a317);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(246, 194, 62, 0.3);
}

.md-card .card-header-icon {
    background: linear-gradient(135deg, #0a1628, #1a2a4a);
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.3);
}

.card-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(246, 194, 62, 0.12);
    color: #e8a317;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.md-card .card-badge {
    background: rgba(10, 22, 40, 0.08);
    color: #0a1628;
}

.leader-name {
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 4px;
}

.leader-title {
    font-size: 16px;
    color: #6c7a8a;
    font-weight: 400;
    margin-bottom: 20px;
}

.message-content {
    color: #4a5a7a;
    line-height: 1.8;
}

    .message-content p {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .message-content .lead-message {
        font-size: 18px;
        font-weight: 500;
        color: #0a1628;
        padding: 20px 25px;
        background: rgba(246, 194, 62, 0.06);
        border-left: 4px solid #f6c23e;
        border-radius: 8px;
        margin-bottom: 20px;
        line-height: 1.7;
    }

.message-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.signature {
    text-align: right;
}

.signature-img {
    max-width: 140px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-bottom: 8px;
    opacity: 0.8;
}

.signature-name {
    font-size: 16px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 2px;
}

.signature-title {
    font-size: 13px;
    color: #6c7a8a;
    margin-bottom: 0;
}

.cta-box {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #ffffff;
}

    .cta-box h4 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .cta-box p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 25px;
    }

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
    color: #fff;
    padding: 80px 0;
}

    .contact-section .section-title {
        color: #fff;
    }

        .contact-section .section-title::after {
            background: var(--gold);
        }

    .contact-section .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
    }

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .contact-item .icon {
        width: 55px;
        height: 55px;
        background: rgba(201, 168, 76, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 22px;
        color: var(--gold);
    }

    .contact-item h6 {
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 5px;
        color: #fff;
    }

    .contact-item p,
    .contact-item a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-item a:hover {
            color: var(--gold);
        }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0d0d1a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

    .footer .footer-logo img {
        height: 40px;
    }

    .footer p {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.85rem;
        margin-top: 15px;
    }

    .footer .social-links {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }

        .footer .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

            .footer .social-links a:hover {
                background: var(--gold);
                color: #fff;
                transform: translateY(-3px);
            }

    .footer .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-links li {
            margin-bottom: 8px;
        }

        .footer .footer-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

            .footer .footer-links a:hover {
                color: var(--gold);
            }

    .footer .footer-bottom {
        border-top: 1px solid
    }

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    animation: float 6s ease-in-out infinite;
}

    .floating-badge i {
        color: var(--gold);
        font-size: 1.2rem;
    }

    .floating-badge span {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .floating-badge small {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
        display: block;
    }

    .floating-badge:nth-child(1) {
        top: 10%;
        right: -10%;
        animation-delay: 0s;
    }

    .floating-badge:nth-child(2) {
        bottom: 20%;
        left: -15%;
        animation-delay: 2s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ============================================
                   ABOUT SECTION
                   ============================================ */
.about-section {
    background: #f8f9fc;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

    .about-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

    .about-features .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        color: #555;
    }

        .about-features .feature i {
            color: var(--gold);
            font-size: 1.1rem;
        }

/* ============================================
                   PRODUCTS SECTION
                   ============================================ */
.products-section {
    background: #fff;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        border-color: var(--gold-light);
    }

    .product-card .icon-wrapper {
        width: 70px;
        height: 70px;
        background: rgba(201, 168, 76, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 28px;
        color: var(--gold);
        transition: all 0.3s ease;
    }

    .product-card:hover .icon-wrapper {
        background: var(--gold);
        color: #fff;
    }

    .product-card h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
        font-family: 'Inter', sans-serif;
    }

    .product-card p {
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .product-card .product-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--gold);
        color: #fff;
        font-size: 0.6rem;
        padding: 3px 12px;
        border-radius: 20px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* ============================================
                   MISSION SECTION
                   ============================================ */
.mission-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
    color: #fff;
    padding: 100px 0;
}

    .mission-section .section-title {
        color: #fff;
    }

        .mission-section .section-title::after {
            background: var(--gold);
        }

    .mission-section .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
    }

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

    .mission-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
    }

    .mission-card .icon {
        width: 60px;
        height: 60px;
        background: rgba(201, 168, 76, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .mission-card h4 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: #fff;
    }

    .mission-card p {
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.7;
        font-size: 0.95rem;
    }

/* ============================================
                   VALUES SECTION
                   ============================================ */
.values-section {
    background: #fff;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

    .value-card:hover {
        border-color: var(--gold-light);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    }

    .value-card .icon {
        font-size: 40px;
        color: var(--gold);
        margin-bottom: 15px;
    }

    .value-card h5 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
        margin: 0;
    }

/* ============================================
                   WHY CHOOSE US
                   ============================================ */
.why-section {
    background: #f8f9fc;
}

.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

    .why-card:hover {
        border-color: var(--gold-light);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    }

    .why-card .number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--gold);
        opacity: 0.3;
        font-family: 'Playfair Display', serif;
        line-height: 1;
        min-width: 50px;
    }

    .why-card h5 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    .why-card p {
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
        margin: 0;
    }

/* ============================================
                   CONTACT SECTION
                   ============================================ */
.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
    color: #fff;
    padding: 80px 0;
}

    .contact-section .section-title {
        color: #fff;
    }

        .contact-section .section-title::after {
            background: var(--gold);
        }

    .contact-section .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
    }

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .contact-item .icon {
        width: 55px;
        height: 55px;
        background: rgba(201, 168, 76, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 22px;
        color: var(--gold);
    }

    .contact-item h6 {
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 5px;
        color: #fff;
    }

    .contact-item p,
    .contact-item a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-item a:hover {
            color: var(--gold);
        }
.contact-section {
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
    padding: 80px 0px;
}

/* ============================================
                   FOOTER
                   ============================================ */
.footer {
    background: #0d0d1a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

    .footer .footer-logo img {
        height: 40px;
    }

    .footer p {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.85rem;
        margin-top: 15px;
    }

    .footer .social-links {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }

        .footer .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

            .footer .social-links a:hover {
                background: var(--gold);
                color: #fff;
                transform: translateY(-3px);
            }

    .footer .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-links li {
            margin-bottom: 8px;
        }

        .footer .footer-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

            .footer .footer-links a:hover {
                color: var(--gold);
            }

    .footer .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        color: rgba(255, 255, 255, 0.3);
        font-size: 0.8rem;
    }

        .footer .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
        }

            .footer .footer-bottom a:hover {
                text-decoration: underline;
            }

/* ============================================
                   RESPONSIVE
                   ============================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-image img {
        max-width: 100%;
        margin-top: 40px;
    }

    .floating-badge {
        display: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1rem;
        }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

        .hero-stats .stat h3 {
            font-size: 1.8rem;
        }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mission-section {
        padding: 60px 0;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .hero-stats .stat h3 {
        font-size: 1.4rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 20px 15px;
    }

    .why-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .why-card .number {
            font-size: 2rem;
        }
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
        color: #ffffff;
        text-decoration: none;
    }

    .whatsapp-float::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #25d366;
        animation: pulse 2s infinite;
        z-index: -1;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float .whatsapp-float-text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
    transform: translateX(0);
}
/* ============================================
   LEADERSHIP / CEO & MD SECTION STYLES
   ============================================ */

.leadership-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

    .leadership-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #f6c23e, #e8a317, #f6c23e);
        background-size: 200% 100%;
        animation: shimmer 3s ease-in-out infinite;
    }

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(246, 194, 62, 0.15);
    color: #e8a317;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 15px;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #f6c23e, #e8a317);
        margin: 15px auto 0;
        border-radius: 2px;
    }

.section-subtitle {
    font-size: 18px;
    color: #6c7a8a;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Leadership Cards */
.leadership-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(246, 194, 62, 0.1);
}

    .leadership-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .leadership-card.ceo-card {
        border-top: 4px solid #f6c23e;
    }

    .leadership-card.md-card {
        border-top: 4px solid #0a1628;
    }

/* Card Header Icon */
.card-header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f6c23e, #e8a317);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(246, 194, 62, 0.3);
}

.md-card .card-header-icon {
    background: linear-gradient(135deg, #0a1628, #1a2a4a);
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.3);
}

/* Card Badge */
.card-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(246, 194, 62, 0.12);
    color: #e8a317;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.md-card .card-badge {
    background: rgba(10, 22, 40, 0.08);
    color: #0a1628;
}

/* Leader Name & Title */
.leader-name {
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 4px;
}

.leader-title {
    font-size: 16px;
    color: #6c7a8a;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Message Content */
.message-content {
    color: #4a5a7a;
    line-height: 1.8;
}

    .message-content p {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .message-content .lead-message {
        font-size: 18px;
        font-weight: 500;
        color: #0a1628;
        padding: 20px 25px;
        background: rgba(246, 194, 62, 0.06);
        border-left: 4px solid #f6c23e;
        border-radius: 8px;
        margin-bottom: 20px;
        line-height: 1.7;
    }

/* Message Footer */
.message-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.signature {
    text-align: right;
}

.signature-img {
    max-width: 140px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-bottom: 8px;
    opacity: 0.8;
}

.signature-name {
    font-size: 16px;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 2px;
}

.signature-title {
    font-size: 13px;
    color: #6c7a8a;
    margin-bottom: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #ffffff;
}

    .cta-box h4 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .cta-box p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 25px;
    }

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f6c23e;
    border: 2px solid #f6c23e;
    color: #0a1628;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #e8a317;
        border-color: #e8a317;
        color: #0a1628;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(246, 194, 62, 0.3);
    }

.btn-outline-primary {
    background: transparent;
    border: 2px solid #f6c23e;
    color: #f6c23e;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background: #f6c23e;
        color: #0a1628;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(246, 194, 62, 0.2);
    }

.btn-lg {
    padding: 14px 35px;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .leadership-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .leadership-card {
        padding: 30px 25px;
    }

    .message-content .lead-message {
        font-size: 16px;
        padding: 15px 20px;
    }

    .cta-box {
        padding: 35px 25px;
    }

        .cta-box h4 {
            font-size: 24px;
        }
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .leader-name {
        font-size: 20px;
    }

    .message-content p {
        font-size: 14px;
    }

    .message-content .lead-message {
        font-size: 15px;
    }

    .signature {
        text-align: center;
    }

    .signature-img {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 280px;
        }

    .cta-box p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .leadership-card {
        padding: 20px 18px;
    }

    .card-header-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .message-content .lead-message {
        font-size: 14px;
        padding: 12px 16px;
    }
}
