﻿/* =========================================
   ROOT VARIABLES - Single Source of Truth
   ========================================= */
:root {
    /* Colors */
    --primary-orange: #FF6B00;
    --primary-red: #D63031;
    --primary-orange-red: #FF4500;
    --primary-orange-light: #ff863a;
    --primary-orange-dark: #e85a00;
    --dark-bg: #0a0a0c;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --text-white: #ffffff;
    --text-muted: #d1d1d1;
    --border-color: rgba(255, 255, 255, 0.1);
    /* Gradients */
    --tech-gradient: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    --dm-gradient: linear-gradient(135deg, #2b0a0a 0%, #521414 50%, #1a0505 100%);
    /* Globe Variables */
    --icon-size: 60px;
    --globe-radius: 160px;
    --svg-size: 30px;
    /* Backgrounds */
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(20, 20, 25, 0.7);
    --deep-red-bg: #1a0505;
}

/* =========================================
   GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #1a060be8;
    scroll-behavior: smooth;
    background-attachment: fixed;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-orange-red) !important;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
    color: var(--text-white);
}



@media (max-width: 1280px) {
    h2 {
        font-size: 24px;
    }
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #f8f9fa;
    text-align: justify;
    font-size: 16px !important;
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: break-word;
}

.lead {
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    font-family: monospace;
}

.text-muted {
    --bs-text-opacity: 1;
    color: white !important;
}

.text-white {
    color: var(--primary-orange) !important;
    font-weight: 800;
}

.text-white1 {
    color: white !important;
    font-weight: 800;
}

/* =========================================
   TOP BAR - FIXED
   ========================================= */
.top-bar {
    background: #2e1d21;
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    z-index: 1060;
    top: 0;
}

    .top-bar a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 500;
        transition: opacity 0.2s;
    }

        .top-bar a:hover {
            opacity: 0.8;
        }

    .top-bar .bi {
        font-size: 1rem;
        display: inline-block !important;
    }

/* =========================================
   NAVBAR - COMPLETELY FIXED
   ========================================= */
.navbar {
    background-color: #ffffff !important;
    backdrop-filter: blur(50px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
    z-index: 1050;
    transition: all 0.3s ease;
    margin-top: 38px; /* CRITICAL: This creates space below top-bar */
}

    /* Override any Bootstrap dark navbar classes */
    .navbar-dark,
    .navbar[data-bs-theme=dark] {
        background-color: #ffffff !important;
    }

.navbar-brand {
    font-weight: 800;
    font-size: 1.2rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}



    .navbar-brand span {
        background: var(--tech-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.logo {
    width: 250px;
}

.nav-link {
    font-weight: 700;
    color: #d73b2f !important;
    margin: 0 14px;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

    .nav-link:hover,
    .nav-link.active {
        color: #f6661f !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-red);
        transition: width 0.3s;
    }

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #d73b2f !important;
}

.nav-link:hover::after {
    width: 100%;
}

/*.navbar-toggler {
    line-height: 1;
    color: black;
    background-color: orange;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}*/

/* Fix for mobile navbar toggler */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

.custom-toggler {
    border: none;
    background: linear-gradient(135deg,#ff7a00,#ffb347);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* hamburger lines */
.toggler-icon {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: all .4s ease;
}

/* hover effect */
.custom-toggler:hover {
    transform: scale(1.05);
}

/* animation when menu opens */
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

.custom-toggler {
    box-shadow: 0 0 10px rgba(255,122,0,.6);
}

/* =========================================
   DROPDOWN MENU - FIXED
   ========================================= */
.dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    margin-top: 0;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .4s ease;
}

/* dropdown animation */
@media (min-width:992px) {

    .navbar .dropdown {
        position: relative;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all .4s ease;
        pointer-events: none;
        top: 100%;
    }

    /* open dropdown */
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* keep dropdown active when hovering menu itself */
    .navbar .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }


}

/* dropdown items */
.dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
}

    /* hover effect */
    .dropdown-item:hover {
        background: linear-gradient(90deg,#f0823f,#f37235);
        color: #fff;
        transform: translateX(5px);
    }

    /* icon animation */
    .dropdown-item i {
        color: #f37235;
        transition: .3s;
    }

    .dropdown-item:hover i {
        color: #fff;
    }

/* arrow animation */
.bi-chevron-down {
    transition: transform .4s ease;
}

.navbar .dropdown:hover .bi-chevron-down {
    transform: rotate(180deg);
}
@media (max-width: 991px) {

    .navbar .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        margin-top: 5px;
    }

    .navbar .dropdown.show .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 12px 18px;
        font-size: 15px;
    }

        .dropdown-item:hover {
            background: #f0823f;
            color: #fff;
        }

    .bi-chevron-down {
        transition: transform .3s ease;
    }

    .dropdown.show .bi-chevron-down {
        transform: rotate(180deg);
    }
}

/* =========================================
   HERO SECTION - FIXED PADDING
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 100px; /* CRITICAL: Space for fixed header */
    overflow: hidden;
    color: white;
}

.hero-content-left {
    z-index: 3;
    padding-bottom: 50px;
}

