/*
Theme Name: Extreme Networks Global
Theme URI: https://extremenetworksglobal.com
Author: Extreme Networks Global
Author URI: https://extremenetworksglobal.com
Description: Corporate Premium Website for Extreme Networks Global - Dubai Based Multinational Company delivering world-class solutions in Construction, ICT Infrastructure, Software Development, Security Systems, and Industrial Services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: extreme-networks-global
Tags: corporate, business, professional, responsive
*/

/* ============================================
   TABLE OF CONTENTS
   01. CSS Variables
   02. Reset & Base
   03. Typography
   04. Buttons
   05. Preloader
   06. Header & Navigation
   07. Hero Section
   08. Ticker
   09. About Section
   10. Services Section
   11. Counter Section
   12. Global Presence
   13. Projects Section
   14. Industries Section
   15. Testimonials
   16. Certifications
   17. Why Choose Us
   18. Careers Section
   19. News Section
   20. Contact Section
   21. Footer
   22. Back To Top
   23. Animations
   24. Responsive / Media Queries
   ============================================ */

/* ============================================
   01. CSS VARIABLES
   ============================================ */
:root {
    --navy:          #0A1F44;
    --navy-light:    #1a3a6b;
    --gold:          #D4AF37;
    --gold-light:    #f0d060;
    --white:         #FFFFFF;
    --light-gray:    #F5F7FA;
    --orange:        #FF6B00;
    --orange-dark:   #e55f00;
    --dark:          #0a0a0a;
    --dark-2:        #111111;
    --text:          #444444;
    --text-light:    #666666;
    --border:        #e0e0e0;
    --border-light:  #f0f0f0;

    --shadow-sm:     0 3px 15px rgba(0,0,0,0.06);
    --shadow:        0 10px 40px rgba(0,0,0,0.10);
    --shadow-md:     0 15px 50px rgba(0,0,0,0.15);
    --shadow-hover:  0 20px 60px rgba(0,0,0,0.20);
    --shadow-gold:   0 5px 20px rgba(212,175,55,0.30);
    --shadow-orange: 0 5px 20px rgba(255,107,0,0.35);

    --transition:    all 0.35s ease;
    --transition-slow: all 0.6s ease;

    --font-main:     'Montserrat', sans-serif;
    --font-body:     'Open Sans', sans-serif;

    --radius-sm:     6px;
    --radius:        12px;
    --radius-lg:     20px;
    --radius-full:   50px;
}

/* ============================================
   02. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
    list-style: none;
}

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

input,
textarea,
select,
button {
    font-family: var(--font-body);
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Padding */
section {
    position: relative;
}

/* ============================================
   03. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
}

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

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

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 6px 22px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--font-main);
    box-shadow: var(--shadow-gold);
}

.section-title {
    font-size: clamp(26px, 4vw, 42px);
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.section-header p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   04. BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), #ff8c00);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-family: var(--font-main);
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: var(--shadow-orange);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,0,0.5);
    background: linear-gradient(135deg, #ff8c00, var(--orange));
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-family: var(--font-main);
    font-size: 13px;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.45);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--navy);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-family: var(--font-main);
    font-size: 13px;
    letter-spacing: 1px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-family: var(--font-main);
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-main);
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 0;
}

.btn-call:hover {
    color: var(--white);
    gap: 12px;
}

/* ============================================
   PRELOADER - 100% FIXED
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A1F44;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease;
}

#preloader[style*="display: none"] {
    display: none !important;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-size: 58px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37;
    margin-bottom: 10px;
    letter-spacing: 4px;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    margin: 12px auto;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #D4AF37, #FF6B00);
    border-radius: 50px;
    animation: preloaderFill 1s ease forwards;
}

.preloader-text {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-top: 8px;
}

@keyframes preloaderFill {
    0%   { width: 0%; }
    100% { width: 100%; }
}

@keyframes preloaderPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(212,175,55,0.3);
    }
    50% { 
        transform: scale(1.08);
        text-shadow: 0 0 40px rgba(212,175,55,0.7);
    }
}
/* ============================================
   06. HEADER & NAVIGATION
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
}

/* Top Bar */
.top-bar {
    background: var(--navy);
    padding: 9px 0;
    border-bottom: 1px solid rgba(212,175,55,0.25);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.top-bar-left span {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-main);
    font-weight: 500;
}

