/* =============================================================
   WahabTech LLC - Main Stylesheet
   Premium Industrial Theme
   ============================================================= */

/* -----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ----------------------------------------------------------- */
:root {
    --primary: #c8a020;
    --primary-dark: #a07810;
    --primary-light: #e8c050;
    --dark: #0d1520;
    --dark-2: #162030;
    --dark-3: #1e2d40;
    --text: #6c7a89;
    --text-dark: #2c3e50;
    --light-bg: #f5f6fa;
    --white: #ffffff;
    --border: #e8eaf0;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.35s ease;
    --shadow: 0 8px 40px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 4px;
    --header-height: 90px;
}

:root {
    --primary: #c8a020;
    --primary-dark: #a07810;
    --primary-light: #e8c050;
    --dark: #115092;
    --dark-2: #0654a8;
    --dark-3: #1269c7;
    --text: #6c7a89;
    --text-dark: #2c3e50;
    --light-bg: #f5f6fa;
    --white: #ffffff;
    --border: #e8eaf0;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.35s ease;
    --shadow: 0 8px 40px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 4px;
    --header-height: 90px;
}



/* -----------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover { color: var(--primary); }

ul, ol { list-style: none; padding: 0; margin: 0; }

button { cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* -----------------------------------------------------------
   3. TYPOGRAPHY
   ----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 16px;
    border: 1px solid var(--primary);
    margin-bottom: 16px;
    position: relative;
}

.section-label::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title span { color: var(--primary); }

.section-title-white { color: var(--white); }

.section-subtitle {
    font-size: 15px;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 16px 0 24px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    left: 70px;
    top: 0;
    width: 20px;
    height: 3px;
    background: var(--primary-light);
}

/* -----------------------------------------------------------
   4. UTILITY CLASSES
   ----------------------------------------------------------- */
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-dark-1 { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }
.bg-dark-3 { background: var(--dark-3); }
.bg-light-custom { background: var(--light-bg); }
.text-gold { color: var(--primary); }
.text-white-custom { color: var(--white); }
.text-muted-custom { color: var(--text); }

/* -----------------------------------------------------------
   5. BUTTONS
   ----------------------------------------------------------- */
.btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.35s ease;
}

.btn:hover::before { left: 0; }

.btn-gold {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-gold:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 160, 32, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.9);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 160, 32, 0.3);
}

.btn-dark-custom {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark-custom:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* -----------------------------------------------------------
   6. PRELOADER
   ----------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-inner img {
    max-width: 200px;
    margin: 0 auto 24px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    animation: preloaderFill 1.8s ease forwards;
    border-radius: 10px;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.97); }
}

@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* -----------------------------------------------------------
   7. HEADER
   ----------------------------------------------------------- */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* Top Bar */
.header-top {
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0;
    transition: var(--transition);
}

.header-top span,
.header-top a {
    font-size: 12.5px;
    color: rgba(255,255,255,0.95);
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

.header-top a:hover { color: var(--primary); }

.header-top .divider {
    color: rgba(255,255,255,0.2);
}

.header-top i {
    color: var(--primary);
    margin-right: 5px;
    font-size: 11px;
}

/* Main Nav */
.header-main {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(200,160,32,0.15);
    transition: var(--transition);
}

.header-main .navbar {
    padding: 0;
    min-height: 70px;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1.5);
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.95) !important;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 18px;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Contact Button in Nav */
.btn-nav {
    background: var(--primary) !important;
    color: var(--dark) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius);
    font-weight: 700 !important;
    margin-left: 10px;
}

.btn-nav::after { display: none !important; }

.btn-nav:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,160,32,0.4);
}

/* Scrolled Header */
#site-header.scrolled .header-top {
    padding: 0;
    max-height: 0;
    overflow: hidden;
}

#site-header.scrolled .header-main {
    background: rgba(13, 21, 32, 0.97);
    background: rgb(15 67 137 / 97%);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

#site-header.scrolled .logo-img {
    height: 65px;
}