.hero-badge {
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem !important;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffffb8 !important;
    -webkit-text-stroke: #ff6a006e;
}

    .hero-title span {
        background: var(--tech-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-desc {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
    text-align: justify;
}

/* =========================================
   ABOUT HERO SECTION
   ========================================= */
.about-hero {
    padding: 140px 0 0px;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

    .about-hero h1 {
        color: #ffffff !important;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
    }

        .about-hero h1 span {
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

@media (max-width: 1280px) {
    .about-hero h1 {
        font-size: 30px;
        text-align: left;
    }
}

.about-badge {
    background: rgba(255, 69, 0, 0.15);
    border: 1px solid var(--primary-orange-red);
    color: var(--primary-orange-red);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

/* =========================================
   HERO BOTTOM IMAGE & GLOBE
   ========================================= */
.hero-bottom-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .hero-bottom-image-wrapper img {
        width: 100%;
    }

.globe-scene {
    position: absolute;
    top: 30%;
    left: -6%;
    width: 500px;
}

.globe {
    transform-style: preserve-3d;
    animation: rotateGlobe 25s linear infinite;
}

.globe-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--icon-size, 60px);
    height: var(--icon-size, 60px);
    margin-top: calc(var(--icon-size, 60px) / -2);
    margin-left: calc(var(--icon-size, 60px) / -2);
    background: rgba(20, 20, 20, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
    backface-visibility: hidden;
    transform: rotateY(var(--r, 0deg)) translateZ(225px);
}

    .globe-icon svg {
        width: var(--svg-size, 30px);
        height: var(--svg-size, 30px);
    }

@keyframes rotateGlobe {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }

    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

/* Icon Colors - CRITICAL */
.icon-html5 {
    color: #E34F26;
}

.icon-css3 {
    color: #1572B6;
}

.icon-js {
    color: #F7DF1E;
}

.icon-react {
    color: #61DAFB;
}

.icon-python {
    color: #3776AB;
}

.icon-angular {
    color: #DD0031;
}

.icon-git {
    color: #F05032;
}

.icon-docker {
    color: #0db7ed;
}

.icon-vue {
    color: #42b883;
}

.icon-node {
    color: #339933;
}

.icon-java {
    color: #007396;
}

.icon-sql {
    color: #336791;
}

.icon-youtube {
    color: #FF0000;
}

.icon-whatsapp {
    color: #25D366;
}

.icon-facebook {
    color: #1877F2;
}

.icon-twitter {
    color: #1DA1F2;
}

.icon-linkedin {
    color: #0077b5;
}



@media (max-width: 991.98px) {
    /* Hide the original description and buttons from the title column */
    .hero-section .hero-content-left .hero-bottom {
        display: none;
    }

    /* Create new containers for description and buttons after the robot */
    .hero-section .col-lg-5 {
        position: relative;
    }

        /* Add description and buttons after the robot using JavaScript or duplicate content */
        .hero-section .col-lg-5::after {
            display: none; /* We'll use JavaScript for better control */
        }

    /* Restructure the hero section */
    .hero-section .row.align-items-center {
        display: flex;
        flex-direction: column;
    }

    /* Move title column first */
    .hero-section .col-lg-7.hero-content-left {
        order: 1;
        width: 100%;
        margin-bottom: 0px;
    }

    /* Move robot + globe column second */
    .hero-section .col-lg-5 {
        order: 2;
        width: 100%;
        margin: 20px 0;
    }

    /* Adjust robot image for mobile */
    .hero-bottom-image-wrapper {
        position: relative;
        max-width: 450px;
        margin: 0 auto;
    }

        .hero-bottom-image-wrapper img {
            width: 100%;
            height: auto;
            max-height: 250px;
            object-fit: contain;
        }

    /* Center the globe with robot */
    .globe-scene {
        position: absolute;
        top: 30%;
        left: 50% !important;
        transform: translateX(-50%);
        width: 380px;
        max-width: 90%;
    }

    /* Adjust globe icons for mobile */
    .globe-icon {
        --icon-size: 40px;
        transform: rotateY(var(--r, 0deg)) translateZ(120px) !important;
    }

        .globe-icon svg {
            width: 25px;
            height: 25px;
        }

    /* Center text alignment for title */
    .hero-section .hero-title,
    .hero-section .hero-badge {
        text-align: center;
    }

    /* Style for the new description section */
    .hero-mobile-description {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

        .hero-mobile-description .hero-subtitle {
            color: white;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            text-align: center;
        }

        .hero-mobile-description .d-flex {
            justify-content: center !important;
        }

    /* Adjust spacing */
    .hero-section {
        padding-top: 120px;
        padding-bottom: 50px;
    }
}

/* Small Mobile Devices */
@media (max-width: 575.98px) {
    .globe-scene {
        width: 320px;
    }

    .globe-icon {
        --icon-size: 35px;
        transform: rotateY(var(--r, 0deg)) translateZ(100px) !important;
    }

        .globe-icon svg {
            width: 20px;
            height: 20px;
        }

    .hero-bottom-image-wrapper img {
        max-height: 200px;
    }
}



/* =========================================
   BUTTONS
   ========================================= */
.btn-custom {
    background: var(--tech-gradient);
    border: none;
    padding: 8px 20px;
    color: white !important;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 10;
}

    .btn-custom:hover {
        transform: translateY(-2px);
        background: var(--tech-gradient);
        border: none;
        padding: 8px 20px;
        color: white !important;
        font-weight: 600;
        border-radius: 4px;
       
        position: relative;
        z-index: 10;
    }

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn-connect {
    background-color: #f1f3f5;
    color: #495057;
    border: 1px solid #dee2e6;
    padding: 8px 25px;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

    .btn-connect:hover {
        background-color: #e9ecef;
        color: #333;
    }

.btn-main {
    background: #ff8c00;
    color: #000;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
}

/* =========================================
   SECTIONS
   ========================================= */
.about-section {
    padding: 40px 0;
    position: relative;
}

.services-section {
    padding: 20px 0;
    position: relative;
    margin-top: 15px;
}

.industries-preview {
    padding: 60px 0;
}

.testimonials-section {
    padding: 15px 0;
}

.clients-section {
    padding: 60px 0;
    background: #0f1014;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

    .clients-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-orange-red), transparent);
        opacity: 0.5;
    }


.about-section-modern {
    padding: 80px 0;
    position: relative;
   
    overflow: hidden;
}

/* Container Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Stats */
.about-stats-left {
    position: relative;
}

.years-badge {
    margin-bottom: 40px;
}

.years-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.years-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 5px;
}

/* Right Column - Content */
.about-content-right {
    padding-right: 40px;
}

.section-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 20px auto; /* centers horizontally */

    padding: 8px 22px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid #FF6B00;
    color: #FF6B00;
    /* animation */
    opacity: 0;
    transform: translateY(30px);
    animation: badgeFadeUp 1s ease forwards;
    text-transform:uppercase;
}

@keyframes badgeFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff !important;
}

.about-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

    .features-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        color: #ffffff;
        font-size: 1.1rem;
    }

        .features-list li i {
            width: 24px;
            height: 24px;
            background: var(--tech-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: white;
            flex-shrink: 0;
        }

        .features-list li span {
            color: rgba(255, 255, 255, 0.9);
        }

/* CTA Button */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--tech-gradient);
    color: white;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .about-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
        color: white;
    }

    .about-cta i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .about-cta:hover i {
        transform: translateX(5px);
    }

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-right {
        padding-right: 0;
    }

    .years-number {
        font-size: 4rem;
    }

    .about-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .about-section-modern {
        padding: 60px 0;
    }

    .years-number {
        font-size: 3.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .features-list li {
        font-size: 1rem;
    }

    .about-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .years-number {
        font-size: 2rem;
    }

    .years-text {
        font-size: 0.5rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/12;
    margin-top: 30px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

/* Years Badge with colorcode.png background */
.years-badge-overlay {
    position: absolute;
   
    left: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: badgeFloat 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 200px;
}

    .years-badge-overlay .years-number {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1;
        color: white;
        display: block;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .years-badge-overlay .years-text {
        font-size: 1rem;
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-top: 5px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

/* Badge Animation */
@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-image-wrapper {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .years-badge-overlay {
        padding: 18px 30px;
        left: 20px;
        min-width: 170px;
    }

        .years-badge-overlay .years-number {
            font-size: 2.8rem;
        }

        .years-badge-overlay .years-text {
            font-size: 0.9rem;
        }
}

@media (max-width: 575.98px) {
    .years-badge-overlay {
        padding: 15px 25px;
        left: 15px;
        bottom: -20px;
        min-width: 150px;
    }

        .years-badge-overlay .years-number {
            font-size: 2.3rem;
        }

        .years-badge-overlay .years-text {
            font-size: 0.8rem;
        }
}

@media (max-width:768px) {

    .about-grid {
        display: flex;
        flex-direction: column;
    }

    /* Title first */
    .section-badge {
        order: 1;
    }

    /* Image second */
    .about-stats-left {
        order: 2;
    }

    /* Content third */
    .about-content-right {
        order: 3;
    }
}


@media (min-width: 992px) {
    .desktop-padding {
        padding-top: 40px;
    }
}
/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header-text {
    flex: 1;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 700;
    color: #ff6b00;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--tech-gradient);
        margin-top: 6px;
    }

.section-header h2 {
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: red;
}

/* =========================================
   CARDS
   ========================================= */
.about-card {
    padding: 30px;
    border-left: 5px solid var(--primary-red);
    height: 100%;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(214, 48, 49, 0.05));
    border: 1px solid rgb(114 96 83 / 20%);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .glass-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 107, 0, 0.3);
    }

.service-card {
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    .service-card p {
        flex-grow: 1;
        margin: 10px 0 15px 0;
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
        color: #fff;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .service-card .service-btn {
        margin-top: auto;
        align-self: center;
        width: fit-content;
        padding: 8px 20px;
        background: #ff5a00;
        color: #fff;
        border-radius: 30px;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .service-card .service-btn:hover {
            background: #e04f00;
            transform: translateY(-2px);
        }

    .service-card h4 {
        font-size: 18px;
        font-weight: 600;
        margin: 5px 0 5px 0;
        color: #fff;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.3;
    }

.service-icon {
    width: 70px;
    height: 70px;
    background: #ff6600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
   -webkit-text-stroke: 1px #ff6a00;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card i {
        font-size: 35px;
        color: #ff863a;
        margin-bottom: 15px;
    }

    .feature-card h5 i {
        font-size: 35px;
        color: #ff863a;
        margin-bottom: 15px;
    }

    .feature-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    height: 267px;
    color: #eee;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    opacity: 0.3;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.client-role {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
}

/* =========================================
   SERVICE SIMPLE CARDS
   ========================================= */
.service-simple-card {
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-simple-img {
    width: 180px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.service-simple-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: fantasy;
}

/* =========================================
   SERVICE ROWS
   ========================================= */
.service-row {
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-row h3 {
        font-weight: 700;
        margin-bottom: 15px;
        color: orange;
        font-size: 1.5rem;
    }

    .service-row p {
        color: white;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0;
        text-align: justify;
    }

.service-row-item {
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-title {
    font-size: 28px;
    font-weight: 800;
    color: #fa1313;
    margin-bottom: 16px !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

    .service-title i {
        color: #f37835;
        font-size: 32px;
    }

    .service-title.unofficial i {
        color: var(--primary-orange);
    }

.service-desc {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.service-img-container {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-img-container img {
        width: 70%;
        height: auto;
        object-fit: cover;
    }

.service-img-main {
    width: 100%;
    max-width: 450px;
    height: auto;
    transition: transform 0.5s ease;
}

/* =========================================
   SERVICE LISTS
   ========================================= */
.service-list {
    list-style: none;
    padding-left: 5px;
    display: grid;
    gap: 16px;
}

    .service-list.single-col {
        grid-template-columns: 1fr;
    }

    .service-list li {
        position: relative;
        padding-left: 35px;
        color: white;
        font-size: 0.95rem;
        transition: all 0.3s;
        margin-bottom: 15px;
    }

        .service-list li:hover {
            transform: translateX(5px);
        }

        .service-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 18px;
            height: 18px;
            background-image: url('/assets/images/Aboutus/bullet.png');
            background-size: contain;
            background-repeat: no-repeat;
        }

    .service-list.unofficial-list li::before {
        color: var(--primary-orange);
    }

/* =========================================
   INDUSTRY CARDS
   ========================================= */
.industry-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 25px 15px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13px;
}

    .industry-card:hover {
        transform: translateY(-6px);
        background: linear-gradient(135deg,#ff7a18,#ffb347);
        color: #000;
    }

    .industry-card img {
        width: 100px;
    }

/* =========================================
   TEAM SECTION
   ========================================= */
.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.team-role {
    color: var(--primary-orange-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* =========================================
   DIRECTOR SECTION
   ========================================= */
.director-img {
    border-radius: 20px;
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.director-quote {
    font-style: italic;
    margin: 25px 0;
    color: #eee;
    font-size: 1.1rem;
}

/* =========================================
   CLIENTS MARQUEE
   ========================================= */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 20px 0;
    width: 100%;
}

    .marquee-wrapper::-webkit-scrollbar {
        display: none;
    }

.marquee-content {
    display: inline-block;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: max-content;
}

.marquee-wrapper:nth-child(odd) .marquee-content {
    animation-name: scroll-right;
}

.marquee-wrapper:nth-child(even) .marquee-content {
    animation-name: scroll-left;
}

@keyframes scroll-right {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(75%);
    }
}

.client-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    white-space: nowrap;
    width: auto;
    height: auto;
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
}

.client-logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(150%);
}

/* =========================================
   CAROUSEL CONTROLS
   ========================================= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-orange);
    background-size: 60%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-orange);
}

@media (min-width: 992px) {
    .carousel-control-prev {
        left: -60px;
    }

    .carousel-control-next {
        right: -60px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}

/* =========================================
   PRINT GRID
   ========================================= */
.print-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 12px;
}

    .print-grid span {
        background: rgba(255,255,255,0.06);
        padding: 12px 16px;
        border-radius: 12px;
        text-align: center;
        font-weight: 500;
        color: white;
    }

    .print-grid i {
        color: #f37a35;
        font-size: 20px;
        padding-right: 3px;
    }

.printing-cta {
    background: linear-gradient(135deg,#4fd1c5,#2563eb);
    padding: 50px 20px;
    border-radius: 22px;
    color: #fff;
}

    .printing-cta .btn {
        margin-top: 15px;
        padding: 12px 32px;
        border-radius: 30px;
    }

/* =========================================
   QUOTE SECTION
   ========================================= */
.quote-split-section {
    padding: 80px 0;
}

.quote-container {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    background: #2e1d2100;
    height: 300px;
    border: 1px solid #f0833f30;
}

.quote-content {
    flex: 1;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .quote-content h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .quote-content p {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 25px;
    }

.quote-image {
    flex: 1;
    clip-path: polygon(10% 0,100% 0,100% 100%,0 100%);
}

    .quote-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width:768px) {

    .quote-container {
        position: relative;
        flex-direction: column;
        height: 320px;
    }

    .quote-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: none;
        z-index: 1;
    }

        .quote-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.5);
        }

    .quote-content {
        position: relative;
        z-index: 2;
        padding: 40px 25px;
        text-align: center;
    }

        .quote-content h2 {
            font-size: 26px;
        }

        .quote-content p {
            font-size: 14px;
        }
}
.quote-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}

/* =========================================
   GREEN TICK SECTION
   ========================================= */
.green-tick-section {
    padding: 30px 0;
}

.green-tick-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(214, 48, 49, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 40px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

    .green-tick-card:before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 107, 0, 0.1), transparent);
        border-radius: 50%;
    }

.green-tick-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.green-tick-image {
    flex: 0 0 40%;
}

    .green-tick-image img {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

.green-tick-text {
    flex: 1;
}

.green-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid #FF6B00;
    color: #FF8A3C;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.green-tick-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

    .green-tick-text h2 span {
        color: #FF6B00;
    }

.green-tick-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.green-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.green-img {
    max-width: 100%;
}

.green-list {
    list-style: none;
    padding-left: 0;
}

    .green-list li {
        margin-bottom: 10px;
        padding-left: 28px;
        position: relative;
        font-weight: 500;
        color: white;
    }

        .green-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ff5a00;
            font-weight: bold;
        }

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    .benefits-list li {
        flex: 0 0 calc(50% - 15px);
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .benefits-list li i {
            color: #FF6B00;
            font-size: 1.2rem;
        }

.note-text {
    color: #FF8A3C;
    font-style: italic;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    font-size: 0.9rem;
}

/* ================= Tablet ================= */
@media (max-width: 992px) {

    .green-tick-content {
        flex-direction: column;
        text-align: center;
    }

    .green-tick-image {
        flex: 0 0 100%;
        max-width: 400px;
        margin: auto;
    }

    .green-tick-text {
        padding-top: 10px;
    }

    .benefits-list {
        justify-content: center;
    }

        .benefits-list li {
            flex: 0 0 100%;
            justify-content: center;
        }
}


/* ================= Mobile ================= */
@media (max-width: 768px) {

    .green-tick-section {
        padding: 40px 15px;
    }

    .green-tick-card {
        padding: 25px 18px;
        border-radius: 25px;
    }

    .green-tick-text h2 {
        font-size: 1.7rem;
    }

    .green-tick-text p {
        font-size: 0.95rem;
    }

    .green-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .benefits-list {
        gap: 10px;
    }

        .benefits-list li {
            font-size: 0.9rem;
            flex: 0 0 100%;
            justify-content: flex-start;
        }

    .note-text {
        font-size: 0.8rem;
    }
}


/* ================= Small Mobile ================= */
@media (max-width: 480px) {

    .green-tick-text h2 {
        font-size: 1.5rem;
    }

    .green-tick-image img {
        border-radius: 20px;
    }
}
/* =========================================
   FORMS
   ========================================= */
.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.form-label {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
}

    .form-control:focus {
        background: rgba(0, 0, 0, 0.5);
        border-color: var(--primary-orange);
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
        color: white;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.contact-btn {
    background: var(--tech-gradient);
    border: none;
    padding: 12px 30px;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .contact-btn:hover {
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
        color: white;
    }

.field {
    width: 100%;
    background: rgba(0, 0, 0, 0.125);
    border: none;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #fff;
}

    .field:focus {
        outline: 2px solid #ff8c00;
    }

/* =========================================
   LOCATION CARDS
   ========================================= */
.location-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    flex-shrink: 0;
}

.location-title {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.location-address {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-contact {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 250px;
    width: 100%;
    margin-top: auto;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(100%) invert(92%) contrast(83%);
    }

.map-box {
    height: 500px;
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* =========================================
   OFFICE CARDS
   ========================================= */
.office-card {
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
}

.office {
    background: rgba(255,255,255,0.06);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

    .office:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-2px);
    }

    .office.active {
        border-left: 4px solid #f96208;
    }

    .office h5 {
        margin-bottom: 10px;
        color: #ffc107;
    }

.office-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 6px;
    color: #ddd;
}

    .office-line i {
        color: #ffffff;
        margin-top: 3px;
        border: 1px solid #ffffff;
        padding: 8px;
        border-radius: 50px;
    }

/* =========================================
   CONTACT MODERN
   ========================================= */
.contact-modern .input-group-text {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ff8c00;
}

.contact-modern .btn-outline-light,
.contact-modern .btn-outline-success,
.contact-modern .btn-outline-warning {
    border-radius: 30px;
    padding: 8px 20px;
}

.contact-pro {
    padding: 0px 0;
}

.contact-card,
.office-card {
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

    .contact-card h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }

.muted {
    opacity: .7;
    margin-bottom: 25px;
}

/* =========================================
   PAGE HEADER
   ========================================= */
.page-header {
    padding: 190px 0 60px 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   FOOTER - COMPLETE
   ========================================= */
.footer-simple {
    background: linear-gradient(#2e1d21, rgb(93 59 52 / 63%)), url("/assets/images/Aboutus/footer/footerbackground-test.jpeg");
    padding: 100px 0px 10px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 31%;
}

footer {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding-left: 31px;
}

.footer-links li {
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-links a {
    color: #d73b30;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: var(--primary-orange);
    }

.footer-links i {
    font-family: 'bootstrap-icons' !important;
    margin-right: 8px;
    font-size: 0.9rem;
    color: red;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    color: var(--primary-orange);
    margin-right: 15px;
}

.footer-logo {
    width: 260px;
    margin-top: -30px;
}

.footer-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

    .footer-row a {
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s;
        font-family: 'Inter';
    }

    .footer-row span {
        color: #f0813f;
    }

    .footer-row a:hover {
        color: #ff6a00;
    }

.social-row a {
    width: 40px;
    height: 40px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f96b1e;
    font-size: 17px;
    transition: 0.3s;
}

    .social-row a:hover {
        background: white;
        transform: translateY(-4px);
    }

.footer-bottom a {
    color: #ff5200;
    font-size: 15px;
    margin-top: 10px;
    font-family: 'Inter';
    text-decoration: none;
    font-weight: bolder;
}
    .footer-bottom a:hover {
        text-decoration: underline;
    }

    .footer-bottom span {
        color: #f37235;
    }

.copyright {
    background: #000000;
    color: #000000;
    text-align: center;
    font-size: 0.9rem;
    padding: 15px 0;
    width: 100%;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .copyright p {
        color: white;
        margin: 0;
    }

.footer p {
    color: white;
    font-family: 'Inter', sans-serif;
}

/* =========================================
   BACK TO TOP BUTTONS
   ========================================= */
#backToTop {
    position: fixed !important;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: #ff6a00;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: block;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

    #backToTop:hover {
        background: #e85a00;
        transform: translateY(-4px);
    }

.back-to-top2 {
    border-radius: 50%;
    position: fixed;
    bottom: 81px;
    right: 25px;
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    height: 48px;
    line-height: 40px;
    overflow: hidden;
    cursor: pointer;
    width: 48px;
    transition: width 0.5s ease-in-out, margin 0.5s ease-in-out, border-radius 0.25s ease-in-out, color 0.25s ease-in-out;
    z-index: 9999;
}

    .back-to-top2 img {
        width: 48px;
        height: 48px;
    }

/* =========================================
   PARTICLE CANVAS
   ========================================= */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none;
}

/* =========================================
   PYRAMID STEPS ANIMATION
   ========================================= */
.pyramid-steps-wrapper {
    height: 500px;
    position: relative;
    padding: 20px;
    perspective: 1200px;
    overflow: hidden;
}

.pyramid-container {
    position: relative;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
}

.pyramid-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg);
    width: 400px;
    height: 400px;
}

.pyramid-face {
    position: absolute;
    background: linear-gradient(to bottom, rgba(26, 6, 11, 0.8), rgba(255, 107, 0, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.2);
}

    .pyramid-face.front {
        width: 100%;
        height: 100%;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    .pyramid-face.left {
        width: 100%;
        height: 100%;
        clip-path: polygon(50% 0%, 0% 100%, 50% 100%);
        opacity: 0.6;
    }

    .pyramid-face.right {
        width: 100%;
        height: 100%;
        clip-path: polygon(50% 0%, 100% 100%, 50% 100%);
        opacity: 0.4;
    }

.building-steps {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.building-step {
    position: relative;
    margin-bottom: 8px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

    .building-step.step-1 {
        width: 320px;
        height: 40px;
    }

    .building-step.step-2 {
        width: 290px;
        height: 38px;
    }

    .building-step.step-3 {
        width: 260px;
        height: 36px;
    }

    .building-step.step-4 {
        width: 230px;
        height: 34px;
    }

    .building-step.step-5 {
        width: 200px;
        height: 32px;
    }

    .building-step.step-6 {
        width: 170px;
        height: 30px;
    }

    .building-step.step-7 {
        width: 140px;
        height: 28px;
    }

    .building-step.step-8 {
        width: 110px;
        height: 26px;
    }

    .building-step.step-9 {
        width: 80px;
        height: 24px;
    }

.step-platform {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.25) 50%, rgba(214, 48, 49, 0.15) 100%);
    border: 2px solid rgba(255, 107, 0, 0.4);
    border-radius: 6px 6px 0 0;
    transform: translateZ(20px);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.step-riser {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, rgba(214, 48, 49, 0.2) 0%, rgba(214, 48, 49, 0.3) 100%);
    border: 2px solid rgba(214, 48, 49, 0.5);
    border-top: none;
    border-radius: 0 0 6px 6px;
    transform: translateZ(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.step-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    transform: translateZ(30px);
}

.step-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
    }

.step-info h5 {
    color: white;
    font-size: 0.9rem;
    margin: 0 0 3px 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.step-year {
    color: #FF6B00;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
}

.step-progress {
    width: 0%;
    height: 2px;
    background: #FF6B00;
    margin-top: 4px;
    border-radius: 1px;
    transition: width 0.5s ease;
}

.building-step.active .step-platform {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.4) 0%, rgba(255, 107, 0, 0.5) 50%, rgba(214, 48, 49, 0.4) 100%);
    border-color: #FF6B00;
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2), 0 6px 20px rgba(255, 107, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.3);
    animation: stepPulse 2s infinite;
}

.building-step.active .step-riser {
    background: linear-gradient(90deg, rgba(214, 48, 49, 0.4) 0%, rgba(214, 48, 49, 0.5) 100%);
    border-color: #D63031;
    box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.3);
}

@keyframes stepPulse {
    0%, 100% {
        box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2), 0 6px 20px rgba(255, 107, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.3);
    }

    50% {
        box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2), 0 8px 25px rgba(255, 107, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.5);
    }
}

.climbing-human {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    z-index: 100;
    width: 40px;
    height: 80px;
}

.human-character {
    position: relative;
    width: 100%;
    height: 100%;
    animation: climbMovement 25s linear infinite;
}

.head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.torso {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: linear-gradient(to bottom, #4a4a4a, #333);
    border-radius: 8px;
    z-index: 9;
}

.arm {
    position: absolute;
    width: 6px;
    height: 25px;
    background: #333;
    border-radius: 3px;
    top: 20px;
    animation: armSwing 0.8s ease-in-out infinite alternate;
}

.left-arm {
    left: -8px;
    transform-origin: top center;
    animation-delay: 0s;
}

.right-arm {
    right: -8px;
    transform-origin: top center;
    animation-delay: 0.4s;
}

.leg {
    position: absolute;
    width: 8px;
    height: 30px;
    background: #222;
    border-radius: 4px;
    top: 46px;
    animation: legLift 1s ease-in-out infinite alternate;
}

.left-leg {
    left: 8px;
    animation-delay: 0s;
}

.right-leg {
    right: 8px;
    animation-delay: 0.5s;
}

.climbing-ropes {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
}

.rope {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 107, 0, 0.8), transparent);
    top: -100px;
    animation: ropeSwing 3s ease-in-out infinite;
}

