/* ===== Base Styles ===== */
:root {
    /* Primary Colors */
    /* Warm Earth palette (C) */
    --primary-color: #b46918; /* warm ochre */
    --primary-dark: #9a4f10;
    --primary-light: #d27e2a;
    
    /* Secondary Colors */
    --secondary-color: #0f172a; /* dark slate */
    --secondary-dark: #0b1220;
    --secondary-light: #334155;
    
    /* Neutral Colors */
    --dark-color: #1e293b;
    --dark-gray: #334155;
    --medium-gray: #64748b;
    --light-gray: #e2e8f0;
    --light-color: #f8fafc;
    --white: #ffffff;
    
    /* Accent Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: var(--primary-light);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-unit: 1rem;
    --space-xs: calc(0.5 * var(--space-unit));
    --space-sm: calc(0.75 * var(--space-unit));
    --space-md: calc(1.25 * var(--space-unit));
    --space-lg: calc(2 * var(--space-unit));
    --space-xl: calc(3.25 * var(--space-unit));
    
    /* Container */
    --container-width: 1200px;
    --section-padding: 6rem 0;
}

/* ===== Base Elements ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

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

a:hover {
    color: var(--secondary-color);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #e05d1a;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== Global Reset ===== */
ul, ol, li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove any potential pseudo-elements causing dots */
.navbar::before,
.navbar::after,
.navbar *::before,
.navbar *::after {
    content: none !important;
    display: none !important;
}

/* Ensure no list markers are shown */
.navbar ul,
.navbar ol,
.navbar li {
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
}

/* Remove any default browser styling */
nav {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-padding-start: 0;
}

/* ===== Dropdown Menu ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

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

.dropdown-content a {
    color: var(--dark-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background-color: rgba(180, 105, 24, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== Navigation ===== */
/* ===== Navigation Bar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 90px;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

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

.container {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    height: 100%;
    padding: 0;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 3.5rem;
    width: auto;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    margin-bottom: 2px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.5rem;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
    gap: 0.5rem;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    padding: 0 1rem;
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.6rem;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 50%;
}

.nav-link.btn {
    background: var(--primary-color);
    color: white !important;
    border-radius: 4px;
    padding: 0.5rem 1.25rem !important;
    margin-left: 0.5rem !important;
    height: auto;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
}

.nav-link.btn:hover {
    background: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 105, 24, 0.15);
}

.nav-link.btn::after {
    display: none;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 60%;
}

.nav-contact-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    margin-left: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-contact-btn:hover {
    background: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    transition: var(--transition);
    transform-origin: center;
}

/* Scrolled State */
.navbar.scrolled {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-img {
    height: 3.2rem;
}

.navbar.scrolled .logo-title {
    font-size: 1.7rem;
}

.navbar.scrolled .logo-subtitle {
    font-size: 0.75rem;
}

.navbar.scrolled .nav-link {
    padding: 0.7rem 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .navbar .container {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
        
        .nav-link {
            padding: 0 1.2rem;
        }
    }
    
    /* Mobile Menu Styles */
@media (max-width: 992px) {
    .navbar {
        height: 80px;
        padding: 0 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 6rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        margin: 0.5rem 2rem;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        text-align: left;
        transition: all 0.3s ease;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background-color: rgba(180, 105, 24, 0.05);
        transform: translateX(5px);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(0.7rem) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-0.7rem) rotate(-45deg);
    }
    
    .navbar.scrolled {
        height: 70px;
    }
        
        .container {
            padding: 0 2rem;
        }
        
        .menu-toggle {
            display: flex;
            z-index: 1002;
        }
        
        .nav-container {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: white;
            padding: 120px 0 40px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            overflow-y: auto;
        }
        
        .nav-container.active {
            right: 0;
        }
        
        .nav-links {
            flex-direction: column;
            height: auto;
            padding: 0 2rem;
        }
        
        .nav-links li {
            width: 100%;
            height: auto;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .nav-link {
            padding: 1.2rem 0;
            font-size: 1.1rem;
        }
        
        .nav-link.btn {
            justify-content: center;
            margin: 1.5rem 0 0;
            padding: 0.8rem 2rem;
            display: inline-flex;
            width: auto;
        }
        
        .logo-img {
            height: 60px;
        }
        
        .logo-title {
            font-size: 1.6rem;
        }
        
        .logo-subtitle {
            font-size: 0.8rem;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }
    }
        
        &::before {
            content: '';
            display: inline-block;
            width: 0.5rem;
            height: 0.5rem;
            background: var(--secondary-color);
            border-radius: 50%;
            margin-right: 0.25rem;
        }
    
    
    .nav-links {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        gap: 1.5rem;
    }
    
    @media (max-width: 992px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: #fff;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s ease-in-out;
            z-index: 999;
        }
        
        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
        }
    }
        
    .nav-links li {
        position: relative;
    }
    
    .nav-links a {
        color: var(--dark-color);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        position: relative;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-color);
        background-color: rgba(180, 105, 24, 0.08);
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 60%;
    }
    
    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--dark-color);
        border-radius: 1px;
        transition: var(--transition);
        transform-origin: center;
    }
    
    .menu-toggle span:nth-child(1) {
        transform: translateY(0) rotate(0);
    }
    
    .menu-toggle span:nth-child(2) {
        opacity: 1;
    }
    
    .menu-toggle span:nth-child(3) {
        transform: translateY(0) rotate(0);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }
    
    @media (max-width: 992px) {
        .menu-toggle {
            display: flex;
        }
    }