/* Hamburger Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}

.toggler-icon span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggler.active .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler.active .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark-2);
        padding: 16px;
        border-top: 1px solid rgba(255,255,255,0.05);
        margin-top: 8px;
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .navbar-nav .nav-link {
        padding: 10px 16px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .navbar-nav .nav-link::after { display: none; }

    .btn-nav {
        margin-left: 0 !important;
        margin-top: 8px;
        display: block;
        text-align: center;
    }
    .swiper-arrow {
      border: none !important;
    }
    
    .logo-img {
    height: 45px;
}

#site-header.scrolled .logo-img {
    height: 45px;
}

}

/* Body padding for fixed header */
body { padding-top: 110px; }

/* -----------------------------------------------------------
   8. HERO SLIDER
   ----------------------------------------------------------- */
.hero-slider-section {
    margin-top: -110px;
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Ken Burns effect */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: kenBurns 12s ease-out infinite alternate;
}

.swiper-slide-active .hero-slide::before,
.swiper-slide-active::before {
    animation: kenBurns 12s ease-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 21, 32, 0.88) 0%,
        rgba(13, 21, 32, 0.65) 50%,
        rgba(13, 21, 32, 0.50) 100%
    );
    z-index: 1;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 15px;
}

.slide-inner {
    max-width: 720px;
    padding-top: 80px;
}

.slide-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 18px;
    margin-bottom: 20px;
    position: relative;
}

.slide-tag::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.slide-inner h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.slide-inner h1 br + * { display: block; }

.slide-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.90);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 580px;
}

.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slide Animations */
.swiper-slide-active .animate-item:nth-child(1) {
    animation: slideUp 0.7s ease forwards 0.2s;
}
.swiper-slide-active .animate-item:nth-child(2) {
    animation: slideUp 0.7s ease forwards 0.5s;
}
.swiper-slide-active .animate-item:nth-child(3) {
    animation: slideUp 0.7s ease forwards 0.8s;
}
.swiper-slide-active .animate-item:nth-child(4) {
    animation: slideUp 0.7s ease forwards 1.0s;
}

.animate-item {
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(35px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Navigation Arrows */
.swiper-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 54px;
    height: 54px;
    background: rgba(200, 160, 32, 0.15);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.swiper-arrow:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(200,160,32,0.5);
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
    position: relative;
}

.scroll-line span {
    display: block;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scrollDown 1.5s ease-in-out infinite;
    writing-mode: horizontal-tb;
    letter-spacing: 0;
    font-size: 0;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* -----------------------------------------------------------
   9. PAGE HEADING
   ----------------------------------------------------------- */
.page-heading {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 70px;
    margin-top: 0;
}

.page-heading-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,21,32,0.92) 0%, rgba(22,32,48,0.85) 100%);
}

.page-heading-content {
    position: relative;
    z-index: 1;
}

.page-heading-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* -----------------------------------------------------------
   10. ABOUT SECTION (Homepage)
   ----------------------------------------------------------- */
.about-section {
    background: var(--white);
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.6s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.04);
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--primary);
    border-left: 4px solid var(--primary);
    z-index: 2;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
    z-index: 2;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 20px 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(200,160,32,0.4);
    z-index: 3;
}

/* Animated border — a bright spot travels along the border path */
@property --badge-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.experience-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 7px;
    padding: 3px;
    background: conic-gradient(
        from var(--badge-angle),
        transparent 0deg,
        rgba(255,255,255,0.95) 40deg,
        transparent 80deg,
        transparent 140deg,
        rgba(255,200,0,1) 180deg,
        transparent 220deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: badge-border-sweep 2.5s linear infinite;
}

@keyframes badge-border-sweep {
    to { --badge-angle: 360deg; }
}

.experience-badge .exp-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.experience-badge .exp-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.about-content { padding-left: 30px; }

.about-features {
    margin: 28px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.feature-item .fi-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(200,160,32,0.12);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 12px;
    margin-top: 2px;
}

.feature-item .fi-text {
    font-size: 14.5px;
    color: var(--text-dark);
    font-weight: 500;
}

/* -----------------------------------------------------------
   11. STATS COUNTER SECTION
   ----------------------------------------------------------- */