.left-rope {
    left: -10px;
    animation-delay: 0s;
}

.right-rope {
    right: -10px;
    animation-delay: 1.5s;
}

.climbing-shadow {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    width: 30px;
    height: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(5px);
    animation: shadowPulse 2s ease-in-out infinite alternate;
}

@keyframes climbMovement {
    0% {
        transform: translateY(200px) rotateZ(0deg);
    }

    10% {
        transform: translateY(160px) rotateZ(-5deg);
    }

    20% {
        transform: translateY(120px) rotateZ(5deg);
    }

    30% {
        transform: translateY(80px) rotateZ(-3deg);
    }

    40% {
        transform: translateY(40px) rotateZ(3deg);
    }

    50% {
        transform: translateY(0px) rotateZ(0deg);
    }

    60% {
        transform: translateY(-40px) rotateZ(-5deg);
    }

    70% {
        transform: translateY(-80px) rotateZ(5deg);
    }

    80% {
        transform: translateY(-120px) rotateZ(-3deg);
    }

    90% {
        transform: translateY(-160px) rotateZ(3deg);
    }

    100% {
        transform: translateY(-200px) rotateZ(0deg);
    }
}

@keyframes armSwing {
    0% {
        transform: rotate(-30deg);
    }

    100% {
        transform: rotate(30deg);
    }
}