.top-bar-left span i {
    color: var(--gold);
    font-size: 11px;
}

.top-bar-right {
    display: flex;
    gap: 8px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    background: rgba(212,175,55,0.1);
}

/* Main Navbar */
.navbar {
    background: rgba(10, 31, 68, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 40px rgba(0,0,0,0.4);
    background: rgba(10, 31, 68, 0.99);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 20px;
    color: var(--white);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo h1 span {
    color: var(--gold);
}

.logo p {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: var(--font-main);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-link {
    color: rgba(255,255,255,0.82);
    font-size: 12.5px;
    font-weight: 600;
    font-family: var(--font-main);
    padding: 8px 11px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(212,175,55,0.08);
}

.nav-link i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

/* Get Quote Button in Nav */
.btn-quote {
    background: linear-gradient(135deg, var(--orange), #ff8c00) !important;
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    font-size: 11.5px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 3px 15px rgba(255,107,0,0.35);
    margin-left: 6px;
}

.btn-quote:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255,107,0,0.5) !important;
    background: linear-gradient(135deg, #ff8c00, var(--orange)) !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 250px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    border-top: 3px solid var(--gold);
    z-index: 100;
}

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

.dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a i {
    color: var(--gold);
    width: 18px;
    font-size: 14px;
    text-align: center;
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--orange);
    padding-left: 28px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(255,255,255,0.08);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   07. HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video/Slide Overlay */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,31,68,0.88) 0%,
        rgba(10,31,68,0.65) 40%,
        rgba(0,0,0,0.72) 100%
    );
    z-index: 2;
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 10s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0%   { transform: scale(1) translateX(0); }
    100% { transform: scale(1.08) translateX(-1%); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 110px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.5);
    color: var(--gold);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-main);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(30px, 5vw, 62px);
    color: var(--white);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 850px;
}

.hero-subtitle {
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(255,255,255,0.82);
    margin-bottom: 42px;
    max-width: 680px;
    line-height: 1.85;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 65px;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.hero-stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(212,175,55,0.25);
    transition: var(--transition);
    min-width: 100px;
}

.hero-stat:hover {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.5);
    transform: translateY(-4px);
}

.hero-stat h3 {
    font-size: 30px;
    color: var(--gold);
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-main);
}

.hero-stat p {
    font-size: 11px;
    color: rgba(255,255,255,0.72);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
    font-family: var(--font-main);
    font-weight: 600;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    animation: scrollBounce 2.5s ease infinite;
}

.scroll-indicator:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.15);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* ============================================
   08. TICKER / MARQUEE
   ============================================ */
.ticker-wrap {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    padding: 13px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.ticker {
    display: flex;
    gap: 0;
    animation: tickerScroll 35s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker span {
    font-size: 12.5px;
    font-weight: 800;
    font-family: var(--font-main);
    color: var(--navy);
    letter-spacing: 1px;
    flex-shrink: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker span::after {
    content: '◆';
    font-size: 8px;
    opacity: 0.4;
    margin-left: 30px;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   09. ABOUT SECTION
   ============================================ */
.about {
    padding: 110px 0;
    background: var(--white);
    overflow: hidden;
}

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

/* About Images */
.about-images {
    position: relative;
    padding-bottom: 30px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-secondary {
    position: absolute;
    bottom: 0px;
    right: -25px;
    width: 210px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
    height: 145px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 35px;
    left: -18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 22px 26px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-experience-badge h3 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: var(--navy);
}

.about-experience-badge p {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
    color: var(--navy);
    font-family: var(--font-main);
}

/* About Content */
.about-content .section-title {
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-main);
    padding: 9px 14px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(212,175,55,0.12);
    transform: translateX(4px);
}

.feature-item i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* ============================================
   10. SERVICES SECTION
   ============================================ */
.services {
    padding: 110px 0;
    background: var(--light-gray);
}

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

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transition: width 0.5s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212,175,55,0.3);
}

.service-card:hover::after {
    width: 100%;
}

/* Service Icon */
.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(10,31,68,0.25);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: rotate(-5deg) scale(1.05);
    box-shadow: var(--shadow-gold);
}

.service-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--navy);
}

