/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #003366;
    --primary-dark: #002244;
    --primary-light: #00509E;
    --secondary: #ed7e19;
    --secondary-dark: #ee7f1a;
    --secondary-light: #f98218;
    --dark: #1A202C;
    --dark-light: #2D3748;
    --gray: #4A5568;
    --gray-light: #718096;
    --gray-lighter: #002244;
    --light: #F7FAFC;
    --white: #FFFFFF;
    --success: #38A169;
    --warning: #D69E2E;
    --danger: #E53E3E;
    --info: #3182CE;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-xxl: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-round: 50%;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
    color: var(--white);
}

.gear {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.loader h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.btn-announcement {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    text-decoration: none;
}

.btn-announcement:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* ===== Mega Menu ===== */
.mega-menu {
    background-color: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.mega-menu.scrolled {
    background-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    padding: 1rem 0;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 45px;
}
.logo-main {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-sub {
    color: var(--gray) !important;
    font-size: 0.8rem;
}

/* Fix Navigation Alignment */
.navbar-nav {
    gap: 0.5rem !important;
    align-items: center;
}

.nav-link {
    padding: 0.5rem 1rem !important;
    white-space: nowrap;
}

/* Fix Navigation Links */
.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}
 

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Mega Dropdown */
.mega-dropdown {
    position: static !important;
}

.mega-menu-content {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    padding: 2rem 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-xxl);
    background-color: var(--white);
    margin-top: 0;
}
/* Fix Mega Menu Alignment */
.mega-menu-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Fix Search and Contact Alignment */
.navbar-extra {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.mega-menu-content .row {
    max-width: 1200px;
    margin: 0 auto;
}
.mega-feature h6 {
       color: var(--white) !important;
}

.mega-menu-content h6 {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.mega-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-content ul li {
    margin-bottom: 0.5rem;
}

.mega-menu-content ul li a {
    color: var(--gray);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    display: block;
}

.mega-menu-content ul li a:hover {
    color: var(--secondary);
    padding-left: 0.5rem;
}

.mega-feature {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-mega {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-mega:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar-extra {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary);
}

.contact-phone i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.phone-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-lighter);
}

.phone-number {
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-nav-contact {
    background-color: var(--secondary);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem !important;
    margin-left: 1rem;
}

.btn-nav-contact:hover {
    background-color: var(--secondary-dark);
    color: var(--white) !important;
}

/* ===== Hero Slider ===== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-slide .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 


.image-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 51, 102, 0.85), rgba(0, 80, 158, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary);
    position: relative;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.client-logos {
    padding: 3rem 0;
}

.client-logo-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.client-logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.client-logo-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Projects Section */
.projects-section {
    background: var(--light);
}

.projects-swiper {
    padding: 2rem 0 4rem;
    position: relative;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: white;
    font-size: 2rem;
    background: #ed7e19;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    background: #00509E;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: #f8f9fa;
    color: #003366;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #dee2e6;
}
 
/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--primary);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--secondary);
    color: white;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--gray-lighter);
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}


/* Enhanced Divisions Section */
.divisions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.division-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.division-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.division-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary-light);
}

.division-card:hover:before {
    transform: scaleX(1);
}

.division-icon {
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.division-card:hover .division-icon {
    color: var(--secondary);
    transform: scale(1.1);
}

.division-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.division-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.division-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--gray);
}

.division-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.division-card:hover .division-features li:before {
    transform: scale(1.2);
    color: var(--primary);
}

/* Add floating animation to division cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.division-card {
    animation: float 6s ease-in-out infinite;
}

.division-card:nth-child(2) {
    animation-delay: 2s;
}


.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.feature i {
    color: var(--secondary);
    font-size: 1.25rem;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ===== Client Ticker ===== */
.client-ticker-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.section-description {
    color: var(--gray);
    font-size: 1.125rem; 
}

.client-ticker {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    flex: 0 0 200px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.ticker-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* ===== Stats Counter ===== */
.stats-counter-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.stat-bar {
    width: 50%;
    margin: 0 auto;
}

.progress-bar {
    background-color: var(--secondary);
}

/* ===== Services Showcase ===== */
.services-showcase-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xxl);
    border-top-color: var(--secondary);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.service-features li i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-image {
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* ===== Industry Solutions ===== */
.industry-solutions-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.industry-content {
    padding-right: 3rem;
}

.industry-tabs {
    margin-top: 2rem;
}

.industry-tabs .nav-tabs {
    border-bottom: 2px solid var(--gray-lighter);
    margin-bottom: 2rem;
}

.industry-tabs .nav-link {
    color: var(--gray);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.industry-tabs .nav-link i {
    font-size: 1.25rem;
}

.industry-tabs .nav-link:hover {
    color: var(--primary);
}

.industry-tabs .nav-link.active {
    color: var(--secondary);
    background: none;
    border: none;
}

.industry-tabs .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}

.tab-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.tab-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tab-content ul li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.tab-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.industry-visual {
    position: relative;
}

.industry-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 500px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-stats-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.industry-stats-overlay .stat h4 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.industry-stats-overlay .stat p {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
}

/* ===== News Ticker ===== */
.news-ticker-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem 0;
}

.ticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.ticker-label i {
    color: var(--secondary);
}

.ticker-view-all {
    color: var(--white);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ticker-view-all:hover {
    color: var(--secondary);
}

.news-ticker {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: news-ticker 30s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    flex: 0 0 33.333%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker-item:last-child {
    border-right: none;
}

.ticker-date {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.ticker-text {
    font-size: 0.95rem;
}

@keyframes news-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light);
}

.testimonials-swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    height: 100%;
}

.testimonial-quote {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.1;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-light);
    font-size: 0.875rem;
    margin: 0;
}

.author-rating {
    color: var(--secondary);
    margin-top: 0.25rem;
}

.testimonial-logo {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-lighter);
}

.testimonial-logo img {
    height: 30px;
}

/* ===== Blogs Section ===== */
.blogs-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.featured-blog {
    height: 100%;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xxl);
}

.blog-card.featured .blog-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.blog-card.featured .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card.featured:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
    font-size: 0.875rem;
}

.blog-meta i {
    margin-right: 0.25rem;
}

.meta-category {
    color: var(--secondary);
    font-weight: 600;
}

.blog-title {
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.blog-author .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    overflow: hidden;
}

.blog-author .author-info h6 {
    color: var(--primary);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.blog-author .author-info p {
    color: var(--gray-light);
    font-size: 0.75rem;
    margin: 0;
}

.blog-list .blog-card.list-item {
    display: flex;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.blog-list .blog-card.list-item:last-child {
    margin-bottom: 0;
}

.blog-list .blog-card.list-item:hover {
    transform: translateX(10px);
}

.blog-list .blog-image-sm {
    flex: 0 0 120px;
    height: 120px;
    overflow: hidden;
}

.blog-list .blog-image-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-list .blog-card.list-item:hover .blog-image-sm img {
    transform: scale(1.1);
}

.blog-list .blog-content {
    flex: 1;
    padding: 1rem;
}

.blog-list .blog-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.blog-list .blog-excerpt {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.blog-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 4rem;
    color: var(--white);
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    color: var(--white);
}
.footer-main {
    background: #f8f9fa !important;
    border-top: 1px solid #e9ecef;
}

.footer-bottom {
    background: #e9ecef !important;
}

.footer-logo .logo-sub {
    color: #6c757d !important;
}

.footer-main {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-main {
    font-size: 2rem;
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--gray-lighter);
}

.footer-about {
    color: var(--gray-lighter);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social h6 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-light);
    color: var(--white);
    border-radius: var(--radius-round);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-widget h5 {
    color: var(--primary-dark);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: var(--gray-lighter);
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--secondary);
    padding-left: 0.5rem;
}

.footer-offices .office {
    margin-bottom: 1.5rem;
}

.footer-offices .office h6 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-offices .office h6 i {
    color: var(--secondary);
}

.footer-offices .office p {
    color: var(--gray-lighter);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-newsletter {
    padding: 3rem 0;
    border-top: 1px solid var(--dark-light);
    border-bottom: 1px solid var(--dark-light);
    margin-top: 2rem;
}

.footer-newsletter h5 {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: var(--gray-lighter);
    font-size: 0.95rem;
    margin: 0;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .input-group {
    margin-bottom: 0.5rem;
}

.newsletter-form .form-control {
    background-color: var(--gray-light);
    border: 1px solid var(--gray);
    color: var(--white);
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--secondary);
}

.newsletter-form .form-text {
    color: var(--gray-lighter);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form .form-text i {
    color: var(--secondary);
}

.footer-bottom {
    padding: 1.5rem 0; 
    background-color: #e9ecef !important;
}
.copyright {
    color: var(--gray-lighter);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links li a {
    color: var(--gray-lighter);
    font-size: 0.875rem;
}

.footer-bottom-links li a:hover {
    color: var(--white);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.back-to-top:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-5px);
}


.youtube-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.youtube-video-wrapper iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.85) 0%, rgba(0, 80, 158, 0.7) 100%);
    z-index: 1;
}