@keyframes legLift {
    0% {
        transform: translateY(0) rotate(-10deg);
    }

    100% {
        transform: translateY(-10px) rotate(10deg);
    }
}

@keyframes ropeSwing {
    0%, 100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes shadowPulse {
    0% {
        opacity: 0.4;
        transform: translateX(-50%) rotateX(90deg) scale(0.8);
    }

    100% {
        opacity: 0.6;
        transform: translateX(-50%) rotateX(90deg) scale(1.2);
    }
}

.pyramid-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(20, 20, 25, 0.9);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.current-climb-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.current-service {
    color: #FF6B00;
    font-weight: 600;
    font-size: 1.1rem;
}

.current-year {
    color: white;
    background: rgba(255, 107, 0, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.climb-progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.climb-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.climb-fill {
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #D63031);
    border-radius: 3px;
    transition: width 0.5s ease;
    z-index: 2;
}

.progress-marker {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    border: 3px solid #FF6B00;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    z-index: 3;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 1);
    }
}

.climb-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    color: #FF6B00;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.climb-stats small {
    color: #d1d1d1;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.small, small {
    font-size: 16px;
    color: #ffffff;
}

.list-unstyled {
    padding-left: 27px;
    list-style: none;
}

.img-fluid1 {
    max-width: 100%;
    height: 50px;
}

.dendron-color {
    color: #ff6600;
}

.eye-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.3);
    border: 2px solid rgba(255, 107, 0, 0.6);
    z-index: 4;
    pointer-events: none;
    display: none;
}