.stats-section {
    background-image: url('../images/oil-gas.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 21, 32, 0.90);
    z-index: 0;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 2;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.col-lg-3:last-child .stat-item::after { display: none; }

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(200,160,32,0.12);
    border: 2px solid rgba(200,160,32,0.3);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--primary);
    color: var(--dark);
    transform: rotateY(360deg);
    border-color: var(--primary);
}

.counter-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

/* -----------------------------------------------------------
   12. SERVICES SECTION
   ----------------------------------------------------------- */
.services-section {
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: var(--transition);
    position: relative;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.13);
    border-bottom-color: var(--primary);
}

.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,21,32,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-img-overlay {
    opacity: 1;
}

.service-card-body {
    padding: 28px 24px;
    position: relative;
}

.service-card-icon {
    width: 58px;
    height: 58px;
    background: rgba(200,160,32,0.10);
    border: 2px solid rgba(200,160,32,0.25);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.service-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.service-card:hover .service-card-body h3 {
    color: var(--primary);
}

.service-card-body p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-read-more {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-read-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-read-more i {
    transform: translateX(5px);
}

/* -----------------------------------------------------------
   13. JOURNEY SECTION (Homepage Carousel)
   ----------------------------------------------------------- */
.journey-section {
    background-image: url('../images/industrial-construction.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(22, 32, 48, 0.90);
    z-index: 0;
}

.journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-swiper {
    width: 100%;
    padding-bottom: 60px;
}

.journey-slide {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 20px 0;
}

.journey-slide-img {
    flex: 0 0 50%;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.journey-slide-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

.journey-slide-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,160,32,0.15) 0%, transparent 60%);
    z-index: 1;
    border-radius: var(--radius);
}

.journey-slide-content {
    flex: 1;
}

.journey-project-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(200,160,32,0.4);
    padding: 5px 14px;
    margin-bottom: 18px;
    font-weight: 600;
}

.journey-slide-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--white);
    margin-bottom: 12px;
}

.journey-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.nav-link.active.whitetextbtn {
  color: white !important;
}

.journey-meta span {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.journey-meta i { color: var(--primary); }

.journey-scope {
    margin-bottom: 24px;
}

.journey-scope-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.journey-scope li {
    font-size: 14px;
    color: rgba(255,255,255,0.90);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.journey-scope li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 7px;
}

.journey-safety {
    background: rgba(200,160,32,0.08);
    border-left: 3px solid var(--primary);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13px;
    color: rgb(20 70 138);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.journey-safety i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* Journey Navigation */
.journey-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.journey-prev,
.journey-next {
    width: 46px;
    height: 46px;
    border: 2px solid var(--primary);
    background: rgba(200,160,32,0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.journey-prev:hover,
.journey-next:hover {
    background: var(--primary);
    color: var(--dark);
}

.journey-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.3);
    opacity: 1;
}

.journey-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* -----------------------------------------------------------
   14. WHY CHOOSE US SECTION
   ----------------------------------------------------------- */
.why-section {
    background: var(--white);
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    transform: translateY(-6px);
    border-color: rgba(200,160,32,0.2);
}

.why-icon {
    width: 76px;
    height: 76px;
    background: rgba(200,160,32,0.10);
    border: 2px solid rgba(200,160,32,0.25);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.why-card:hover h3 { color: var(--primary); }

.why-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.75;
}

/* -----------------------------------------------------------
   15. PARALLAX CTA SECTION
   ----------------------------------------------------------- */
.parallax-cta {
    background-image: url('../images/powerplant.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.parallax-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,21,32,0.92) 0%, rgba(22,32,48,0.88) 100%);
}

.parallax-cta .container { position: relative; z-index: 1; }

.parallax-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.parallax-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
}

.parallax-cta .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* -----------------------------------------------------------
   16. CLIENTS BAND
   ----------------------------------------------------------- */
.clients-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.clients-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
}

.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    letter-spacing: 1px;
    transition: var(--transition);
    background: var(--white);
    text-transform: uppercase;
}

.client-badge i {
    color: var(--primary);
    font-size: 18px;
}

.client-badge:hover {
    border-color: var(--primary);
    background: rgba(200,160,32,0.05);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200,160,32,0.15);
}