/* Service Number */
.service-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 52px;
    font-weight: 900;
    color: rgba(10,31,68,0.05);
    font-family: var(--font-main);
    line-height: 1;
    user-select: none;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(212,175,55,0.12);
}

.service-card h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 800;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--navy);
}

.service-card > p {
    color: var(--text-light);
    font-size: 13.5px;
    margin-bottom: 22px;
    line-height: 1.7;
}

/* Service List */
.service-list {
    margin-bottom: 28px;
    border-top: 1px solid var(--border-light);
    padding-top: 18px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px dashed var(--border-light);
    font-family: var(--font-main);
    font-weight: 600;
    transition: var(--transition);
}

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

.service-list li:hover {
    color: var(--navy);
    padding-left: 4px;
}

.service-list li i {
    color: var(--gold);
    font-size: 9px;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-list li:hover i {
    color: var(--orange);
}

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 800;
    font-family: var(--font-main);
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
    text-transform: uppercase;
    padding: 10px 0;
    border-top: 1px solid var(--border-light);
    width: 100%;
}

.service-btn:hover {
    color: var(--orange);
    gap: 14px;
}

.service-btn i {
    transition: var(--transition);
}

/* CTA Service Card */
.service-cta-card {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a55 50%, var(--navy-light) 100%);
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cta-card::before {
    background: linear-gradient(90deg, var(--gold), var(--orange));
}

.service-cta-card::after {
    display: none;
}

.service-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 10px 0;
}

.service-cta-content > i {
    font-size: 52px;
    color: var(--gold);
    animation: floatIcon 3s ease infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.service-cta-content h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
}

.service-cta-content > p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   11. COUNTER SECTION
   ============================================ */
.counter-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Counter Background */
.counter-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a55 50%, var(--navy-light) 100%);
}

.counter-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.counter-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 65%);
}

/* Counter Grid */
.counter-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    color: var(--white);
    padding: 38px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.18);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.counter-item:hover {
    background: rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.counter-item:hover::before {
    transform: scaleX(1);
}

.counter-item i {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    transition: var(--transition);
}

.counter-item:hover i {
    transform: scale(1.15);
    color: var(--gold-light);
}

.counter-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-item h3 {
    font-size: 54px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-main);
}

.counter-item span {
    font-size: 38px;
    color: var(--gold);
    font-weight: 900;
    font-family: var(--font-main);
}

.counter-item p {
    font-size: 12px;
    color: rgba(255,255,255,0.62);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-weight: 600;
}

/* ============================================
   12. GLOBAL PRESENCE
   ============================================ */
.global-presence {
    padding: 110px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.global-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* World Map */
.global-map {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}

.global-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--orange));
}

.world-map-img {
    width: 100%;
    height: auto;
    opacity: 0.75;
    filter: sepia(1) hue-rotate(185deg) saturate(1.5) brightness(0.9);
}

/* Map Markers */
.map-marker {
    position: absolute;
    cursor: pointer;
    z-index: 5;
}

.map-marker:hover .marker-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.25);
    animation: mapMarkerPulse 2.5s ease infinite;
    transition: var(--transition);
}

.map-marker:hover .marker-dot {
    transform: scale(1.4);
    background: var(--gold);
}

.marker-label {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%) translateY(3px);
    background: var(--navy);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 20px;
    white-space: nowrap;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.marker-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--navy);
}

@keyframes mapMarkerPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,107,0,0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}

/* Countries List */
.global-countries h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
    font-weight: 800;
}