.left-eye {
    top: 42%;
    left: 42%;
}

.right-eye {
    top: 42%;
    right: 42%;
}

.ourService {
    margin-left: -233px;
}

.bi-house-fill,
.bi-telephone-fill {
    font-size: 24px;
}

.digitalMarketingDropdown {
    display: none;
}

    .digitalMarketingDropdown:hover {
        display: block;
    }

.bg {
    background: rgba(255, 255, 255, 0.03);
}

.glass-card h2 i {
    color: #ffffff;
    font-size: 35px;
}

.itimage {
    width: 100%;
    margin-top: 35px;
}

@media(max-width:767px) {
    .itimage {
        width: 100%;
        margin-left: 1px;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

.slide-up {
    transform: translateY(50px);
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.vertical-slider:hover .slider-track {
    animation-play-state: paused;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

/* Large Desktops (1400px and above) */
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 90%; /* 90% of screen width on extra large screens */
    }

    .hero-title {
        font-size: 3.5rem !important;
    }

    .globe-scene {
        left: -2% !important;
    }

    .globe-icon {
        transform: rotateY(var(--r, 0deg)) translateZ(230px) !important;
    }
}

/* Desktops (1200px - 1399px) */
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 90%;
    }
}
@media (min-width: 3840px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2800px !important; /* Fixed width instead of percentage */
    }

    /* Increase font sizes for 4K */
    p {
        font-size: 40px !important;
        line-height: 1.8;
        max-width:100% !important;
    }

    .hero-title {
        font-size: 5rem !important;
    }

  
    .section-title {
        font-size: 3rem;
    }

        .section-title::after {
            width: 100px;
            height: 6px;
        }

    .service-card {
        height: 500px;
        padding: 40px 30px;
    }

        .service-card p {
            font-size: 18px;
            line-height: 1.8;
        }

    .service-icon {
        width: 100px;
        height: 100px;
        font-size: 45px;
    }

    .brand-card {
        width: 200px;
        height: 110px;
    }

    .brand-logo {
        max-width: 150px;
        max-height: 70px;
    }

    .footer-row a {
        font-size: 18px;
    }

    .social-row a {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (min-width: 2560px) and (max-width: 3839px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2000px !important;
    }

    p {
        font-size: 18px !important;
        line-height: 1.8;
    }

    .hero-title {
        font-size: 4.2rem !important;
    }

    .service-card {
        height: 450px;
    }

    .navbar {
        padding: 1rem 0 !important;
        margin-top: 42px;
    }

    .logo {
        width: 280px !important;
    }

    .nav-link {
        font-size: 1.2rem !important;
        margin: 0 20px !important;
        padding: 0.6rem 0 !important;
    }

    .btn-custom {
        padding: 10px 28px !important;
        font-size: 1.1rem !important;
    }

    .dropdown-item {
        font-size: 1.1rem;
        padding: 0.7rem 1.8rem;
    }

    .top-bar {
        padding: 10px 0;
        font-size: 1rem;
    }
}

/* Desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

/* =========================================
   4K ULTRA HD OPTIMIZATIONS (3840×2160)
   ========================================= */