/* -----------------------------------------------------------
   17. ABOUT PAGE SECTIONS
   ----------------------------------------------------------- */
.about-page-intro {
    background: var(--white);
}

.about-page-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.about-page-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-stats-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,21,32,0.95) 0%, transparent 100%);
    padding: 30px 25px 25px;
    display: flex;
    justify-content: space-around;
    border-radius: 0 0 var(--radius) var(--radius);
}

.mini-stat {
    text-align: center;
}

.mini-stat .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.mini-stat .lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.95);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.about-bullets li {
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-bullets li:last-child { border-bottom: none; }

.about-bullets li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Core Values */
.values-section {
    background: var(--light-bg);
}

.value-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(200,160,32,0.10);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
    border: 2px solid rgba(200,160,32,0.3);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.value-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text); line-height: 1.75; }

/* -----------------------------------------------------------
   18. SERVICES PAGE
   ----------------------------------------------------------- */
.service-detail-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail-section:nth-child(even) {
    background: var(--light-bg);
}

.service-detail-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 400px;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.6s ease;
}

.service-detail-img:hover img {
    transform: scale(1.05);
}

.service-detail-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,160,32,0.12), transparent);
    z-index: 1;
    border-radius: var(--radius);
}

.service-detail-content {
    padding: 20px 0;
}

.service-detail-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 16px;
}

.service-bullets {
    margin: 20px 0;
}

.service-bullets li {
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-bullets li:last-child { border-bottom: none; }

.service-bullets li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

/* -----------------------------------------------------------
   19. QUALITY & SAFETY PAGE
   ----------------------------------------------------------- */
.quality-intro {
    background: var(--white);
}

.quality-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.quality-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
}

.safety-cards-section {
    background: var(--dark);
    position: relative;
}

.safety-cards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/industrial-construction1.jpg') center/cover no-repeat;
    opacity: 0.05;
}

.safety-point-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
}

.safety-point-card:hover {
    background: rgba(200,160,32,0.08);
    border-color: rgba(200,160,32,0.25);
    transform: translateY(-5px);
}

.safety-point-icon {
    width: 64px;
    height: 64px;
    background: rgba(200,160,32,0.12);
    border: 2px solid rgba(200,160,32,0.3);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.safety-point-card:hover .safety-point-icon {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.safety-point-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.safety-point-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.90);
    line-height: 1.7;
    margin: 0;
}

/* Quality Policy Highlight Box */
.quality-policy-box {
    background: var(--dark-2);
    border: 1px solid rgba(200,160,32,0.2);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-top: 24px;
}

.quality-policy-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.95);
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

/* -----------------------------------------------------------
   20. OUR JOURNEY PAGE
   ----------------------------------------------------------- */
.journey-page-intro {
    background: var(--white);
    text-align: center;
}

.project-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.project-section:nth-child(even) {
    background: var(--light-bg);
}

.project-gallery-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.project-gallery-swiper {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

.project-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
}

.pg-nav {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
}

.pg-prev, .pg-next {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    background: rgba(200,160,32,0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
    cursor: pointer;
}

.pg-prev:hover, .pg-next:hover {
    background: var(--primary);
    color: var(--dark);
}

.project-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 12px;
}

.project-meta-list {
    margin-bottom: 20px;
}

.project-meta-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.project-meta-list li:last-child { border-bottom: none; }

.project-meta-list li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
}

.project-meta-list li strong {
    color: var(--text-dark);
    min-width: 80px;
    flex-shrink: 0;
}