.country-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-main);
    transition: var(--transition);
    border-left: 3px solid transparent;
    box-shadow: var(--shadow-sm);
    cursor: default;
}

.country-item:hover {
    border-left-color: var(--gold);
    transform: translateX(6px);
    box-shadow: var(--shadow);
    background: rgba(212,175,55,0.06);
}

.country-item i {
    color: var(--orange);
    font-size: 11px;
    flex-shrink: 0;
}

/* ============================================
   13. PROJECTS SECTION
   ============================================ */
.projects {
    padding: 110px 0;
    background: var(--white);
}

/* Filter Buttons */
.projects-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 10px 26px;
    border: 2px solid var(--border);
    background: transparent;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-main);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.filter-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 5px 20px rgba(10,31,68,0.3);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Project Card */
.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border);
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.project-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,31,68,0) 0%,
        rgba(10,31,68,0.85) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.project-category {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
}

.project-link {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 13px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.project-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
}

.project-info {
    padding: 22px;
}

.project-location {
    font-size: 11.5px;
    color: var(--orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-family: var(--font-main);
    letter-spacing: 0.3px;
}

.project-info h3 {
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 800;
    transition: var(--transition);
}

.project-card:hover .project-info h3 {
    color: var(--navy);
}

.project-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.projects-cta {
    text-align: center;
    margin-top: 55px;
}

/* ============================================
   14. INDUSTRIES SECTION
   ============================================ */
.industries {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a55 60%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(212,175,55,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.industries .section-label {
    background: rgba(212,175,55,0.2);
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: none;
}

.industries .section-title {
    color: var(--white);
}

.industries .section-header p {
    color: rgba(255,255,255,0.55);
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}

.industry-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius);
    padding: 35px 22px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(255,107,0,0.05));
    opacity: 0;
    transition: var(--transition);
}

.industry-card:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card i {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.industry-card:hover i {
    transform: scale(1.2) translateY(-4px);
    color: var(--gold-light);
}

.industry-card h4 {
    color: var(--white);
    font-size: 14.5px;
    font-family: var(--font-main);
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* ============================================
   15. TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 110px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
}

/* Testimonial Card */
.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 22px;
    font-size: 90px;
    color: var(--gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transition: width 0.5s ease;
}

.testimonial-card:hover::after {
    width: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}

.testimonial-author h4 {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 3px;
    font-weight: 800;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    font-family: var(--font-main);
}

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
}

.t-btn {
    width: 46px;
    height: 46px;
    border: 2px solid var(--navy);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy);
    font-size: 14px;
    transition: var(--transition);
}

.t-btn:hover {
    background: var(--navy);
    color: var(--gold);
    transform: scale(1.1);
}

.t-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background: var(--navy);
    width: 26px;
    border-radius: 4px;
}

/* ============================================
   16. CERTIFICATIONS
   ============================================ */