@media (min-width: 3800px) {
    /* Container sizing */
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 3000px !important;
        padding-left: 40px;
        padding-right: 40px;
    }



    /* Typography scaling */
    html {
        font-size: 18px;
    }

    h1 {
        font-size: 5.5rem !important;
    }

    h2 {
        font-size: 3.5rem !important;
    }

    h3 {
        font-size: 2.5rem !important;
    }

    .lead {
        font-size: 2rem;
    }

    /* Hero section */
    .hero-section {
        min-height: 70vh;
        padding-top: 150px;
    }

    .hero-content-left {
        max-width: 50%;
    }

    /* Cards and components */
    .service-card {
        height: 550px;
        padding: 50px 35px;
    }

    .service-simple-img {
        width: 250px;
        height: 140px;
    }

    .industry-card {
        padding: 35px 25px;
    }

        .industry-card img {
            width: 140px;
        }

    /* Testimonials */
    .testimonial-card {
        height: 350px;
        padding: 40px;
    }

    .client-avatar {
        width: 70px;
        height: 70px;
    }

    .client-name {
        font-size: 1.4rem;
    }

    /* Marquee/brand cards */
    .brand-card {
        width: 240px;
        height: 130px;
        border-radius: 16px;
    }

    .brand-logo {
        max-width: 180px;
        max-height: 90px;
    }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 250px;
    }

    /* Footer */
   

 
    .section-header-wrapper {
        margin-bottom: 50px;
    }

    .section-title::after {
        width: 120px;
        height: 6px;
    }

    .navbar {
        padding: 2.2rem 10px !important;
        margin-top: 48px; /* Slightly increase margin from top-bar */
    }

        .navbar .container,
        .navbar .container-fluid,
        .navbar .container-lg,
        .navbar .container-md,
        .navbar .container-sm,
        .navbar .container-xl,
        .navbar .container-xxl {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

    /* Logo sizing */
    .logo {
        width: 350px !important; /* Larger logo for 4K */
    }

    /* Navbar links */
    .nav-link {
        font-size: 2.5rem !important; /* Increase from 0.95rem */
        margin: 0 25px !important; /* Increase spacing between links */
        padding: 0.8rem 0 !important; /* Add vertical padding */
    }

    /* Dropdown menu */
    .dropdown-menu {
        margin-top: 12px; /* More space from navbar */
        padding: 1rem 0;
    }

    .dropdown-item {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

    /* Navbar button */
    .btn-custom {
        padding: 12px 32px !important;
        font-size: 1.3rem !important;
        margin-left: 25px !important;
    }

    /* Navbar brand if any */
    .navbar-brand {
        font-size: 1.8rem;
    }

    /* Top bar adjustment */
    .top-bar {
        padding: 12px 0;
        font-size: 1.1rem;
    }

        .top-bar a {
            font-size: 1.1rem;
            gap: 10px;
        }

        .top-bar .bi {
            font-size: 1.3rem;
        }

    /* Navbar toggler (for mobile, but included for completeness) */
    .navbar-toggler {
        padding: 0.8rem 1.2rem;
        font-size: 1.5rem;
    }
}

        .hero-section {
            min-height: 80vh;
            padding-top: 140px;
          
        }

    
        .hero-subtitle {
            font-size: 1.2rem;
        }

.hero-bottom-image-wrapper .globe-scene {
    margin-left: 6% !important;
    left: 0 !important; /* Reset any left positioning */
    transform: translateX(0); /* Ensure no transform conflicts */
}

/* If using left property instead of margin */
.hero-bottom-image-wrapper .globe-scene {
    left: 6% !important;
    margin-left: 0 !important;
}

.about-section {
  
    position: relative;
    padding-bottom: 50px;
}

    /* Small Desktops / Laptops (992px - 1199px) */
    @media (min-width: 992px) and (max-width: 1199px) {
        .hero-section {
            min-height: auto;
            padding-top: 140px;
            padding-bottom: 60px;
        }

        .hero-content-left {
            padding-right: 30px;
        }

        .service-card {
            height: 420px;
        }

            .service-card p {
                font-size: 13.5px;
            }

        .globe-scene {
            left: -20% !important;
        }

        .globe-icon {
            transform: rotateY(var(--r, 0deg)) translateZ(170px) !important;
        }

        .logo {
            width: 175px !important;
        }

        .navbar-nav .nav-link {
            font-size: 14px;
        }

        .nav-link {
            margin: 0px 9px;
        }

        .top-bar a {
            font-size: 12px;
        }
    }

    /* Tablets (768px - 991px) */
    @media (min-width: 768px) and (max-width: 991px) {
        .hero-section {
            min-height: 70vh;
            padding-top: 140px;
            padding-bottom: 50px;
        }

        .hero-content-left {
            text-align: center;
            padding-bottom: 20px;
            order: 1;
        }

        .hero-title {
            font-size: 2.5rem !important;
            text-align: center;
        }

        .hero-subtitle {
            margin: 0 auto 30px;
            text-align: center;
        }

        .row.align-items-center {
            flex-direction: column;
        }

        .col-lg-5 {
            order: 2;
            margin-top: 30px;
        }

        .col-lg-7 {
            order: 1;
        }

        .service-card {
            height: 400px;
        }

            .service-card h4 {
                font-size: 17px;
                height: 42px;
            }

            .service-card p {
                font-size: 13px;
            }

        .globe-scene {
            left: 9% !important;
        }

        .globe-icon {
            transform: rotateY(var(--r, 0deg)) translateZ(300px) !important;
        }

        .vertical-slider {
            margin-top: 30px;
            height: 400px;
        }

        .section-header-wrapper {
            flex-direction: column;
            align-items: flex-start;
        }

        .btn-know-more {
            width: 100%;
            text-align: center;
        }

        .service-title {
            font-size: 2rem;
        }

        .glass-container {
            margin-bottom: 40px;
            padding: 25px;
            padding-left: 25px;
        }

        .service-img-container {
            height: auto;
            min-height: 250px;
        }

        .service-img-main {
            max-width: 80%;
            margin: 0 auto;
        }

        .service-list {
            grid-template-columns: 1fr !important;
        }

        .hero-title {
            font-size: 2.5rem;
        }
    }

    /* Mobile Devices (576px - 767px) */
    @media (min-width: 576px) and (max-width: 767px) {
        .hero-section {
            min-height: auto;
            height: auto;
            padding-top: 100px;
            padding-bottom: 10px;
        }

        .hero-content-left {
            text-align: center;
            padding-bottom: 20px;
        }

        .hero-title {
            font-size: 2rem !important;
            text-align: center;
        }

        .hero-subtitle {
            font-size: 1rem;
            text-align: center;
            padding: 0 15px;
        }

        .row.align-items-center {
            flex-direction: column;
        }

        .mt1-5 {
            margin-top: 5rem !important;
        }

        .about-section {
            margin-top: -122px;
        }

        .service-card {
            height: 380px;
            padding: 20px 15px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            font-size: 26px;
        }

        .service-card h4 {
            font-size: 16px;
            height: 40px;
        }

        .service-card p {
            font-size: 12.5px;
        }

        .globe-scene {
            left: -4% !important;
        }

        .globe-icon {
            transform: rotateY(var(--r, 0deg)) translateZ(225px) !important;
            --icon-size: 40px;
        }

            .globe-icon svg {
                --svg-size: 25px;
            }

        .quote-container {
            flex-direction: column;
            height: 100%;
        }

        .quote-image {
            clip-path: none;
            height: 250px;
        }

        .quote-content {
            padding: 40px 25px;
            text-align: center;
        }

        .services-section {
            padding: 5px 0 !important;
        }

        .test {
            margin-top: -25px !important;
        }

        .test1 {
            margin-top: 65px !important;
        }

        .about-test {
            margin-top: -8px;
        }
    }

    /* Small Mobile (375px - 575px) */
    @media (min-width: 375px) and (max-width: 575px) {
        .hero-section {
            min-height: auto;
            height: auto;
            padding-top: 100px;
            padding-bottom: 10px;
        }

        .hero-title {
            font-size: 1.8rem !important;
        }

        .hero-subtitle {
            font-size: 0.95rem;
        }

        .hero-bottom-image-wrapper {
            max-height: 280px;
        }

        .service-card {
            height: 380px;
            padding: 15px 12px;
        }

        .service-icon {
            width: 55px;
            height: 55px;
            font-size: 24px;
        }

        .service-card h4 {
            font-size: 15px;
            height: 38px;
        }

        .service-card p {
            font-size: 12px;
        }

        .globe-scene {
            left: -18% !important;
        }

        .globe-icon {
            transform: rotateY(var(--r, 0deg)) translateZ(160px) !important;
            --icon-size: 35px;
        }

            .globe-icon svg {
                --svg-size: 20px;
            }

       

        .col-6 {
            flex: 0 0 auto;
            width: 50%;
        }

        .list-unstyled {
            padding-left: 0px;
        }
    }

    /* Extra Small Mobile (below 375px) */
    @media (max-width: 374px) {
        .hero-title {
            font-size: 1.5rem !important;
        }

        .hero-subtitle {
            font-size: 0.85rem;
        }
    }

    /* Landscape Orientation */
    @media (max-height: 600px) and (orientation: landscape) {
        .hero-section {
            min-height: 100vh;
            padding-bottom: 50px;
        }
    }

    /* iPad Mini & Tablets Portrait */
    @media (min-width: 744px) and (max-width: 1024px) and (orientation: portrait) {
        .globe-scene {
            left: 5% !important;
        }
    }

    /* Mobile Navbar - CRITICAL */
    @media (max-width: 991.98px) {
        .navbar {
            margin-top: 38px;
        }

        .navbar-collapse {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            margin-top: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .hero-title {
            font-size: 30px;
            text-align: justify;
        }

        .hero-section {
            padding-top: 120px;
            min-height: auto;
            height: auto;
            
        }

        .hero-content-left {
            text-align: center;
            margin-top: 40px;
        }

        .hero-subtitle {
            margin: 0 auto 30px auto;
        }

        .director {
            text-align: center;
        }

        .about-test {
            margin-top: -43px;
            padding-bottom: 10px;
        }

        .leadership {
            margin-top: -70px;
        }

        .footer-simple {
            padding-top: 30px !important;
        }

        .service-list {
            gap: 5px;
        }

        .bulk {
            padding-top: 0px;
        }

        .bulk-sms {
            margin-top: 4px !important;
            margin-bottom: 0px !important;
        }

        .bult-title {
            margin-bottom: 0px !important;
        }

        .image-border {
            padding-right: 12px !important;
        }

        #industrySlider {
            margin-bottom: -96px;
        }

        .carousel-item {
            margin-bottom: 113px;
            height: 273px !important;
        }

        .carousel-control-prev,
        .carousel-control-next {
            display: none;
        }
    }

    /* Mobile Specific (max-width: 768px) */
    @media (max-width: 768px) {
        .glass-container {
            padding-bottom: 0px;
            margin-bottom: 0px;
        }

        .service-list li {
            font-size: 14px;
            line-height: 1.6;
        }

        #services {
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .why-choose-us {
            padding-top: 60px;
        }

        .margin-t {
            margin-top: 22px !important;
        }

        .core-msg {
            margin-bottom: 0px !important;
        }

        .printing-solution {
            padding-top: 0px !important;
        }

        .hero-section {
            text-align: center;
            padding-top: 120px;
        }

        .hero-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .d-flex.gap-3 {
            justify-content: center;
        }

        .pyramid-steps-wrapper {
            height: 400px;
            margin-top: 30px;
        }

        .building-steps {
            width: 250px;
            height: 250px;
        }

        .step-content {
            padding: 0 8px;
        }

        .step-info h5 {
            font-size: 0.8rem;
        }

        .step-year {
            font-size: 0.7rem;
        }

        .pyramid-progress {
            padding: 15px;
        }

        .client-box {
            padding: 10px 20px;
            margin: 0 10px;
        }

        .director-quote {
            font-size: 1rem;
        }

        .director-img {
            max-width: 200px;
        }

        .about-hero {
            padding-top: 150px;
            text-align: center;
        }

            .about-hero h1 {
                font-size: 26px;
            }

        h2 {
            font-size: 22px;
        }
    }

    /* =========================================
   GLOBE RESPONSIVE OVERRIDES
   ========================================= */
    @media (max-width: 1024px) {
        .globe-icon {
            --icon-size: 50px;
            transform: rotateY(var(--r, 0deg)) translateZ(160px);
        }

        p {
            word-spacing: -2px;
        }
    }

    @media (max-width: 768px) {
        .globe-icon {
            --icon-size: 40px;
            transform: rotateY(var(--r, 0deg)) translateZ(130px);
        }
    }

    @media (max-width: 480px) {
        .globe-icon {
            --icon-size: 35px;
            transform: rotateY(var(--r, 0deg)) translateZ(110px);
        }
    }

    /* =========================================
   VIDEO
   ========================================= */
    video {
        width: 100%;
        height: auto;
        display: block;
    }


    .clients-section {
        background: transparent; /* Removed background */
        position: relative;
        overflow: hidden;
        padding: 60px 0;
        border: 1px solid #f0833f30;
    }

    .badge-section {
        display: inline-block;
        background: rgba(255, 107, 0, 0.1);
        border: 1px solid #f0833f30; /* Your color combination */
        color: #f0833f;
        padding: 8px 25px;
        border-radius: 40px;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        position: relative;
        z-index: 5;
    }

        .badge-section i {
            font-size: 1.1rem;
            color: #f0833f;
        }

    .premium-marquee-wrapper {
        position: relative;
        z-index: 5;
    }

    .marquee-row {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .marquee-track {
        display: flex;
        gap: 20px; /* Reduced gap */
        width: max-content;
        animation-duration: 40s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        padding: 5px 0;
    }

    .marquee-right .marquee-track {
        animation-name: scrollRight;
    }

    .marquee-left .marquee-track {
        animation-name: scrollLeft;
    }

    .marquee-item {
        flex-shrink: 0;
    }

    /* Smaller brand cards */
    .brand-card {
        width: 140px; /* Reduced from 200px */
        height: 80px; /* Reduced from 120px */
        background: #2e1d2100; /* Your transparent background */
        border: 1px solid #f0833f30; /* Your border color */
        border-radius: 12px; /* Slightly smaller radius */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        transition: all 0.3s ease;
    }

        .brand-card:hover {
            border-color: #f0833f; /* Solid orange on hover */
            transform: translateY(-3px);
            background: rgba(240, 131, 63, 0.05); /* Very subtle hover background */
        }

    .brand-logo {
        max-width: 100px; /* Reduced from 140px */
        max-height: 50px; /* Reduced from 70px */
        width: auto;
        height: auto;
        object-fit: contain;
        transition: all 0.3s ease;
        filter: brightness(0) invert(1) opacity(0.9);
    }

        /* Dark logo handling */
        .brand-logo.brand-dark {
            filter: brightness(0.8) opacity(0.9);
        }

    .brand-card:hover .brand-logo {
        filter: brightness(1) invert(0) opacity(1);
        transform: scale(1.05);
    }

    /* Gradient overlays for fade effect */
    .marquee-fade-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 150px; /* Reduced */
        height: 100%;
        background: linear-gradient(90deg, #1a060b 0%, transparent 100%);
        pointer-events: none;
        z-index: 10;
    }

    .marquee-fade-right {
        position: absolute;
        top: 0;
        right: 0;
        width: 150px; /* Reduced */
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, #1a060b 100%);
        pointer-events: none;
        z-index: 10;
    }

    /* Pause animation on hover */
    .marquee-row:hover .marquee-track {
        animation-play-state: paused;
    }

    /* Animations */
    @@keyframes scrollRight {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @@keyframes scrollLeft {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* Responsive */
    @@media (max-width: 992px) {
        .brand-card {
            width: 120px;
            height: 70px;
        }

        .brand-logo {
            max-width: 80px;
            max-height: 40px;
        }
    }

    @@media (max-width: 768px) {
        .brand-card {
            width: 100px;
            height: 60px;
        }

        .brand-logo {
            max-width: 70px;
            max-height: 35px;
        }

        .marquee-fade-left,
        .marquee-fade-right {
            width: 60px;
        }

        .marquee-track {
            gap: 12px;
        }
    }

    @@media (max-width: 576px) {
        .brand-card {
            width: 90px;
            height: 55px;
            padding: 8px;
        }

        .brand-logo {
            max-width: 60px;
            max-height: 30px;
        }

        .badge-section {
            font-size: 0.8rem;
            padding: 6px 18px;
        }

        h2.display-6 {
            font-size: 1.8rem;
        }
    }

    .feature-box {
        background: rgba(255,255,255,0.06);
        padding: 25px;
        border-radius: 16px;
        height: 100%;
        transition: 0.3s ease;
    }

        .feature-box:hover {
            transform: translateY(-6px);
        }

        .feature-box i {
            font-size: 36px;
            color: #f37a35;
            margin-bottom: 10px;
        }

.clients-section {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    border-top: 1px solid #f0833f30;
    border-bottom: 1px solid #f0833f30;
}

/* Badge Section */
.badge-section {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid #f0833f30;
    color: #f0833f;
    padding: 8px 25px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    backdrop-filter: blur(5px);
}

    .badge-section i {
        font-size: 1.1rem;
        color: #f0833f;
    }

/* Premium Marquee Wrapper */
.premium-marquee-wrapper {
    position: relative;
    z-index: 5;
}

/* Marquee Rows */
.marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Marquee Track - Animation */
.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    padding: 10px 0;
}

/* Right to Left Animation */
.marquee-right .marquee-track {
    animation-name: scrollRight;
}

/* Left to Right Animation */
.marquee-left .marquee-track {
    animation-name: scrollLeft;
}

/* Animation Keyframes */
@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

/* Marquee Items */
.marquee-item {
    flex-shrink: 0;
}

/* Brand Cards */
.brand-card {
    width: 160px;
    height: 90px;
    background: rgba(46, 29, 33, 0.3);
    border: 1px solid #f0833f30;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .brand-card:hover {
        border-color: #f0833f;
        transform: translateY(-5px);
        background: rgba(240, 131, 63, 0.1);
        box-shadow: 0 10px 25px rgba(240, 131, 63, 0.15);
    }

/* Brand Logos */
.brand-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) opacity(0.9);
}

    /* Dark logo handling (for dark colored logos) */
    .brand-logo.brand-dark {
        filter: brightness(0.8) opacity(0.9);
    }

.brand-card:hover .brand-logo {
    filter: brightness(1) invert(0) opacity(1);
    transform: scale(1.08);
}

/* Gradient Overlays for Fade Effect */
.marquee-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, #1a060b 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.marquee-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #1a060b 100%);
    pointer-events: none;
    z-index: 10;
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */

/* Large Desktops (1200px - 1600px) */
@media (max-width: 1600px) {
    .brand-card {
        width: 140px;
        height: 80px;
    }

    .brand-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .clients-section {
        padding: 50px 0;
    }

    .brand-card {
        width: 130px;
        height: 75px;
        padding: 12px;
    }

    .brand-logo {
        max-width: 90px;
        max-height: 45px;
    }

    .badge-section {
        font-size: 0.8rem;
        padding: 6px 20px;
    }

        .badge-section i {
            font-size: 1rem;
        }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 150px;
    }
}