/* Mobile specific adjustments */
@media (max-width: 576px) {
    .navbar {
        height: 75px;
        padding: 0 1.25rem;
    }
    
    .logo-title {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
    }
    
    .logo-img {
        height: 2.8rem;
        margin-right: 0.7rem;
    }
    
    .navbar .container {
        padding: 0;
    }
    
    .nav-links {
        width: 100%;
        padding-top: 5.5rem;
    }
    
    .nav-link {
        margin: 0.3rem 1.25rem;
        padding: 0.9rem 1.25rem;
        font-size: 1rem;
    }
    
    .navbar.scrolled {
        height: 65px;
    }
    
    .navbar.scrolled .logo-img {
        height: 2.6rem;
    }
    
    .navbar.scrolled .logo-title {
        font-size: 1.3rem;
    }
    
    .navbar.scrolled .logo-subtitle {
        font-size: 0.58rem;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    text-decoration: none;
}

.logo-img {
    height: 60px; /* Increased logo size */
    width: auto;
    object-fit: contain;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
    padding: 0;
    transition: color 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-contact-btn {
    background: transparent !important;
    color: var(--dark-color) !important;
    padding: 0 1rem !important;
    margin-left: 0 !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-contact-btn:hover {
    background-color: rgba(180, 105, 24, 0.08) !important;
    color: var(--primary-color) !important;
    transform: none !important;
    box-shadow: none !important;
}

.nav-contact-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.6rem;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-contact-btn:hover::after,
.nav-contact-btn.active::after {
    width: 50%;
}

@media (max-width: 992px) {
    .nav-contact-btn {
        margin: 0 !important;
        padding: 10px 0 !important;
        display: block;
        text-align: left;
        height: auto;
    }
    
    .nav-contact-btn::after {
        display: none;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 0;
    margin: 0;
    margin-top: 0 !important;
}

/* Ensure all hero/page-header sections start from top with no gap */
.page-header,
.service-hero,
.careers-hero,
.apply-hero,
.contact-page-header {
    margin-top: 0 !important;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    margin: 0;
    padding: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Container styles */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

    /* small decorative sticker positioned behind content */
    .hero-sticker {
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 180px;
        height: auto;
        opacity: 0.82;
        z-index: 1; /* behind container (container z-index:2) */
        pointer-events: none;
        filter: drop-shadow(0 12px 30px rgba(0,0,0,0.08)) saturate(0.95);
    }
    
    h1 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        animation: fadeInUp 1s ease-out;
        
        @media (max-width: 768px) {
            font-size: 2.5rem;
        }
        
        @media (max-width: 480px) {
            font-size: 2rem;
        }
    }
    
    p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        opacity: 0.9;
        line-height: 1.8;
        animation: fadeInUp 1s ease-out 0.2s both;
        
        @media (max-width: 768px) {
            font-size: 1.1rem;
        }
    }
    
    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.4s both;
    }
    
    .cta-buttons .btn {
        min-width: 180px;
        padding: 0.875rem 2rem;
        border-radius: var(--radius-full);
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .cta-buttons .btn i {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }
    
    .cta-buttons .btn:active {
        transform: translateY(1px);
        box-shadow: var(--shadow-sm);
    }
    
    .cta-buttons .btn.btn-primary {
        background: var(--white);
        color: var(--primary-color);
    }
    
    .cta-buttons .btn.btn-primary:hover {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .cta-buttons .btn.btn-secondary {
        background: var(--secondary-color);
        color: var(--white);
    }
    
    .cta-buttons .btn.btn-secondary:hover {
        background: var(--secondary-dark);
    }
    
    .scroll-down {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        color: var(--white);
        font-size: 2rem;
        animation: bounce 2s infinite;
        cursor: pointer;
        z-index: 2;
        opacity: 0.8;
        transition: var(--transition);
        
        &:hover {
            opacity: 1;
            transform: translate(-50%, 5px);
        }
    }


/* Pre-hero video (full-bleed) */
.prehero-video {
    width: 100vw;
    height: var(--prehero-height, 80vh);
    overflow: hidden;
    position: relative;
    display: block;
}

.prehero-video__media {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .prehero-video { height: 60vh; }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-buttons {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 360px;
    position: relative;
    margin-top: -30px;
    align-self: flex-start;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
}

/* Constrain the about image/sticker fallback to a reasonable width */
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}



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

/* Projects Section */
.projects {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Project Overview Stats */
/* Project Overview Stats */
.project-stats {
    position: relative;
    padding: 48px 0;
    /* Full-page static background using user-provided image.png placed in /images/ */
    background-image: url('../images/image.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* keep background visually static while scrolling on supporting browsers */
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}

.project-stats::before {
    /* overlay to darken image and preserve text contrast */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(180,105,24,0.5), rgba(15,23,42,0.6));
    z-index: 0;
    pointer-events: none;
}

.project-stats .stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    align-items: center;
}

.project-stats .stat {
    text-align: center;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-stats .stat-number {
    font-size: 2.25rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    min-height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.project-stats .stat-label {
    color: white;
    font-weight: 600;
    line-height: 1.5;
    min-height: 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Mobile / Safari fallback: background-attachment:fixed is not well supported on some mobile browsers */
@media (max-width: 768px) {
    .project-stats {
        background-attachment: scroll;
    }
    
    .project-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .project-stats .stat {
        padding: 15px 10px;
    }
    
    .project-stats .stat-number {
        font-size: 1.8rem;
    }
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 80px 0;
}

.services .section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.services-wrapper {
    position: relative;
    margin-top: 40px;
    width: 100%;
    padding: 60px 80px 80px;
    min-height: 400px;
}

.services .services-grid {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 40px 60px;
    width: 100%;
    will-change: scroll-position;
}

.services .services-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.services-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-scroll-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.services-scroll-left {
    left: 20px;
}

.services-scroll-right {
    right: 20px;
}

.services-scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.service-card {
    background: linear-gradient(180deg, #ffffff, #fbfbff);
    border-radius: 14px;
    padding: 32px 26px;
    box-shadow: 0 8px 30px rgba(16,24,40,0.06);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s;
    text-align: left;
    position: relative;
    overflow: visible;
    min-height: 280px;
    flex: 0 0 300px; /* Fixed width, no shrinking or growing */
    width: 300px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 25px 60px rgba(16,24,40,0.2);
    z-index: 10;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color), rgba(180,105,24,0.85));
    box-shadow: 0 8px 20px rgba(37,99,235,0.12);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 18px;
    line-height: 1.5;
}

.service-cta {
    display: inline-block;
    padding: 8px 14px;
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(37,99,235,0.12);
    transition: all 0.25s ease;
}

.service-cta:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 992px) {
    .services-wrapper {
        padding: 50px 60px 70px;
        min-height: 380px;
    }
    
    .services .services-grid {
        padding: 35px 40px;
    }
    
    .services-scroll-left {
        left: 10px;
    }
    
    .services-scroll-right {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .services-wrapper {
        padding: 40px 50px 60px;
        min-height: 360px;
    }
    
    .services .services-grid {
        padding: 30px 30px;
    }
    
    .services-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .services-scroll-left {
        left: 5px;
    }
    
    .services-scroll-right {
        right: 5px;
    }
    
    .service-icon { width: 56px; height: 56px; }
    
    .service-card {
        flex: 0 0 280px;
        width: 280px;
        min-height: 260px;
        padding: 28px 22px;
    }
    
    .service-card:hover {
        transform: translateY(-8px) scale(1.1);
    }
}

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

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-divider {
    height: 3px;
    width: 80px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transform: translateY(-40px);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(180,105,24,0.14);
}

.project-content {
    padding: 0 30px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.project-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
    transition: all 0.5s ease;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.project-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
}

.project-features i {
    color: var(--success);
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===== Preloader & Utility ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader .spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1500;
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Small success message for forms */
.form-success {
    display: none;
    background: var(--success);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 12px;
}

/* Ensure body has no unexpected top gap when navbar is fixed */
/* Body top padding is set dynamically in JS to match navbar height */

/* Clients Section */
.clients {
    background-color: var(--light-color);
    text-align: center;
}


/* Marquee-style clients carousel */
.clients-marquee {
    overflow: hidden;
    margin-top: 36px;
    padding: 18px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 22px;
    /* will be animated with translateX */
}

.marquee-group {
    display: flex;
    gap: 22px;
    align-items: center;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    min-height: 180px;
    padding: 14px 18px;
    background: linear-gradient(180deg,#ffffff,#fffaf5);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16,24,40,0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-sizing: border-box;
}

.client-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(16,24,40,0.12); }

.client-media {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 6px 18px rgba(16,24,40,0.06);
}

.client-media img {
    max-width: 78px;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    padding: 8px;
}

.client-name {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    width: 100%;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Animation: slow continuous leftward scroll. We use CSS animation on the track.
   Duplicate groups allow seamless looping. */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* The animation duration controls speed. Make it very slow for a subtle effect. */
.marquee-track {
    animation: marquee-scroll 36s linear infinite;
}

/* Pause animation on hover for accessibility so users can inspect logos */
.clients-marquee:hover .marquee-track { animation-play-state: paused; }

/* Responsive: reduce card size on small screens */
@media (max-width: 768px) {
    .client-card { 
        width: 160px; 
        min-height: 150px;
        padding: 12px; 
    }
    .client-media { width: 76px; height: 76px; }
    .client-media img { 
        max-width: 60px; 
        max-height: 60px; 
        width: auto;
        height: auto;
    }
}

/* Generic card base used across the site */
.card {
    background: linear-gradient(180deg, #ffffff, #fffaf5);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(16,24,40,0.06);
}

/* Tweak shadows for client cards to be subtle */
.client-logo.card {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(180deg,#fff,#fffaf5);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(16,24,40,0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(180,105,24,0.12);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Form validation styles */
.form-control.error {
    border-color: var(--danger);
}

.error-message {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f0fdf4;
    border-radius: 6px;
    margin-top: 20px;
    color: var(--success);
    border: 1px solid #bbf7d0;
}

/* Error messages */
.error-message {
    display: none;
    color: var(--danger);
    font-size: 0.9rem;
    margin-top: 6px;
}

/* Modal for success */
.form-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    background: rgba(3,6,23,0.45);
}
.form-modal[aria-hidden="false"] { display: flex; }
.form-modal-content {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(16,24,40,0.18);
}
.form-modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: var(--dark-color);
    cursor: pointer;
}
.form-modal .form-modal-ok { margin-top: 18px; }

/* Accessibility helper */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Contact layout: two-column on wide screens */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(180deg,#fffaf0,#fff);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(16,24,40,0.05);
}

.contact-info h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}

.btn-submit i { margin-left: 8px; }

@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; }
    .hero-sticker { display: none; }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-section p {
    margin-bottom: 15px;
    color: #b3b3b3;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b3b3b3;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    margin-right: 12px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo .logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}

.footer-logo .logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links .social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(180, 105, 24, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #b3b3b3;
    font-size: 0.9rem;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .stat-item, .project-stat {
        min-width: 150px;
    }
    
    .stat-number, .project-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 60px;
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
    
    .stat-item, .project-stat {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* ===== Floating Contact Button ===== */
.floating-contact-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    min-width: 140px;
    height: 52px;
    padding: 0 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: var(--transition);
    z-index: 9999;
    cursor: pointer;
}

.floating-contact-btn .fc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    font-size: 16px;
}

.floating-contact-btn .fc-text {
    display: inline-block;
}

.floating-contact-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Responsive floating button */
@media (max-width: 768px) {
    .floating-contact-btn {
        min-width: 120px;
        height: 48px;
        bottom: 18px;
        right: 18px;
        font-size: 15px;
        gap: 8px;
    }
    .floating-contact-btn .fc-icon { width: 30px; height: 30px; }
}

/* ===== Projects Section ===== */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.project-card {
    background: linear-gradient(180deg, #ffffff, #fbfbfb);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(17,24,39,0.12); }

.project-media {
    position: relative;
    min-height: 160px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.project-badge {
    position: absolute;
    left: 16px;
    top: 14px;
    background: rgba(255,255,255,0.94);
    color: var(--primary-dark);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(17,24,39,0.06);
}

.project-count {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    padding: 8px 12px;
    border-radius: 8px;
    margin-left: auto;
    color: var(--primary-dark);
    font-weight: 700;
}

.project-count .count { font-size: 20px; color: var(--primary-color); }

.project-info { padding: 20px 18px 22px; }

.project-title { margin: 0 0 10px 0; font-size: 20px; }

.project-desc { color: var(--dark-gray); margin-bottom: 12px; line-height: 1.5; }

.project-tags { list-style: none; padding: 0; margin: 0 0 14px 0; display: flex; gap: 10px; flex-wrap:wrap }
.project-tags li { background: rgba(15,23,42,0.04); padding:6px 10px; border-radius:6px; color:var(--medium-gray); font-weight:600; font-size:13px }

.project-actions { display:flex; gap:12px }
.btn { padding:8px 14px; border-radius:8px; text-decoration:none; display:inline-block; font-weight:600 }
.btn-primary { background:var(--primary-color); color:white }
.btn-outline { border:2px solid rgba(17,24,39,0.06); color:var(--dark-color); background:transparent }
.btn-outline:hover { background: rgba(17,24,39,0.03) }

@media (max-width: 1100px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .project-grid { grid-template-columns: 1fr; } .project-media { min-height: 140px } }

/* CTA Section Styles - Reusable across all pages */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9a4f10 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* CTA Button Styles */
.cta-section .btn,
.cta-section .btn-white {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* CTA Button Hover Effect */
.cta-section .btn:hover,
.cta-section .btn-white:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .cta-section .btn,
    .cta-section .btn-white {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