.certifications {
    padding: 90px 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.cert-item {
    text-align: center;
    padding: 28px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cert-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.cert-item:hover::before {
    transform: scaleX(1);
}

.cert-icon {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 14px;
    transition: var(--transition);
}

.cert-item:hover .cert-icon {
    transform: scale(1.15);
    color: var(--navy);
}

.cert-item h4 {
    font-size: 12.5px;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 800;
}

.cert-item p {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
}

/* ============================================
   17. WHY CHOOSE US
   ============================================ */
.why-us {
    padding: 110px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* Why Content */
.why-us-content .section-desc {
    margin: 0 0 10px;
    text-align: left;
    max-width: 100%;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.85;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-left-color: var(--gold);
}

.why-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 5px 18px rgba(10,31,68,0.22);
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: rotate(-5deg) scale(1.05);
}

.why-icon i {
    font-size: 22px;
    color: var(--gold);
    transition: var(--transition);
}

.why-item:hover .why-icon i {
    color: var(--navy);
}

.why-text h4 {
    font-size: 15.5px;
    color: var(--navy);
    margin-bottom: 6px;
    font-weight: 800;
}

.why-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Image */
.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.why-us-image:hover img {
    transform: scale(1.02);
}

.why-badge {
    position: absolute;
    bottom: 30px;
    left: -25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 22px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: var(--transition);
}

.why-badge:hover {
    transform: translateY(-5px) scale(1.03);
}

.why-badge i {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

.why-badge h3 {
    font-size: 16px;
    color: var(--navy);
    font-weight: 800;
}

.why-badge p {
    font-size: 11px;
    color: rgba(10,31,68,0.65);
    margin-top: 3px;
}

/* ============================================
   18. CAREERS SECTION
   ============================================ */
.careers {
    padding: 110px 0;
    background: var(--white);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 45px;
}

/* Career Card */
.career-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.career-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.career-icon {
    width: 54px;
    height: 54px;
    background: var(--light-gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.career-card:hover .career-icon {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.career-icon i {
    font-size: 22px;
    color: var(--navy);
    transition: var(--transition);
}

.career-card:hover .career-icon i {
    color: var(--gold);
}

.career-info {
    flex: 1;
    min-width: 0;
}

.career-info h4 {
    font-size: 15.5px;
    color: var(--navy);
    margin-bottom: 7px;
    font-weight: 800;
}

.career-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.career-location {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-main);
    font-weight: 500;
}

.career-location i {
    color: var(--orange);
    font-size: 10px;
}

.career-type {
    font-size: 10.5px;
    background: rgba(10,31,68,0.07);
    color: var(--navy);
    padding: 3px 11px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-family: var(--font-main);
    letter-spacing: 0.3px;
}

.career-apply {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
    text-transform: uppercase;
}

.career-apply:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.careers-cta {
    text-align: center;
    padding: 40px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border);
}

.careers-cta p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 15px;
}

/* ============================================
   19. NEWS SECTION
   ============================================ */
.news {
    padding: 110px 0;
    background: var(--light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* News Card */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.news-img {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--orange), #ff8c00);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 10.5px;
    font-weight: 800;
    font-family: var(--font-main);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(255,107,0,0.4);
}

.news-content {
    padding: 26px;
}

.news-date {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-family: var(--font-main);
    font-weight: 500;
}

.news-date i {
    color: var(--gold);
}

.news-content h4 {
    font-size: 16.5px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.45;
    font-weight: 800;
    transition: var(--transition);
}

.news-card:hover .news-content h4 {
    color: var(--orange);
}

.news-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 18px;
}

.news-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 800;
    font-family: var(--font-main);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-read:hover {
    color: var(--orange);
    gap: 13px;
}

/* ============================================
   20. CONTACT SECTION
   ============================================ */
.contact {
    padding: 110px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 65px;
    margin-bottom: 55px;
}

/* Contact Info */
.contact-info h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 15px;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.contact-item:hover {
    border-left-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 18px rgba(10,31,68,0.2);
}

.contact-icon i {
    color: var(--gold);
    font-size: 16px;
}

.contact-item h4 {
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-social a:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--navy);
    font-family: var(--font-main);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10,31,68,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230A1F44' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* ============================================
   21. FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--orange), var(--gold), var(--navy));
}

.footer-main {
    padding: 90px 0 45px;
}

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

/* Footer Brand */
.footer-brand h2 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.footer-brand h2 span {
    color: var(--gold);
}

.footer-tagline {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px !important;
    font-family: var(--font-main);
    font-weight: 700;
    opacity: 0.85;
}

.footer-brand > p:not(.footer-tagline) {
    color: rgba(255,255,255,0.42);
    font-size: 13.5px;
    line-height: 1.85;
    margin-bottom: 24px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212,175,55,0.35);
}

/* Footer Headings */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Footer Link Lists */
.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255,255,255,0.42);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    line-height: 1.5;
}