/* Mobile Devices (576px - 768px) */
@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0;
    }

    .brand-card {
        width: 110px;
        height: 65px;
        padding: 10px;
        border-radius: 10px;
    }

    .brand-logo {
        max-width: 80px;
        max-height: 40px;
    }

    .marquee-track {
        gap: 20px;
        animation-duration: 30s;
    }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 100px;
    }

    h2.display-6 {
        font-size: 1.8rem;
    }
}

/* Small Mobile (below 576px) */
@media (max-width: 576px) {
    .clients-section {
        padding: 30px 0;
    }

    .brand-card {
        width: 90px;
        height: 55px;
        padding: 8px;
        border-radius: 8px;
    }

    .brand-logo {
        max-width: 65px;
        max-height: 35px;
    }

    .badge-section {
        font-size: 0.7rem;
        padding: 5px 15px;
    }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 60px;
    }
}

/* =========================================
   4K ULTRA HD OPTIMIZATIONS (3840×2160)
   ========================================= */
@media (min-width: 3800px) {
    .clients-section {
        padding: 100px 0;
    }

    .badge-section {
        font-size: 1.2rem;
        padding: 12px 35px;
        border-radius: 50px;
    }

        .badge-section i {
            font-size: 1.4rem;
        }

    h2.display-6 {
        font-size: 3rem !important;
        margin-top: 20px !important;
    }

    .brand-card {
        width: 220px;
        height: 120px;
        border-radius: 18px;
        padding: 20px;
    }

    .brand-logo {
        max-width: 160px;
        max-height: 80px;
    }

    .marquee-track {
        gap: 40px;
        animation-duration: 50s;
    }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 300px;
    }

    .marquee-fade-left {
        background: linear-gradient(90deg, #1a060b 0%, transparent 80%);
    }

    .marquee-fade-right {
        background: linear-gradient(90deg, transparent 20%, #1a060b 100%);
    }
}

/* =========================================
   1440p OPTIMIZATIONS (2560×1440)
   ========================================= */
@media (min-width: 2500px) and (max-width: 3799px) {
    .brand-card {
        width: 180px;
        height: 100px;
    }

    .brand-logo {
        max-width: 130px;
        max-height: 65px;
    }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 250px;
    }
}


