@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #002d62;
    --secondary: #00b4ff;
    --dark: #001229;
    --light: #f8fbff;
    --accent: #ffb400;
    --text-main: #334155;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Global Utilities */
.section-padding {
    padding: 100px 0;
}

.container {
    max-width: 1280px;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

/* Custom Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 180, 255, 0.1);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Premium Buttons */
.cta-btn,
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #004699);
    color: #fff !important;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.2);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), #00d4ff);
    transition: var(--transition);
    z-index: -1;
}

.cta-btn:hover::before {
    width: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 180, 255, 0.3);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary) !important;
}

/* Header Glassmorphism */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* Ensure z-index context */
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--secondary);
}

.hamburger {
    cursor: pointer;
    z-index: 1100;
    display: none;
    /* Hidden by default on desktop */
}

.hamburger i {
    font-size: 28px;
    color: var(--primary) !important;
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
    .hamburger {
        display: block !important;
        cursor: pointer;
        z-index: 1102;
        /* Higher than menu */
    }

    .hamburger i {
        font-size: 32px;
        /* Larger icon for easy tapping */
        color: var(--primary) !important;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #fff;
        flex-direction: column !important;
        padding: 40px 20px;
        /* Adjusted padding */
        gap: 20px !important;
        transition: left 0.4s ease-in-out;
        /* Explicit property */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex !important;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    /* Ensure hero slider is correct height on tablet/mobile */
    /* Ensure hero slider is correct height on tablet/mobile */
    .hero-slider,
    .inner-hero {
        height: 350px !important;
        min-height: 350px !important;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--dark) !important;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Hero Section */
.hero-slider {
    height: 100vh;
    min-height: 800px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 18, 41, 0.95), rgba(0, 18, 41, 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 900px;
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 84px;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: #ffffff !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

/* Quick Link Bar */
.quick-bar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-link-item {
    transition: var(--transition);
}

.quick-link-item:hover {
    color: var(--secondary) !important;
    transform: translateY(-2px);
}

.quick-link-item {
    padding: 25px 0;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.quick-link-item i {
    color: var(--secondary);
    font-size: 18px;
}

/* Premium Cards */
.card-premium {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 180, 255, 0.1);
}

.f-card {
    padding: 60px;
    border-radius: 30px;
}

.f-card-white {
    background: #fff;
}

.f-card-blue {
    background: var(--dark);
    color: #fff;
}

.f-card .icon-box {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 30px;
}

/* Stat Cards */
.stat-box h2 {
    font-size: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Premium Image Styling */
.about-img-container {
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

.about-img-wrapper {
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.about-img-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-mask-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 100%);
}

.deco-circle {
    position: absolute;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
}

/* --- DARK CORPORATE TESTIMONIALS --- */
.testimonials-section {
    background: linear-gradient(to right, #2c3e50, #3498db);
    /* Slate to Bright Blue */
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

/* Background Decor */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/web/map_bg_white.png') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.testi-header h2 {
    color: #fff !important;
}

.testi-header p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Review Card */
.testi-card-corporate {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: 0.3s;
    border-bottom: 5px solid var(--secondary);
    height: 100%;
    color: var(--dark);
}

.testi-card-corporate:hover {
    transform: translateY(-10px);
}

.testi-icon-box {
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 32px;
}

.testi-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testi-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.testi-info h5 {
    font-size: 16px;
    margin: 0;
    color: var(--primary);
    font-weight: 700;
}

.testi-info small {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper Pagination (White dots) */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
    width: 25px !important;
    border-radius: 5px !important;
}

@media (max-width: 767px) {
    .testi-card-corporate {
        padding: 30px;
    }

    .testi-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .testi-card-premium {
        padding: 40px 30px;
    }

    .testi-content-text {
        font-size: 18px;
    }

    .rating-premium-vertical {
        padding: 40px 30px;
    }
}

/* Animation Utils */
[data-aos] {
    transition-duration: 1200ms !important;
}

/* Floating Element Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

/* Responsive Grid Fixes */
@media (max-width: 991px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .section-padding {
        padding: 70px 0;
    }
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    display: block !important;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark) !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 180, 255, 0.05) !important;
    color: var(--secondary) !important;
    padding-left: 30px;
}

/* Mobile Dropdown Fix */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0 0 0 20px !important;
        display: block !important;
    }

    .dropdown-item {
        padding: 10px 0 !important;
        color: var(--text-muted) !important;
    }

    .nav-link.dropdown-toggle::after {
        display: none;
    }
}

/* Inner Page Hero */
.inner-hero {
    height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
    color: #fff;
    overflow: hidden;
}

.inner-hero h1 {
    font-size: 56px;
    color: #fff !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.inner-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 20px;
}

.inner-hero .breadcrumb a,
.inner-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inner-hero .breadcrumb a:hover {
    color: var(--secondary);
}

.inner-hero .breadcrumb span {
    color: var(--secondary);
}

.sidebar-link {
    display: block;
    padding: 15px 25px;
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.sidebar-link.active,
.sidebar-link:hover {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.15);
}

.contact-widget {
    background: linear-gradient(135deg, var(--secondary), #00d4ff);
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 180, 255, 0.2);
}

/* --- HIGH-END REDESIGN FOR BROCHURE SECTIONS --- */

/* --- ULTIMATE WEBSITE REDESIGN (PREMIUM NAVY SERVICES) --- */
.services-section-dark {
    padding: 120px 0;
    background: #00152e;
    /* Updated to requested Navy Blue */
    position: relative;
    overflow: hidden;
}

.services-section-dark::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    filter: blur(150px);
    opacity: 0.1;
    top: -200px;
    right: -100px;
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.service-card-premium {
   background: rgb(0, 31, 46);
    /* Subtle glass for dark navy */
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 45px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover {
    transform: translateY(-20px);
    background: #ffffff;
    /* Flip to white on hover */
    border-color: #ffffff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.service-icon-box {
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 35px;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-premium:hover .service-icon-box {
    background: #00152e;
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.service-card-premium h4 {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: 0.3s;
}

.service-card-premium:hover h4 {
    color: #00152e;
}

.service-card-premium p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0;
    transition: 0.3s;
}

.service-card-premium:hover p {
    color: #555;
}

.service-card-premium::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.service-card-premium:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Trade Division Redesign */
.trade-split-section {
    background: #001229;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 45, 98, 0.4) 0%, transparent 50%);
    border-radius: 40px;
    overflow: hidden;
    color: #fff;
}

.trade-content-side {
    padding: 80px 60px;
}

.trade-list-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.trade-list-modern li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.trade-list-modern li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateX(10px);
}

.trade-list-modern li i {
    color: var(--secondary);
    font-size: 20px;
}

/* Vision Banner Ultra */
.vision-banner-ultra {
    background: #fff;
    border-radius: 30px;
    padding: 30px 40px;
    /* Reduced further from 60px */
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vision-banner-ultra h2 {
    font-size: 32px;
    /* Reduced from 42px to save height */
    font-weight: 900;
    color: var(--primary);
    line-height: 1.3;
    margin: 0 auto;
    max-width: 900px;
    font-style: italic;
}

.vision-banner-ultra .label {
    background: var(--secondary);
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Quality Seal Horizontal */
.quality-seal-bar {
    background: #000;
    padding: 20px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.quality-seal-bar i {
    color: var(--secondary);
    font-size: 30px;
}

.quality-seal-bar h3 {
    margin: 0;
    color: #fff !important;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- PROFESSIONAL WEBSITE STYLE GDP SECTION --- */
.gdp-premium-wrapper {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 45, 98, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.gdp-modern-badge {
    background: rgba(0, 180, 255, 0.1);
    color: var(--secondary);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.gdp-title-main {
    font-size: 35px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 35px;
    font-family: 'Outfit', sans-serif;
}

.gdp-content-card {
    background: var(--light);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid transparent;
}

.gdp-content-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.gdp-include-card {
    background: var(--primary);
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.gdp-include-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.gdp-list-modern {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.gdp-list-modern li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    transition: 0.3s;
}

.gdp-list-modern li:hover {
    opacity: 1;
    transform: translateX(10px);
}

.gdp-list-modern li i {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.gdp-image-container-modern {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.gdp-image-container-modern img {
    transition: 1s;
}

.gdp-image-container-modern:hover img {
    transform: scale(1.1);
}

.gdp-accent-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

@media (max-width: 991px) {
    .gdp-premium-wrapper {
        padding: 40px 30px;
    }

    .gdp-title-main {
        font-size: 32px;
    }
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .services-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .trade-list-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .services-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .vision-banner-ultra {
        padding: 60px 30px;
    }

    .vision-banner-ultra h2 {
        font-size: 28px;
    }
}



/* --- MODERN STEPPER REDESIGN (FLOW TO QUALIFICATION) --- */

.qualification-roadmap {
    position: relative;
    padding: 40px 0;
}

.qualification-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.2;
}

/* --- TEMPERATURE MAPPING IMPROVED --- */
.temp-img-wrapper {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
}

.temp-img-wrapper img {
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.temp-img-wrapper:hover img {
    transform: scale(1.02);
}

.floating-badge-glass {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-badge-glass i {
    font-size: 24px;
    color: var(--secondary);
}

.floating-badge-glass span {
    font-weight: 800;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.2;
}

/* Roadmap Refinement */
.qualification-roadmap {
    position: relative;
    padding-left: 60px;
    /* Space for marker and line */
}

.qualification-roadmap::before {
    content: '';
    position: absolute;
    left: 22px;
    /* Centered under the 45px marker */
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary), transparent);
    opacity: 0.3;
}

.roadmap-step {
    display: flex;
    align-items: center;
    /* Center marker with card */
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    margin-left: -60px;
    /* Offset the roadmap padding to place markers on the line */
}

.step-marker {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 1), 0 0 0 8px rgba(0, 180, 255, 0.1);
    position: relative;
}

.step-card {
    background: #fff;
    padding: 25px 35px;
    /* Added missing padding */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    width: 100%;
    transition: 0.3s;
}

.roadmap-step:hover .step-card {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 45, 98, 0.08);
    border-color: var(--secondary);
}

.step-card h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SCOPE Section Redesign */
.scope-premium-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.scope-item-modern {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.scope-item-modern:last-child {
    border-bottom: none;
}

.scope-item-modern:hover {
    background: var(--light);
    padding-left: 30px;
}

.scope-item-modern .check-icon {
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.scope-item-modern span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive Steps */
@media (max-width: 767px) {
    .qualification-roadmap::before {
        left: 30px;
    }

    .step-marker {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .roadmap-step {
        gap: 15px;
    }

    .step-card {
        padding: 20px;
    }

    .step-card h5 {
        font-size: 15px;
    }
}


/* Quality Sub-headers */
.professional-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.professional-title::before {
    content: '';
    width: 40px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.certified-text {
    font-family: 'Outfit', sans-serif;
    color: #a69480;
    font-weight: 800;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.02);
}

.watermark-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    z-index: -1;
    width: 800px;
    pointer-events: none;
}

/* Extra Utilities */
.blur-3xl {
    filter: blur(100px);
}

.fw-black {
    font-weight: 900;
}

.lh-lg {
    line-height: 2 !important;
}

.shadow-2xl {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.fw-500 {
    font-weight: 500;
}

/* --- COMPREHENSIVE MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .section-padding {
        padding: 20px 0 !important;
    }

    h1 {
        font-size: 48px !important;
    }

    h2 {
        font-size: 36px !important;
    }

    .display-1 {
        font-size: 48px !important;
    }

    .display-4 {
        font-size: 32px !important;
    }

    .hero-slider,
    .inner-hero {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
        /* Force exact height */
        padding: 0;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        /* Remove offset if it's causing white space */
    }

    /* Additional safety to ensure buttons are hidden */
    .hero-btn-wrapper,
    .hero-content .cta-btn,
    .hero-content .btn,
    .hero-content .d-flex {
        display: none !important;
    }

    .hamburger {
        display: block !important;
        position: relative;
        z-index: 1101;
        cursor: pointer;
    }

    .hamburger i {
        font-size: 28px;
        color: var(--primary) !important;
    }


    .hero-slider .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-content {
        text-align: center;
        padding-top: 0;
    }

    /* Strictly hide hero buttons on mobile */
    .hero-btn-wrapper {
        display: none !important;
    }

    .quick-bar {
        display: none !important;
    }

    .help-box-glass {
        padding: 30px 20px !important;
    }

    .modern-title-group {
        margin-bottom: 40px !important;
    }

    .services-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trade-split-section {
        border-radius: 20px;
        overflow: hidden;
    }

    .trade-content-side {
        padding: 40px 20px;
    }

    .trade-list-modern {
        grid-template-columns: 1fr;
    }

    .gdp-premium-wrapper {
        padding: 30px;
    }

    .gdp-title-main {
        font-size: 32px !important;
    }

    .compliance-section-modern {
        padding: 60px 0;
    }

    .premium-stat-box {
        padding: 30px 20px;
    }

    .premium-stat-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    .display-1 {
        font-size: 36px !important;
    }

    .display-4 {
        font-size: 24px !important;
    }

    .section-badge {
        font-size: 10px;
        padding: 6px 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding-left: 25px;
        padding-right: 25px;
        overflow-x: hidden;
        /* Extra safety */
    }

    /* Services Grid */
    .services-grid-wrapper {
        grid-template-columns: 1fr;
    }

    /* Vision Banner */
    .vision-banner-ultra {
        padding: 40px 20px;
    }

    .vision-banner-ultra h2 {
        font-size: 22px !important;
    }

    /* GDP Section */
    .gdp-include-card {
        padding: 30px 20px;
    }

    .gdp-include-card .border-end {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .gdp-list-modern li {
        font-size: 14px;
    }

    /* Roadmap/Stepper */
    .qualification-roadmap::before {
        left: 20px;
    }

    .step-marker {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .roadmap-step {
        gap: 10px;
    }

    .step-card {
        padding: 15px 20px;
    }

    .step-card h5 {
        font-size: 14px;
    }

    /* Floating Cards */
    .f-card {
        padding: 30px 20px;
        margin-top: 0 !important;
    }

    .container[style*="margin-top: -120px"] {
        margin-top: 0 !important;
        padding-top: 30px;
    }

    .nav-links {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 42px !important;
    }

    .hero-content p {
        font-size: 16px;
    }

    .premium-stat-box h2 {
        font-size: 24px !important;
    }

}

.approach-banner {
    font-size: 14px;
}

/* Testimonials Mobile */
.testi-card-premium {
    padding: 35px 25px;
    border-radius: 25px;
}

.testi-content-text {
    font-size: 18px !important;
    line-height: 1.5;
}

.testimonials-section::before {
    font-size: 150px;
    top: -20px;
    right: 20px;
}

.rating-premium-vertical {
    margin-bottom: 30px;
}

/* --- COMPLIANCE STATS PREMIUM --- */
.compliance-section-modern {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.premium-stat-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 45, 98, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: 0.4s;
    height: 100%;
}

.premium-stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 30px 60px rgba(0, 45, 98, 0.08);
}

.premium-stat-box h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.premium-stat-box p {
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.compliance-img-frame {
    position: relative;
    padding: 20px;
}

.compliance-img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    border-radius: 30px;
    z-index: 0;
    opacity: 0.1;
}

.compliance-img-frame img {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}


/* Images */
.about-img-container {
    margin-top: 30px;
}

.gdp-image-container-modern {
    margin-top: 30px;
}