.footer-links ul li a i,
.footer-services ul li a i {
    color: var(--gold);
    font-size: 9px;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.footer-links ul li a:hover i,
.footer-services ul li a:hover i {
    color: var(--orange);
}

/* Footer Contact */
.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-contact-item:last-of-type {
    border-bottom: none;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item p {
    color: rgba(255,255,255,0.42);
    font-size: 13px;
    line-height: 1.6;
}

/* Newsletter */
.footer-newsletter h5 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 12px;
    margin-top: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255,255,255,0.06);
    border: none;
    outline: none;
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.25);
}

.newsletter-form button {
    padding: 12px 16px;
    background: var(--gold);
    border: none;
    color: var(--navy);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background: var(--orange);
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.3);
    font-size: 12.5px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ============================================
   22. BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 6px 25px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 2px solid var(--gold);
    font-size: 14px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-color: var(--white);
}

/* ============================================
   23. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Reveal Classes */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   24. RESPONSIVE / MEDIA QUERIES
   ============================================ */

/* XL - 1280px */
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 35px;
    }
}

/* LG - 1100px */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-grid {
        gap: 50px;
    }
    .why-us-grid {
        gap: 50px;
    }
}

/* MD - 1024px */
@media (max-width: 1024px) {
    .about-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .global-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-img-secondary {
        right: 10px;
    }
    .about-experience-badge {
        left: -5px;
    }
    .why-badge {
        left: 20px;
        bottom: 20px;
    }
}

/* SM - 768px */
@media (max-width: 768px) {

    /* Hide top bar */
    .top-bar {
        display: none;
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile Nav */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 31, 68, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        gap: 4px;
        transition: left 0.4s ease;
        overflow-y: auto;
        z-index: 9998;
        border-top: 2px solid var(--gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 13px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        border-radius: 0;
        font-size: 14px;
    }

    .btn-quote {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 10px;
        margin-left: 0 !important;
        padding: 14px 20px !important;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: var(--radius-sm);
        padding: 8px;
        margin-top: 5px;
        display: none;
        border-top: none;
        border-left: 2px solid var(--gold);
        margin-left: 15px;
    }

    .dropdown-menu li a {
        color: rgba(255,255,255,0.65);
        padding: 9px 14px;
        font-size: 13px;
    }

    .dropdown-menu li a:hover {
        color: var(--gold);
        background: rgba(212,175,55,0.08);
    }

    /* Hero */
    .hero-title {
        font-size: clamp(26px, 7vw, 38px);
    }

    .hero-subtitle {
        font-size: 14px;
    }

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

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-stat h3 {
        font-size: 24px;
    }

    /* About */
    .about-img-secondary {
        display: none;
    }

    .about-experience-badge {
        left: 10px;
        top: 15px;
    }

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

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .counter-item h3 {
        font-size: 40px;
    }

    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 100%;
    }

    /* Certs */
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why */
    .why-badge {
        position: static;
        display: inline-block;
        margin-top: 20px;
        left: auto;
        bottom: auto;
    }

    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Careers */
    .careers-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* XS - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .counter-item {
        padding: 25px 16px;
    }

    .counter-item h3 {
        font-size: 36px;
    }

    .hero-stat {
        padding: 12px 16px;
    }

    .section-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .about,
    .services,
    .projects,
    .industries,
    .testimonials,
    .certifications,
    .why-us,
    .careers,
    .news,
    .contact {
        padding: 70px 0;
    }

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

    .global-presence {
        padding: 70px 0;
    }

    .footer-main {
        padding: 60px 0 35px;
    }

    .contact-form-wrapper {
        padding: 22px 16px;
    }

    .testimonial-controls {
        margin-top: 28px;
    }

    .about-img-main img {
        height: 300px;
    }

    .why-us-image img {
        height: 300px;
    }

    .career-card {
        flex-wrap: wrap;
    }

    .career-apply {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-buttons .btn-primary,
    .about-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Very Small - 360px */
@media (max-width: 360px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

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

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

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

    .logo h1 {
        font-size: 16px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    #preloader,
    #header,
    .back-to-top,
    .hero-scroll,
    .ticker-wrap {
        display: none !important;
    }

    body {
        color: #000;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    section {
        page-break-inside: avoid;
    }
}