.video-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    background: linear-gradient(135deg, #2e1d21, #1a060b);
    border-radius: 20px;
    border: 1px solid #f0833f30;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.video-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #f0833f30;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .video-modal-header h3 {
        color: var(--primary-orange);
        margin: 0;
        font-size: 1.5rem;
    }

.video-modal-close {
    color: #f0833f;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

    .video-modal-close:hover {
        color: var(--primary-orange);
        transform: scale(1.1);
    }

.video-modal-body {
    padding: 30px;
}

    .video-modal-body video {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

/* =========================================
   VIDEO PREVIEW STYLES (Alternative)
   ========================================= */
.video-preview-container {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    animation: fadeIn 0.3s ease;
}

.video-preview-overlay {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
}

.close-preview {
    color: #f0833f;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #f0833f30;
}

    .close-preview:hover {
        color: var(--primary-orange);
        transform: rotate(90deg);
        border-color: var(--primary-orange);
    }

.video-preview-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
}

    .video-preview-wrapper video {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3);
        border: 2px solid #f0833f30;
    }



/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================================
   RESPONSIVE Video STYLES
   ========================================= */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 30px auto;
    }

    .video-modal-header {
        padding: 15px 20px;
    }

        .video-modal-header h3 {
            font-size: 1.2rem;
        }

    .video-modal-body {
        padding: 15px;
    }

    .close-preview {
        font-size: 30px;
        width: 40px;
        height: 40px;
        line-height: 35px;
    }
}

@media (min-width: 3800px) {
    .video-modal-content {
        max-width: 1600px;
    }

    .video-modal-header h3 {
        font-size: 2.5rem;
    }

    .video-modal-close {
        font-size: 50px;
    }
}