.project-scope-list li {
    font-size: 14.5px;
    color: var(--text);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.project-scope-list li:last-child { border-bottom: none; }

.project-scope-list li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.safety-compliance-strip {
    background: var(--dark-3);
    border-top: 3px solid var(--primary);
    padding: 28px 0;
}

.safety-compliance-strip p {
    font-size: 15px;
    color: rgba(255,255,255,0.95);
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.safety-compliance-strip i {
    color: var(--primary);
    font-size: 18px;
}

/* -----------------------------------------------------------
   21. CONTACT PAGE
   ----------------------------------------------------------- */
.contact-cards-section {
    background: var(--dark-2);
    position: relative;
}

.contact-info-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    background: rgba(200,160,32,0.06);
    box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(200,160,32,0.12);
    border: 2px solid rgba(200,160,32,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.contact-info-card:hover .contact-card-icon {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.contact-info-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    display: block;
}

.contact-info-card a:hover { color: var(--primary); }

.map-section {
    padding: 0;
    line-height: 0;
    overflow: hidden;
}

.map-section iframe {
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

/* -----------------------------------------------------------
   22. FOOTER
   ----------------------------------------------------------- */
#site-footer {
    background: var(--dark);
}

.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo-img {
    max-width: 160px;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.90);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links li a,
.footer-services li a {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a i,
.footer-services li a i {
    color: var(--primary);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links li a:hover,
.footer-services li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links li a:hover i,
.footer-services li a:hover i {
    transform: translateX(3px);
}

.footer-contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-list .icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(200,160,32,0.10);
    border: 1px solid rgba(200,160,32,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 13px;
}

.footer-contact-list span:not(.icon) {
    font-size: 13.5px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.9);
}

.footer-contact-list a:hover { color: var(--primary); }

.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.3);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-bottom strong { color: var(--primary); }

/* -----------------------------------------------------------
   23. FLOATING BUTTONS
   ----------------------------------------------------------- */
.floating-call {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(200,160,32,0.5);
    z-index: 500;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-call:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 8px 30px rgba(200,160,32,0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(200,160,32,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(200,160,32,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,160,32,0); }
}

#scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--dark-2);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-top:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* -----------------------------------------------------------
   SWEEP BORDER ANIMATIONS
   Reuses --badge-angle @property and badge-border-sweep keyframes
   defined in the About section above.
   ----------------------------------------------------------- */

/* --- Cards (overflow:hidden → inset:0 keeps border inside) --- */
.service-card::after,
.why-card::after,
.value-card::after,
.safety-point-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: conic-gradient(
        from var(--badge-angle),
        transparent 0deg,
        rgba(255,255,255,0.8) 40deg,
        transparent 80deg,
        transparent 140deg,
        rgba(255,200,0,0.9) 180deg,
        transparent 220deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: badge-border-sweep 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover::after,
.why-card:hover::after,
.value-card:hover::after,
.safety-point-card:hover::after {
    opacity: 1;
}

/* --- Circular icons — continuous orbiting glow --- */
.stat-icon::before,
.why-icon::before,
.value-icon::before,
.safety-point-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(
        from var(--badge-angle),
        transparent 0deg,
        rgba(255,255,255,0.9) 40deg,
        transparent 80deg,
        transparent 140deg,
        rgba(255,200,0,1) 180deg,
        transparent 220deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: badge-border-sweep 3.5s linear infinite;
    pointer-events: none;
}

/* --- Square service card icon --- */
.service-card-icon {
    position: relative;
}

.service-card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 7px;
    padding: 3px;
    background: conic-gradient(
        from var(--badge-angle),
        transparent 0deg,
        rgba(255,255,255,0.9) 40deg,
        transparent 80deg,
        transparent 140deg,
        rgba(255,200,0,1) 180deg,
        transparent 220deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: badge-border-sweep 3.5s linear infinite;
    pointer-events: none;
}

/* -----------------------------------------------------------
   24. AOS CUSTOM ANIMATIONS
   ----------------------------------------------------------- */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.92);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* -----------------------------------------------------------
   25. RESPONSIVE — 1200px
   ----------------------------------------------------------- */
@media (max-width: 1199px) {
    .journey-slide { gap: 30px; }
    .about-content { padding-left: 20px; }
    .slide-inner { max-width: 600px; }
}

/* -----------------------------------------------------------
   26. RESPONSIVE — 992px
   ----------------------------------------------------------- */
@media (max-width: 991px) {
    body { padding-top: 70px; }

    /* Hide email on tablet to prevent header-top overflow */
    .header-top-right a[href^="mailto"] { display: none; }

    .hero-swiper { height: 80vh; min-height: 500px; }

    .slide-inner { padding-top: 60px; }

    .about-content { padding-left: 0; margin-top: 30px; }

    .journey-slide {
        flex-direction: column;
        gap: 24px;
    }

    .journey-slide-img { flex: none; width: 100%; }
    .journey-slide-img img { height: 280px; }

    .section-padding { padding: 70px 0; }

    .hero-prev { left: 15px; }
    .hero-next { right: 15px; }

    .scroll-indicator { display: none; }

    .experience-badge { left: 16px; }

    .about-stats-overlay {
        position: static;
        background: var(--dark);
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 20px;
    }
}

/* -----------------------------------------------------------
   27. RESPONSIVE — 768px
   ----------------------------------------------------------- */
@media (max-width: 767px) {
    .header-top { display: none; }
    body { padding-top: 62px; }

    .hero-swiper { height: 75vh; }

    .slide-inner h1 { font-size: 1.8rem; }
    .slide-inner p { font-size: 14px; }
    .slide-btns { gap: 10px; }
    .btn { padding: 11px 22px; font-size: 13px; }

    .section-padding { padding: 55px 0; }

    .stat-item::after { display: none; }

    .parallax-cta,
    .stats-section,
    .journey-section { background-attachment: scroll; }

    .page-heading { padding: 100px 0 60px; }

    .footer-top { padding: 50px 0 30px; }

    .floating-call { bottom: 80px; right: 16px; width: 46px; height: 46px; font-size: 18px; }
    #scroll-top { bottom: 16px; right: 16px; }

    .experience-badge {
        position: absolute;
        bottom: 16px;
        left: 16px;
        display: block;
        margin-top: 0;
        padding: 14px 18px;
    }

    .experience-badge .exp-num { font-size: 2.2rem; }

    .about-image-wrap::before,
    .about-image-wrap::after { display: none; }

    .journey-slide-img img { height: 220px; }
}

/* -----------------------------------------------------------
   28. RESPONSIVE — 576px
   ----------------------------------------------------------- */
@media (max-width: 575px) {
    .hero-swiper { height: 85vh; }

    .slide-inner { padding-top: 50px; }
    .slide-inner h1 { font-size: 1.6rem; }

    .section-title { font-size: 1.7rem; }

    .stat-item { padding: 30px 15px; }

    .client-badge { padding: 10px 18px; font-size: 14px; }

    .service-card-img { height: 180px; }

    .why-card { padding: 28px 20px; }

    .footer-logo-img { max-width: 130px; }

    .swiper-arrow { width: 42px; height: 42px; font-size: 15px; }

    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }

    .page-heading-content h1 { font-size: 1.8rem; }
}

/* -----------------------------------------------------------
   29. MISCELLANEOUS
   ----------------------------------------------------------- */
/* Gold line decorative element */
.gold-line {
    width: 50px;
    height: 3px;
    background: var(--primary);
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

/* Diagonal clip on image */
.clip-diagonal {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* Badge style numbers */
.badge-num {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(200,160,32,0.4);
}

/* Overlay gradient (reusable) */
.overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,21,32,0.92) 0%, rgba(22,32,48,0.88) 100%);
}

/* Line break spacer */
.spacer-40 { height: 40px; }
.spacer-60 { height: 60px; }

/* Swiper overrides */
.swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--primary); }


/* Journey page thumbnail strip */
.thumb-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 10px;
}

.thumb-strip img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.65;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumb-strip img:hover,
.thumb-strip img.active {
    opacity: 1;
    border-color: var(--primary);
}

/* Section heading centered layout */
.section-head-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-head-center .section-label {
    margin-bottom: 14px;
}

.section-head-center .section-subtitle {
    margin: 0 auto;
}

/* Dark section heading */
.section-head-dark .section-title {
    color: var(--white);
}

.section-head-dark .section-subtitle {
    color: rgba(255,255,255,0.90);
}

/* Number decorative heading */
.section-head-left {
    margin-bottom: 40px;
}

/* Image overlay text */
.img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,21,32,0.9) 0%, transparent 100%);
    padding: 20px 20px 16px;
    border-radius: 0 0 var(--radius) var(--radius);
}

.img-caption h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.img-caption span {
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 1px;
}

/* Line separator */
.sep-line {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

.sep-line-dark {
    border-top-color: rgba(255,255,255,0.06);
}
