/* ===== STYLE.CSS - COMPLETE WEBSITE STYLES ===== */
/* Author: Your Name */
/* Version: 1.0 - COMPLETE WITH ALL SECTIONS */

/* ===== TABLE OF CONTENTS =====
1.  GLOBAL STYLES & RESET
2.  TYPOGRAPHY
3.  THEME VARIABLES & TOGGLES
4.  BROWSER-SPECIFIC FIXES & UTILITIES
5.  SECTION DIVIDERS
6.  HERO SLIDER SECTION
7.  HERO BOTTOM TEXT ANIMATIONS
8.  BRANDS SLIDER
9.  SWIPER CUSTOMIZATIONS
10. MEGA MENU
11. NAVBAR & DROPDOWNS
12. SERVICES SECTION
13. SERVICE CARDS (with hover effects)
14. FEATURED INSIGHTS SECTION
15. CARD BLOCK SLIDER
16. WHY CHOOSE US SECTION
17. STRATEGIC DIFFERENTIATORS
18. INDUSTRIES SECTION
19. INDUSTRY CARDS (with hover effects)
20. CONTACT SECTION
21. NUMBERS SECTION
22. CTA SECTION
23. BACK TO TOP
24. SEARCH POPUP
25. FOOTER
26. ACCESSIBILITY & REDUCED MOTION
27. RTL SUPPORT
28. RESPONSIVE STYLES (ALL BREAKPOINTS)
29. BLEND SECTION 
==================================== */

/* ===== 1. GLOBAL STYLES & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Manrope', Arial, sans-serif;
}

section {
    position: relative;
    width: 100%;
}

main {
    display: block;
    width: 100%;
}

/* Selection styles */
::selection {
    background: #f26223;
    color: white;
}

::-moz-selection {
    background: #f26223;
    color: white;
}

/* Placeholder styles */
::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Focus styles for accessibility */
:focus {
    outline: 2px solid #f26223;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

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

/* ===== 2. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans",sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    min-height: 40px;  /* Minimum height as fallback */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


p {
    font-family: "Plus Jakarta Sans",sans-serif !important;
    line-height: 1.3;
    color: var(--text-secondary);
}



/* ===== 3. THEME VARIABLES & TOGGLES ===== */
/* Light theme variables */
body.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --card-bg: #ffffff;
    --card-shadow: 0 12px 30px rgba(0,0,0,0.08);
    --section-bg: #ffffff;
    --heading-color: #212529;
    --number-color: #f26223;
    --border-color: #dee2e6;
    --overlay-color: rgba(0, 0, 0, 0.4);
    --footer-bg: #f8f9fa0a;
    --footer-text: #f26223;
    --footer-link:var(--text-secondary) ;
    --footer-link-hover: #f26223;
}

/* Dark theme variables */
body.dark-theme {
    --bg-primary: #1e1e2f;
    --bg-secondary: #2d2d44;
    --bg-tertiary: #25253a;
    --text-primary: #e4e6ef;
    --text-secondary: #b0b7d9;
    --card-bg: #21213e;
    --card-shadow: 0 12px 30px rgba(0,0,0,0.3);
    --section-bg: #1e1e2f;
    --heading-color: #f0f2ff;
    --number-color: #f26223;
    --border-color: #2d2d44;
    --overlay-color: rgba(0, 0, 0, 0.6);
    --footer-bg:#070518a1;
    --footer-text: #f26223;
    --footer-link: #f0f2ff;
    --footer-link-hover: #f26223;
}

/* Theme-aware utility classes */
.theme-aware {
    background: var(--bg-primary) !important;
    color: var(--text-primary);
}

.theme-aware-text {
    color: var(--text-primary) !important;
}

.theme-aware-text-secondary {
    color: var(--text-secondary) !important;
}

.theme-aware-heading {
    color: var(--heading-color) !important;
}

.theme-aware-card {
    background: var(--card-bg) !important;
    box-shadow: var(--card-shadow) !important;
    color: var(--text-primary);
}

.theme-aware-card p {
    color: var(--text-secondary) !important;
}

.theme-aware-link {
    color: #f26223 !important;
    transition: opacity 0.3s ease;
}

.theme-aware-link:hover {
    opacity: 0.8;
}

.theme-aware-number {
    color: var(--number-color) !important;
}

/* Theme toggle button */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle .light-icon,
.theme-toggle .dark-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

body.light-theme .theme-toggle .light-icon {
    display: none;
}

body.light-theme .theme-toggle .dark-icon {
    display: block;
}

body.dark-theme .theme-toggle .light-icon {
    display: block;
}

body.dark-theme .theme-toggle .dark-icon {
    display: none;
}

/* ===== 4. BROWSER-SPECIFIC FIXES & UTILITIES ===== */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari fix for 100vh */
    .hero-slider-section,
    .mainHeroSlider,
    .home-hero-section {
        height: -webkit-fill-available;
    }
}

/* Firefox scrollbar fix */
* {
    scrollbar-width: thin;
    scrollbar-color: #f26223 rgba(242, 98, 35, 0.1);
}

/* IE11 fix */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .services-wrapper,
    .industries-wrapper {
        height: auto;
    }
    
    .service-card,
    .industry-card {
        opacity: 1;
        transform: none;
    }
}

/* Z-index hierarchy */
.hero-slider-section { z-index: 1; }
.hero-brands { z-index: 10; }
.hero-bottom-texts { z-index: 15; }

.megamenu { z-index: 10000; }
.search-popup { z-index: 10000; }
.back-to-top { z-index: 999; }
.services-cards { z-index: 30; }
.industries-cards { z-index: 20; }
.service-card:hover,
.industry-card:hover,
.diff-card:hover { z-index: 100; }

/* Grayscale utility */
.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0);
}

/* ===== 5. SECTION DIVIDERS ===== */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(242, 98, 35, 0.2), #f26223, rgba(242, 98, 35, 0.2), transparent);
    margin: 0;
    position: relative;
    z-index: 5;
}

body.dark-theme .section-divider {
    background: linear-gradient(90deg, transparent, rgba(242, 98, 35, 0.3), #f26223, rgba(242, 98, 35, 0.3), transparent);
}

/* ===== 6. HERO SLIDER SECTION ===== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    will-change: transform, opacity;
}

.mainHeroSlider {
    height: 100vh;
    width: 100%;
}

.mainHeroSlider .swiper-slide {
    height: 100vh;
    overflow: hidden;
}

.home-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
/* Add opacity to hero video and image backgrounds */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    
}

/* Add dark overlay using pseudo-element */
.home-hero-section {
    position: relative;
}

.home-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: rgba(0, 0, 0, 0.6) !important;  /* Increased from 0.6 to 0.9 - very dark */

    z-index: 2;
    pointer-events: none;
}

/* Ensure video and image are behind overlay */
.hero-video-bg,
.hero-image-bg {
    z-index: 1;
    opacity: 1;
}





.home-hero-section h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff !important;
}

.home-hero-section .lead {
    font-size: 1.5rem;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff !important;
}



/* Hero slider buttons */
.home-hero-section .btn {
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 2rem !important;
    font-size: 10px !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.home-hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff !important;
}

/* Video fallback styles */
.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-fallback-bg.gradient-1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.hero-fallback-bg.gradient-2 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.hero-fallback-bg.gradient-3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.hero-fallback-bg.gradient-4 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

/* ===== 7. HERO BOTTOM TEXT ANIMATIONS ===== */

/* ===== 7. HERO TEXT ANIMATIONS - COMPLETE FIXED VERSION ===== */
.hero-text {
    position: absolute;
    bottom: clamp(100px, 15vh, 200px);
    left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.hero-text-item {
    position: absolute;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.5);
    opacity: 0;
    white-space: nowrap;
    text-align: center;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 100%;
    max-width: 90%;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: transform, opacity;
}

.hero-text-item.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    z-index: 25;
}

/* Hide all text in non-active slides */
.swiper-slide:not(.swiper-slide-active) .hero-text-item,
.swiper-slide:not(.swiper-slide-active) .hero-text-item.active {
    opacity: 0 !important;
    pointer-events: none;
    transition: none;
}

/* LEFT RIGHT ANIMATION */
.anim-left-right.active {
    animation: leftRight 1.2s ease forwards;
}
@keyframes leftRight {
    0% { 
        opacity: 0;
        transform: translateX(-150%) translateY(0);
    }
    100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* UP DOWN ANIMATION */
.anim-up-down.active {
    animation: upDown 1.2s ease forwards;
}
@keyframes upDown {
    0% { 
        opacity: 0;
        transform: translateX(-50%) translateY(-100px);
    }
    100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* LETTER BY LETTER ANIMATION */
.anim-letter span {
    opacity: 0;
    display: inline-block;
    transform: translateY(10px);
    animation: letterReveal 0.4s forwards;
}
@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RANDOM WORD */
.anim-random-word {
    text-transform: uppercase;
}

/* LAST WORD CHANGE */
.anim-last-word .changing-word {
    color: #f26223;
    font-weight: 800;
    text-decoration: underline;
    display: inline-block;
    min-width: 100px;
    text-shadow: 0 0 15px rgba(242, 98, 35, 0.5);
}

/* MIXED LETTER ANIMATION */
.anim-mixed span {
    opacity: 0;
    display: inline-block;
    transform: translateY(-20px);
    animation: mixed 0.5s forwards;
}
@keyframes mixed {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ZOOM ANIMATION */
.anim-zoom.active {
    animation: zoom 1.5s ease forwards;
}
@keyframes zoom {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-text {
        bottom: 160px;
    }
    .hero-text-item {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-text {
        bottom: 140px;
    }
    .hero-text-item {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-text {
        bottom: 120px;
        height: 80px;
    }
    .hero-text-item {
        font-size: 1.5rem;
        white-space: normal;
        text-transform: none;
    }
}

@media (max-width: 576px) {
    .hero-text {
        bottom: 100px;
        height: 70px;
    }
    .hero-text-item {
        font-size: 1.2rem;
        max-width: 95%;
    }
    
    .anim-last-word .changing-word {
        min-width: 70px;
    }
}

@media (max-width: 380px) {
    .hero-text {
        bottom: 90px;
    }
    .hero-text-item {
        font-size: 1rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-text-item.active,
    .anim-left-right.active,
    .anim-up-down.active,
    .anim-zoom.active {
        animation: none !important;
        opacity: 1 !important;
        transform: translateX(-50%) translateY(0) !important;
    }
    
    .anim-letter span,
    .anim-mixed span {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}




/* ===== 8. BRANDS SLIDER ===== */
.hero-brands {
    width: 100%;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.brands-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    pointer-events: auto;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    align-items: center;
    animation: scrollBrands 40s linear infinite;
    gap: 40px;
    padding: 0 20px;
    will-change: transform;
}

.slider-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    height: 35px !important;
    width: auto !important;
    opacity: 0.9;
    transition: all 0.3s ease;
    object-fit: contain;
    flex-shrink: 0;
    cursor: pointer;
    filter: brightness(0) invert(1);
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

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

/* Light theme brand adjustments */
body.light-theme .hero-brands {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

body.light-theme .brand-logo {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

body.light-theme .brand-logo:hover {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* ===== 9. SWIPER CUSTOMIZATIONS ===== */
.swiper,
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
    transition-property: transform;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    z-index: 20;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination {
    display: none !important;
}

/* ===== 10. MEGA MENU ===== */
/* ===== 10. MEGA MENU ===== */
/* Positioning for mega menu containers */
.has-megamenu {
    position: static !important;
}

/* Note: .megamenu styles removed - using new hover submenu system in header.blade.php */
/* The new menu uses .dropdown-menu with .hover-submenu for submenus */

/* Grey background utility - used in menus */
.grey-bg-sapce {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
}

body.dark-theme .grey-bg-sapce {
    background-color: #2d2d44;
}

/* Link button styling */
.btn-link {
    color: #f26223;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-link:hover {
    text-decoration: underline;
}

/* ===== 11. NAVBAR & DROPDOWNS ===== *//* Dropdown styles */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu,
    .dropdown:hover .megamenu {
        display: block;
        margin-top: 0;
    }
    
    .dropdown-menu,
    .megamenu {
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        display: block !important;
        transform: translateY(10px);
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown:hover .megamenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ===== 12. SERVICES SECTION ===== */
.services-section {
    height: clamp(1000px,130vh , 1100px);
    max-height: 1400px;
    background: #f5f5f5;
    color: #000000f1;
    position: relative;
    z-index: 2;
}

.services-wrapper {
    position: sticky;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* ===== SERVICES SECTION RESPONSIVE HEIGHTS ===== */
/* Base at 1000px - 80vh section, 79vh wrapper *//* Industries Title Positioning - Optimized for 120px font size */
/* Base styles for industries-title */


/* Light theme gradients */
body.light-theme .services-title,
body.light-theme .services-text,
body.light-theme .services-text-second,
body.light-theme .industries-title,
body.light-theme .industries-text,
body.light-theme .industries-text-second {    
    background: linear-gradient(45deg, #0f2027, #203a43, #2c5364);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark theme gradients */
body.dark-theme .services-title,
body.dark-theme .services-text,
body.dark-theme .services-text-second,
body.dark-theme .industries-title,
body.dark-theme .industries-text,
body.dark-theme .industries-text-second {
    background: linear-gradient(45deg, #4158D0, #C850C0, #FFCC70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
}


/* MAIN TITLE - Gradient Text */
.services-title {
    position: absolute;
    font-size: 130px;
    font-weight: 700;    
    white-space: nowrap;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

/* FIRST PARAGRAPH - Gradient Text */
.services-text {
    width: max-content;
    position: absolute;
    font-size: 26px;
    opacity: 0;
    font-weight: 700;
    text-align: left;
    line-height: 1.5;    
    z-index: 15;
}

/* SECOND TITLE - With proper wrapping */
.services-text-second {    
    position: absolute;    
    font-size: 130px;
    font-weight: 700;
    margin-top: 1.5rem;
    opacity: 0;    
    line-height: 1.3;
    max-width: 50%;
    width: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    text-align: left;
    pointer-events: none;
    z-index: 20;
}


.services-text-second .rotate {
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CARDS AREA */
.services-cards {
    position: absolute;
    right: 6%;
    top: 25%;
    width: 38%;
    z-index: 30;
}

/* Rotating word styling */
.rotate {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 13. SERVICE CARDS - REDESIGNED TO MATCH INDUSTRY CARDS ===== */
.service-card {
    color: black;
    margin-bottom: 20px;
    padding: 20px 25px;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(242, 98, 35, 0.1);
    min-height: 140px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(250px);
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, box-shadow, background;
}

.service-card > * {
    pointer-events: none;
}

.service-card:hover {
    pointer-events: auto;
}

/* Left Icon Section */
.service-card .card-icon-section {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 98, 35, 0.1);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(242, 98, 35, 0.15);
    transition: all 0.4s ease;
}

.service-card-icon svg {
    width: 35px;
    height: 35px;
    stroke: #f26223;
    transition: all 0.4s ease;
}

/* Vertical Line */
.service-card .vertical-line {
    width: 3px;
    height: 70px;
    background: linear-gradient(180deg, rgba(242, 98, 35, 0.15) 0%, rgba(242, 98, 35, 0.9) 50%, rgba(242, 98, 35, 0.15) 100%);
    margin-left: 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(242, 98, 35, 0.3);
}

/* Content Section */
.service-card .card-content-section {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 10px;
}

.service-card .card-content strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--heading-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.service-card .card-content p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Arrow Section */
.service-card .card-arrow-section {
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.service-card .learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4158D0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card .learn-more-btn .arrow {
    font-size: 28px;
    transition: transform 0.3s ease;
    line-height: 1;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-12px) scale(1.08) translateZ(30px);
    box-shadow: 0 30px 50px rgba(242, 98, 35, 0.4);
    background: linear-gradient(145deg, #f26223, #ff8c5a, #ffb088) !important;
    border-left: 5px solid #ffffff !important;
    cursor: pointer;
    z-index: 100;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-icon {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: scale(1.1);
}

.service-card:hover .service-card-icon svg {
    stroke: #ffffff !important;
}

.service-card:hover .vertical-line {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 50%, rgba(255, 255, 255, 0.4) 100%);
    transform: scaleX(1.5);
}

.service-card:hover .card-content strong {
    color: #ffffff !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.service-card:hover .card-content p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-card:hover .learn-more-btn {
    color: #ffffff !important;
}

.service-card:hover .learn-more-btn .arrow {
    transform: translateX(8px);
}

/* Gradient backgrounds for each service card - Light theme */

/* Light theme - all service cards */
body.light-theme .service-card {
    border-left: 5px solid #000000 !important;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
}

/* Dark theme - all service cards */
body.dark-theme .service-card {
    border-left: 5px solid #ffffff !important;
    background: linear-gradient(145deg, #1e1e2f, #2c2c4c);
}

/* Per-card button colors (default) */
.service-card:nth-child(1) .learn-more-btn { color: #4158D0; }
.service-card:nth-child(2) .learn-more-btn { color: #f26223; }
.service-card:nth-child(3) .learn-more-btn { color: #C850C0; }
.service-card:nth-child(4) .learn-more-btn { color: #FF8C42; }

/* Dark theme service cards */
body.dark-theme .service-card {
    background: var(--card-bg);
    color: #f0f2ff;
}

body.dark-theme .service-card .card-content strong {
    color: #f0f2ff;
}

body.dark-theme .service-card .card-content p {
    color: #b0b7d9;
}

body.dark-theme .services-section {
    background: #1e1e2f;
}

/* ===== 14. FEATURED INSIGHTS SECTION ===== *//* ===== FEATURED INSIGHTS SECTION - COMPLETE ===== */

/* ===== FEATURED INSIGHTS SECTION - COMPLETE ===== */

.featured-insights-section {
    padding: 80px 0;
    background: var(--bg-secondary, #f8f9fa);
    position: relative;
    z-index: 2;
}

.featured-insights-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.insights-split {
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

.insights-left {
    flex: 0 0 45%;
    max-width: 45%;
    padding-bottom: 20px;
}

.insights-right {
    flex: 0 0 55%;
    max-width: 55%;
}

.insights-eyebrow {
    font-size: 16px;
    font-weight: 600;
    color: #f26223;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.insights-left .insights-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color, #1e2b45);
    margin-bottom: 15px;
}

.insights-left .insights-sub-title {
    font-size: 18px;
    color: var(--text-secondary, #6c757d);
    margin-bottom: 25px;
}

.insights-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #f26223;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.insights-btn:hover {
    background-color: #d44d1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 98, 35, 0.2);
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.insights-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.insights-row {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-end;
}

.insights-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insights-col-2 {
    transform: translateY(50px);
}

.insights-col-3 {
    transform: translateY(-40px);
}

/* ===== INSIGHT CARD STYLES ===== */
.insight-card {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    aspect-ratio: 4/3;
    background-color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.insight-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.6s ease;
    border-radius: 16px;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-card:hover .insight-card-image {
    transform: scale(1.1);
}

/* OVERLAY - With scale effect on hover */
.insight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: all 0.5s ease;
    border-radius: 16px;
}

.insight-card:hover .insight-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
    transform: scale(1.05);
}

/* CARD CONTENT - Stable positioning */
.insight-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    z-index: 3;
    color: white;
    transition: all 0.4s ease;
}

/* CATEGORY BADGE - Zoom and scale effect on hover */
.insight-card-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #f26223;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 12px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    z-index: 5;
}

/* Category badge zoom effect on card hover */
.insight-card:hover .insight-card-category {
    transform: scale(1.1) translateY(-3px);
    background: rgba(242, 98, 35, 0.85);
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(242, 98, 35, 0.4);
}

/* TITLE STYLES */
.insight-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* BUTTON - Orange color on hover with scale effect */
.insight-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.insight-card:hover .insight-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.insight-card-btn span {
    transition: color 0.3s ease;
}

.insight-card-btn:hover {
    color: #f26223 !important;
    transform: translateX(3px);
}

.insight-card-btn:hover svg {
    transform: translateX(3px);
}

.insight-card-btn svg {
    transition: transform 0.3s ease;
}

.insight-card-btn svg path {
    stroke: currentColor;
    transition: stroke 0.3s ease;
}

.insight-card-btn:hover svg path {
    stroke: #f26223;
}

/* Dark theme adjustments */
body.dark-theme .featured-insights-section {
    background: var(--bg-secondary, #1e1e2f);
}

body.dark-theme .insight-card-category {
    background: rgba(0, 0, 0, 0.7);
}

body.dark-theme .insight-card:hover .insight-card-category {
    background: rgba(242, 98, 35, 0.9);
    color: #ffffff;
}

/* ===== RESPONSIVE STYLES ===== */
/* Above 1200px - Original desktop layout */
@media (min-width: 1200px) {
    .insights-split {
        display: flex;
        gap: 40px;
        align-items: flex-end;
    }
    
    .insights-left {
        flex: 0 0 45%;
        max-width: 45%;
    }
    
    .insights-right {
        flex: 0 0 55%;
        max-width: 55%;
    }
    
    .insights-row {
        display: flex;
        gap: 20px;
    }
    
    .insights-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .insights-col-2 {
        transform: translateY(50px);
    }
    
    .insights-col-3 {
        transform: translateY(-40px);
    }
}

/* Below 1200px - Stack cards vertically */
@media (max-width: 1199px) {
    .featured-insights-section {
        padding: 60px 0;
        width: 100%;
    }
    
    .insights-split {
        flex-direction: column;
        gap: 40px;
    }
    
    .insights-left,
    .insights-right {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .insights-left {
        text-align: center;
        padding-bottom: 0;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .insights-left .insights-main-title {
        font-size: 38px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .insights-left .insights-sub-title {
        font-size: 16px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .insights-row {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .insights-col {
        width: 100%;
        max-width: 600px;
        transform: translateY(0) !important;
    }
    
    .insights-col-2,
    .insights-col-3 {
        transform: translateY(0) !important;
    }
    
    .insights-col {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .insight-card {
        width: 100%;
        aspect-ratio: 16/9;
    }
    
    .insight-card-content {
        padding: 10px;
    }
    
    .insight-card-title {
        font-size: 18px;
        -webkit-line-clamp: 2;
    }
    
    .insight-card-category {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .insight-card-btn {
        font-size: 14px;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet adjustments (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .insights-left .insights-main-title {
        font-size: 36px;
    }
    
    .insights-left .insights-sub-title {
        font-size: 16px;
    }
    
    .insight-card {
        aspect-ratio: 16/9;
    }
    
    .insight-card-title {
        font-size: 18px;
    }
    
    .insights-col {
        max-width: 600px;
    }
}

/* Mobile adjustments (below 768px) */
@media (max-width: 767px) {
    .featured-insights-section {
        padding: 40px 0;
    }
    
    .insights-left .insights-main-title {
        font-size: 28px;
    }
    
    .insights-left .insights-sub-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .insights-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .insights-row {
        gap: 20px;
    }
    
    .insights-col {
        gap: 20px;
        max-width: 100%;
    }
    
    .insight-card {
        aspect-ratio: 4/3;
    }
    
    .insight-card-content {
        padding: 10px;
    }
    
    .insight-card-title {
        font-size: 16px;
        -webkit-line-clamp: 2;
    }
    
    .insight-card-category {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .insight-card-btn {
        font-size: 13px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .insight-card:hover .insight-card-category {
        transform: scale(1.05) translateY(-2px);
    }
}

/* Small mobile (below 480px) */
@media (max-width: 479px) {
    .insights-left .insights-main-title {
        font-size: 24px;
    }
    
    .insights-left .insights-sub-title {
        font-size: 13px;
    }
    
    .insights-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .insight-card {
        aspect-ratio: 3/2;
    }
    
    .insight-card-content {
        padding: 12px;
    }
    
    .insight-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .insight-card-category {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .insight-card-btn {
        font-size: 12px;
    }
}

/* Fix for very large screens */
@media (min-width: 1600px) {
    .featured-insights-section .container {
        max-width: 1500px;
    }
    
    .insights-left .insights-main-title {
        font-size: 48px;
    }
    
    .insights-left .insights-sub-title {
        font-size: 20px;
    }
    
    .insight-card-title {
        font-size: 18px;
    }
    
    .insight-card-content {
        padding: 10px;
    }
}

/* Ensure images load properly */
.insight-card-image img {
    object-position: center;
    width: 100%;
    height: 100%;
}

/* Hover effects disable on touch devices */
@media (hover: none) and (pointer: coarse) {
    .insight-card:hover .insight-card-image {
        transform: none;
    }
    
    .insight-card:hover .insight-card-content {
        transform: none;
    }
    
    .insight-card .insight-card-btn {
        opacity: 1;
        transform: translateY(0);
    }
    
    .insight-card:hover .insight-card-overlay {
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
        transform: none;
    }
    
    .insight-card:hover .insight-card-category {
        transform: none;
        background: rgba(0, 0, 0, 0.6);
        color: #f26223;
    }
}

/* ===== 15. CARD BLOCK SLIDER ===== */
.cardblock-slider-sec {
    padding: 120px 0;
    background: var(--bg-tertiary);
    position: relative;
    overflow: visible;
    z-index: 2;
}

.cardblock-slider-sec .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cardblock-slider-wrapper {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.cardblock-slider-wrapper .left-content-sec {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.cardblock-slider-wrapper .left-content-sec h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.cardblock-slider-wrapper .left-content-sec h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f26223, #ff9f4b);
    border-radius: 4px;
}

.cardblock-slider-wrapper .left-content-sec p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
    padding-left: 20px;
    border-left: 3px solid rgba(242, 98, 35, 0.3);
}

.cardblock-slider-wrapper .right-scroll-sec {
    flex: 0 0 60%;
    max-width: 60%;
    position: relative;
    overflow: visible;
}

.vertical-slider-sec {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 800px;
    overflow-y: auto !important;
    padding-right: 25px;
    padding-top: 20px;
    padding-bottom: 30px;
    position: relative;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.vertical-slider-sec::-webkit-scrollbar {
    display: none !important;
}

.vertical-slider-sec .card-item {
    width: 100%;
    transition: all 0.8s cubic-bezier(0.2, 0.1, 0.1, 1.2);
    position: relative;
    z-index: 5;
    margin: 8px 0;
    transform-origin: left center;
}

.vertical-slider-sec .card-item a {
    text-decoration: none;
    display: block;
}

.vertical-slider-sec .card-item .box-wrpper {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 30px 25px;
    min-height: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: all 0.8s cubic-bezier(0.2, 0.1, 0.1, 1.2);
    border-left: 4px solid transparent;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
    transform-origin: left center;
}

body.light-theme .vertical-slider-sec .card-item .box-wrpper {
    background: #f8fafc;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

body.dark-theme .vertical-slider-sec .card-item .box-wrpper {
    background: #25253a;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.vertical-slider-sec .card-item .link-wrap {
    flex: 0 0 60px;
    height: 60px;
    background: rgba(242, 98, 35, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease 0.3s;
    flex-shrink: 0;
}

.vertical-slider-sec .card-item .link-wrap svg {
    width: 35px;
    height: 35px;
    transition: all 0.6s ease 0.3s;
}

.vertical-slider-sec .card-item .link-wrap svg * {
    stroke: #f26223;
    stroke-width: 1.5;
    transition: stroke 0.6s ease 0.3s;
}

.vertical-slider-sec .card-item .content-wrpr {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.vertical-slider-sec .card-item .content-wrpr h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--heading-color);
    transition: all 0.7s ease 0.5s;
    line-height: 1.3;
}

.vertical-slider-sec .card-item .content-wrpr p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0;
    transition: all 0.7s ease 0.6s;
    max-width: 100%;
    opacity: 0.9;
}

.vertical-slider-sec .card-item .roundArrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease 0.4s;
    flex-shrink: 0;
}

body.dark-theme .vertical-slider-sec .card-item .roundArrow {
    background: rgba(255, 255, 255, 0.05);
}

.vertical-slider-sec .card-item .roundArrow img {
    width: 18px;
    height: 18px;
    filter: brightness(0.4);
    transition: all 0.6s ease 0.4s;
}

body.dark-theme .vertical-slider-sec .card-item .roundArrow img {
    filter: brightness(1) invert(0.8);
}

.vertical-slider-sec .card-item:hover {
    z-index: 1000;
}

.vertical-slider-sec .card-item:hover .box-wrpper {
    padding: 45px 40px 45px 50px;
    min-height: 280px;
    margin: 30px 0 30px 0;
    gap: 30px;
    border-left-width: 8px;
    border-left-color: #ffffff;
    box-shadow: 0 40px 70px rgba(242, 98, 35, 0.4);
    transition: all 0.9s cubic-bezier(0.15, 0.1, 0.1, 1.1);
}

body.light-theme .vertical-slider-sec .card-item:hover .box-wrpper {
    background: linear-gradient(145deg, #f26223, #ff8c5a, #ffb088);
}

body.dark-theme .vertical-slider-sec .card-item:hover .box-wrpper {
    background: linear-gradient(145deg, #f26223, #d44d1a, #b33d15);
}

.vertical-slider-sec .card-item:hover .link-wrap {
    flex: 0 0 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    transform: scale(1.1) translateX(-5px);
    transition: all 0.8s cubic-bezier(0.25, 0.2, 0.2, 1.2) 0.4s;
}

.vertical-slider-sec .card-item:hover .link-wrap svg {
    width: 65px;
    height: 65px;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.25, 0.2, 0.2, 1.2) 0.4s;
}

.vertical-slider-sec .card-item:hover .link-wrap svg * {
    stroke: #ffffff;
    transition: stroke 0.8s ease 0.4s;
}

.vertical-slider-sec .card-item:hover .content-wrpr {
    gap: 12px;
    transform: translateX(-5px);
    transition: transform 0.8s cubic-bezier(0.25, 0.2, 0.2, 1.2) 0.6s;
}

.vertical-slider-sec .card-item:hover .content-wrpr h4 {
    font-size: 32px;
    color: #ffffff !important;
    margin-bottom: 8px;
    transition: all 0.9s cubic-bezier(0.3, 0.2, 0.2, 1.2) 0.7s;
}

.vertical-slider-sec .card-item:hover .content-wrpr p {
    font-size: 20px;
    color: #ffffff !important;
    line-height: 1.6;
    opacity: 1;
    transition: all 0.9s cubic-bezier(0.3, 0.2, 0.2, 1.2) 0.8s;
}

.vertical-slider-sec .card-item:hover .roundArrow {
    width: 65px;
    height: 65px;
    background: #ffffff;
    margin-right: 10px;
    transform: scale(1.15) translateX(-5px);
    transition: all 0.8s cubic-bezier(0.25, 0.2, 0.2, 1.2) 0.5s;
}

.vertical-slider-sec .card-item:hover .roundArrow img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(0);
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.25, 0.2, 0.2, 1.2) 0.5s;
}

/* Card block slider hover margins */
.vertical-slider-sec .card-item:first-child:hover {
    margin-bottom: 40px;
    transition: margin 0.9s cubic-bezier(0.15, 0.1, 0.1, 1.1);
}

.vertical-slider-sec .card-item:last-child:hover {
    margin-top: 40px;
    transition: margin 0.9s cubic-bezier(0.15, 0.1, 0.1, 1.1);
}

.vertical-slider-sec .card-item:not(:first-child):not(:last-child):hover {
    margin: 40px 0;
    transition: margin 0.9s cubic-bezier(0.15, 0.1, 0.1, 1.1);
}

.vertical-slider-sec .card-item:hover ~ .card-item {
    opacity: 0.8;
    filter: brightness(0.95);
    transition: all 0.6s ease 0.5s;
}

/* Glow pulse animation */
@keyframes glowPulse {
    0% { opacity: 0; left: -5px; }
    50% { opacity: 0.5; left: -10px; }
    100% { opacity: 0; left: -5px; }
}

.vertical-slider-sec .card-item:hover .box-wrpper::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5px;
    width: 10px;
    height: 80%;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
    border-radius: 10px;
    opacity: 0;
    animation: glowPulse 2.5s infinite ease-in-out 1s;
}

/* ===== 16. WHY CHOOSE US SECTION ===== *//* Footer with mobile responsive */
.why-choose-us-section {
    padding: 100px 0;
    background: rgb(231, 229, 229);
    position: relative;
    overflow: visible;
    z-index: 2;
    min-height: 600px;
}

.why-choose-us-section .container {
    position: relative;
    z-index: 3;
}

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

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading h2 span {
    color: #f26223;
}

.section-heading p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-us-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 700px;
    gap: 20px;
    overflow: visible;
}

.choose-card {
    background: transparent;
    color: var(--text-primary);
    margin-bottom: 0;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 350px;
    box-shadow: none;
    min-height: auto;
    will-change: transform, opacity, filter;
    transform-origin: center center;
    backface-visibility: hidden;
    position: absolute;
    z-index: 10;
}

/* Remove the previous margin and transform styles */
.card-1, .card-2, .card-3, .card-4 {
    margin: 0;
    transform: none;
}

.center-image {
    position: relative;
    z-index: 30;
    flex: 0 0 auto;
    margin: 0 40px;    
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: centerPulse 3s infinite ease-in-out;
}
/* Lines container styling */
.why-choose-us-section .lines-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px; /* Space between lines and cards */
    position: relative;
    z-index: 5;
}

.why-choose-us-section .lines-image {
    width: 100%;
    max-width: 1200px; /* Adjust based on your design */
    height: auto;
    object-fit: contain;
}

/* Adjust the wrapper to account for lines above */
.why-choose-us-section .why-choose-us-wrapper {
    position: relative;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-us-section .lines-container {
        margin-bottom: 20px;
    }
    
    .why-choose-us-section .lines-image {
        max-width: 100%;
    }
}

@keyframes centerPulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

.cards-left, .cards-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 5;
    overflow: visible;
}

.choose-card:hover {
    transform: translateY(-5px);
}

.cards-left .choose-card {
    margin-left: auto;
    text-align: left;
}

.cards-right .choose-card {
    margin-right: auto;
    text-align: left;
}

.choose-card .card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #f26223;
    margin-bottom: 8px;
    display: block;
}

.choose-card .card-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: 1.4;
    display: block;
}

.choose-card .card-content p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.card-1 {
    margin-right: 30px;
    transform: translateX(-10px);
    margin-bottom: 10px;
}

.card-2 {
    margin-left: 30px;
    transform: translateX(10px);
    margin-bottom: 10px;
}

.card-3 {
    margin-top: 60px;
    margin-right: 40px;
    transform: translateX(-15px);
}

.card-4 {
    margin-top: 60px;
    margin-left: 40px;
    transform: translateX(15px);
}

.cards-left .card-3,
.cards-right .card-4 {
    margin-bottom: 20px;
}

/* Mobile Responsive for Why Choose Us - Devices under 1000px */
@media screen and (max-width: 1000px) {
    /* Disable all GSAP animations by setting elements to visible state */
    .choose-card {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 1 !important;
        scale: 1 !important;
        filter: none !important;
        margin: 0 auto !important;
        visibility: visible !important;
    }
    
    .why-choose-us-wrapper {
        flex-direction: column;
        min-height: auto;
        gap: 30px;
    }
    
    .cards-left {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        order: 1;
    }
    
    /* First row - Two cards */
    .cards-left .card-1,
    .cards-left .card-2 {
        width: calc(50% - 10px);
        max-width: 300px;
        margin: 0 !important;
    }
    
    /* Center image row */
    .center-image {
        position: relative;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
        order: 2;
    }
    
    /* Second row - Two cards */
    .cards-right {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        order: 3;
    }
    
    .cards-right .card-3,
    .cards-right .card-4 {
        width: calc(50% - 10px);
        max-width: 300px;
        margin: 0 !important;
    }
    
    /* Center text alignment */
    .cards-left .choose-card,
    .cards-right .choose-card {
        text-align: center;
    }
    
    /* Remove any absolute positioning artifacts */
    .why-choose-us-wrapper [style*="position: absolute"] {
        position: relative !important;
    }
}

/* Smaller mobile devices */
@media screen and (max-width: 600px) {
    .cards-left, .cards-right {
        gap: 15px;
    }
    
    .cards-left .card-1,
    .cards-left .card-2,
    .cards-right .card-3,
    .cards-right .card-4 {
        width: 100%;
        max-width: 350px;
    }
    
    .section-heading h2 {
        font-size: 32px;
    }
    
    .section-heading p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .center-image {
        max-width: 250px;
        margin: 15px auto;
    }
}

/* Very small mobile devices */
@media screen and (max-width: 380px) {
    .center-image {
        max-width: 200px;
    }
    
    .choose-card .card-content h3 {
        font-size: 20px;
    }
    
    .choose-card .card-content h4 {
        font-size: 16px;
    }
    
    .choose-card .card-content p {
        font-size: 14px;
    }
}

body.dark-theme .choose-card {
    border-bottom: 1px solid #444;
}

body.dark-theme .choose-card .card-content h4 {
    color: #f0f2ff;
}

body.dark-theme .choose-card .card-content p {
    color: #b0b7d9;
}

body.dark-theme .section-heading h2 {
    color: #f0f2ff;
}

body.dark-theme .section-heading p {
    color: #b0b7d9;
}
/* ===== 17. STRATEGIC DIFFERENTIATORS ===== */
.strategic-diff-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(135deg, #0b1a33 0%, #1a2f4a 100%) !important;
    text-align: center;
}

body.light-theme .strategic-diff-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e9edf2 100%) !important;
}

.strategic-diff-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.strategic-diff-section .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: #ffffff !important;
}

body.light-theme .strategic-diff-section .section-header h2 {
    color: #1e2b45 !important;
}

.strategic-diff-section .section-header h2 span {
    color: #f26223 !important;
}

.strategic-diff-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f26223, #ff9f4b);
    border-radius: 4px;
}

.strategic-diff-section .section-subtitle {
    font-size: 20px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8) !important;
}

body.light-theme .strategic-diff-section .section-subtitle {
    color: #4a5568 !important;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

body.light-theme .diff-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.diff-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(242, 98, 35, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.diff-icon svg {
    width: 55px;
    height: 55px;
    transition: all 0.4s ease;
}

.diff-icon svg * {
    stroke: #f26223;
    stroke-width: 1.8;
    transition: all 0.4s ease;
}

.diff-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.diff-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

body.light-theme .diff-content h3 {
    color: #1e2b45 !important;
}

body.light-theme .diff-content p {
    color: #4a5568 !important;
}

.diff-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #f26223;
    box-shadow: 0 40px 80px rgba(242, 98, 35, 0.3);
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

body.light-theme .diff-card:hover {
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(242, 98, 35, 0.2);
}

.diff-card:hover .diff-icon {
    background: #f26223;
    transform: scale(1.15) rotate(5deg);
}

.diff-card:hover .diff-icon svg * {
    stroke: #ffffff;
}

.diff-card:hover .diff-content h3 {
    color: #f26223 !important;
}

/* Strategic diff section decorative gradients */
.strategic-diff-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 98, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.strategic-diff-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 98, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* ===== 18. INDUSTRIES SECTION ===== */
/* ===== 16. INDUSTRIES SECTION - OPTIMIZED FOR GSAP ===== */
.industries-section {
    height: clamp(850px,100vh , 900px);
    background: var(--bg-secondary, #f5f5f5);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.industries-wrapper {
    position: sticky;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Industries */
.industries-title {
    position: absolute;
    font-size: clamp(50px, 8vw, 110px);    
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;
}

.industries-text {
    position: absolute;
    width: 100%;
    font-size: 25px;
    opacity: 0;
    font-weight: 700;
    text-align: center;    
    z-index: 15;
}

.industries-text-second {
    position: absolute;    
    font-size: 60px;
    font-weight: 700;
    opacity: 0;
    line-height: 1.3;
    max-width: 50%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    z-index: 20;
}

.industries-rotate {
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 19. INDUSTRY CARDS CONTAINER ===== */
.industries-cards {
    position: absolute;
    right: 6%;
    top: 25%;
    width: 38%;
    z-index: 30;
    perspective: 1200px;
}

/* Individual industry card - REDUCED HEIGHT */
/* Individual industry card - REDUCED HEIGHT */
.industries-section .industry-card {
    color: black;
    margin-bottom: 20px;
    padding: 20px 25px;
    border-bottom: none;
    background: var(--card-bg, #ffffff);
    border-radius: 20px;
    box-shadow: var(--card-shadow, 0 15px 35px rgba(0,0,0,0.1));
    position: relative;
    z-index: 1;
    border: 1px solid rgba(242, 98, 35, 0.15);
    min-height: 140px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(300px);  /* ← ADD THIS - match your JS y value */
    opacity: 0;  /* ← Keep this */
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, box-shadow, background;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2),
                box-shadow 0.4s ease,
                background 0.4s ease;
}
.industries-section .industry-card > * {
    pointer-events: none;
}

.industries-section .industry-card:hover {
    pointer-events: auto;
}

.industries-section .card-icon-section {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.industries-section .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 98, 35, 0.12);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(242, 98, 35, 0.15);
    transition: all 0.3s ease;
}

.industries-section .card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: filter 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.industries-section .vertical-line {
    width: 3px;
    height: 70px;
    background: linear-gradient(180deg, rgba(242, 98, 35, 0.15) 0%, rgba(242, 98, 35, 0.9) 50%, rgba(242, 98, 35, 0.15) 100%);
    margin-left: 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(242, 98, 35, 0.3);
}

.industries-section .card-content-section {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 10px;
}

.industries-section .card-content strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--heading-color, #212529);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.industries-section .card-content p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-secondary, #6c757d);
    margin: 0;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: all 0.3s ease;
}

.industries-section .card-arrow-section {
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.industries-section .learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.industries-section .learn-more-btn .arrow {
    font-size: 28px;
    transition: transform 0.3s ease;
    line-height: 1;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.industries-section .industry-card:hover {
    transform: translateY(-12px) scale(1.08) translateZ(30px);
    box-shadow: 0 30px 50px rgba(242, 98, 35, 0.45);
    background: linear-gradient(145deg, #f26223, #ff8c5a, #ffb088) !important;
    border-left: 5px solid #ffffff !important;
    cursor: pointer;
    z-index: 100;
    transform-style: preserve-3d;
}

.industries-section .industry-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.industries-section .industry-card:hover .card-icon img {
    filter: brightness(0) invert(1);
}

.industries-section .industry-card:hover .vertical-line {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 50%, rgba(255, 255, 255, 0.4) 100%);
    transform: scaleX(1.5);
}

.industries-section .industry-card:hover .card-content strong {
    color: #ffffff !important;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.industries-section .industry-card:hover .card-content p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.industries-section .industry-card:hover .learn-more-btn {
    color: #ffffff !important;
}

.industries-section .industry-card:hover .learn-more-btn .arrow {
    transform: translateX(8px);
}

/* Gradient backgrounds for each industry card - Light theme */
body.light-theme .industries-section .industry-card:nth-child(1) {
    background: linear-gradient(145deg, #ffffff, #f0f5ff);
    border-left: 5px solid #4158D0;
}

body.light-theme .industries-section .industry-card:nth-child(2) {
    background: linear-gradient(145deg, #ffffff, #f0fff4);
    border-left: 5px solid #4ECDC4;
}

body.light-theme .industries-section .industry-card:nth-child(3) {
    background: linear-gradient(145deg, #ffffff, #fff0f5);
    border-left: 5px solid #C850C0;
}

body.light-theme .industries-section .industry-card:nth-child(4) {
    background: linear-gradient(145deg, #ffffff, #fef9e7);
    border-left: 5px solid #FFB347;
}

body.light-theme .industries-section .industry-card:nth-child(5) {
    background: linear-gradient(145deg, #ffffff, #f0f0ff);
    border-left: 5px solid #6c5ce7;
}

body.light-theme .industries-section .industry-card:nth-child(6) {
    background: linear-gradient(145deg, #ffffff, #ffe8e8);
    border-left: 5px solid #ff6b6b;
}

/* Gradient backgrounds for each industry card - Dark theme */
body.dark-theme .industries-section .industry-card:nth-child(1) {
    background: linear-gradient(145deg, #2a2a45, #1e1e3a);
    border-left: 5px solid #4158D0;
}

body.dark-theme .industries-section .industry-card:nth-child(2) {
    background: linear-gradient(145deg, #2a2a45, #1e3a2a);
    border-left: 5px solid #4ECDC4;
}

body.dark-theme .industries-section .industry-card:nth-child(3) {
    background: linear-gradient(145deg, #2a2a45, #3a1e3a);
    border-left: 5px solid #C850C0;
}

body.dark-theme .industries-section .industry-card:nth-child(4) {
    background: linear-gradient(145deg, #2a2a45, #3a2a1e);
    border-left: 5px solid #FFB347;
}

body.dark-theme .industries-section .industry-card:nth-child(5) {
    background: linear-gradient(145deg, #2a2a45, #1e2a3a);
    border-left: 5px solid #6c5ce7;
}

body.dark-theme .industries-section .industry-card:nth-child(6) {
    background: linear-gradient(145deg, #2a2a45, #3a1e1e);
    border-left: 5px solid #ff6b6b;
}

/* Industries rotating word */
.industries-rotate {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark theme adjustments */
body.dark-theme .industries-section .industry-card {
    color: #f0f2ff;
}

body.dark-theme .industries-section .industry-card .card-content strong {
    color: #f0f2ff;
}

body.dark-theme .industries-section .industry-card .card-content p {
    color: #b0b7d9;
}

body.dark-theme .industries-section {
    background: #1e1e2f;
}

/* Responsive adjustments for cards */
@media (max-width: 1400px) {
    .industries-section .industry-card,
    .service-card {
        min-height: 130px;
        height: 130px;
        padding: 15px 20px;
    }
    
    .industries-section .card-icon,
    .service-card-icon {
        width: 55px;
        height: 55px;
    }
    
    .industries-section .card-icon img {
        width: 35px;
        height: 35px;
    }
    
    .service-card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .industries-section .card-content strong,
    .service-card .card-content strong {
        font-size: 20px;
    }
    
    .industries-section .vertical-line,
    .service-card .vertical-line {
        height: 60px;
    }
}

@media (max-width: 1200px) {
    .industries-cards,
    .services-cards {
        width: 45%;
        top: 22%;
    }
    
    .industries-section .industry-card,
    .service-card {
        min-height: 120px;
        height: 120px;
    }
    
    .industries-section .card-icon-section,
    .service-card .card-icon-section {
        flex: 0 0 70px;
    }
}

@media (max-width: 992px) {
    .industries-wrapper,
    .services-wrapper {
        height: auto;
        position: relative;
        flex-direction: column;
        padding: 60px 20px;
    }
    
    .industries-title,
    .services-title {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        font-size: 60px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .industries-text,
    .services-text {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 10px auto;
        text-align: center;
        max-width: 80%;
    }
    
    .industries-text-second,
    .services-text-second {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 20px auto;
        text-align: center;
        max-width: 80%;
        font-size: 60px;
    }
    
    .industries-cards,
    .services-cards {
        position: relative;
        right: 0;
        top: 0;
        width: 90%;
        margin: 30px auto;
    }
    
    .industries-section .industry-card,
    .service-card {
        transform: translateY(0);
        opacity: 1;
        height: auto;
        min-height: 110px;
    }
}

@media (max-width: 768px) {
    .industries-section .industry-card,
    .service-card {
        min-height: 100px;
        padding: 12px 15px;
        gap: 10px;
    }
    
    .industries-section .card-icon-section,
    .service-card .card-icon-section {
        flex: 0 0 60px;
    }
    
    .industries-section .card-icon,
    .service-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .industries-section .card-icon img {
        width: 28px;
        height: 28px;
    }
    
    .service-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .industries-section .vertical-line,
    .service-card .vertical-line {
        height: 50px;
        margin-left: 8px;
    }
    
    .industries-section .card-content strong,
    .service-card .card-content strong {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .industries-section .card-content p,
    .service-card .card-content p {
        font-size: 12px;
    }
    
    .industries-section .card-arrow-section,
    .service-card .card-arrow-section {
        flex: 0 0 35px;
    }
    
    .industries-section .learn-more-btn .arrow,
    .service-card .learn-more-btn .arrow {
        font-size: 24px;
    }
}

/* ===== 20. CONTACT SECTION ===== */
.contact-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

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

.contact-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.contact-section .section-header h2 span {
    color: #f26223;
}

.contact-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f26223, #ff9f4b);
    border-radius: 4px;
}

.contact-section .section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    position: relative;
    z-index: 10;
}

.contact-element {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.contact-element-left {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-element-right {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-element svg {
    width: 150px;
    height: 150px;
}

.contact-form-container.minimal {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    z-index: 20;
    backdrop-filter: none;
}

/* ===== FORM GRID SYSTEM - COMPACT ===== */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
    margin-bottom: 12px;
}

.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.form-row .col-md-6:only-child {
    flex: 0 0 100%;
    max-width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--heading-color);
    font-size: 13px;
    letter-spacing: 0.3px;
}

.form-control.minimal {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-color);
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.form-control.minimal:focus {
    outline: none;
    border-bottom-color: #f26223;
    box-shadow: none;
}

.form-control.minimal::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-control.error {
    border-bottom-color: #dc3545 !important;
}

.form-control.success {
    border-bottom-color: #28a745 !important;
}

.error-message {
    color: #dc3545;
    font-size: 11px;
    margin-top: 3px;
    display: block;
}

select.form-control.minimal {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 14px;
    padding-right: 25px;
}

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

.consent-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.custom-control {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.custom-control-input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #f26223;
}

.custom-control-label {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-secondary);
    cursor: pointer;
}

.custom-control-label strong {
    color: var(--heading-color);
    font-weight: 600;
}

.custom-control-label a {
    color: #f26223;
    text-decoration: none;
    font-weight: 500;
}

.custom-control-label a:hover {
    text-decoration: underline;
}

.submit-btn.minimal {
    display: inline-block;
    padding: 10px 35px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #f26223;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(242, 98, 35, 0.2);
}

.submit-btn.minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 98, 35, 0.3);
    background: #d44d1a;
}

.form-success {
    margin-top: 20px;
    padding: 15px;
    background: rgba(242, 98, 35, 0.1);
    border-left: 3px solid #f26223;
    border-radius: 6px;
    text-align: center;
}

.form-success p {
    margin: 0;
    color: var(--text-primary);
    font-size: 15px;
}

.form-success p strong {
    color: #f26223;
}

@media (max-width: 767px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .form-row {
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .contact-element {
        opacity: 0.2;
    }
    
    .contact-element-left {
        left: -30px;
    }
    
    .contact-element-right {
        right: -30px;
    }
    
    .contact-element svg {
        width: 100px;
        height: 100px;
    }
    
    .submit-btn.minimal {
        width: 100%;
        padding: 12px;
    }
    
    .custom-control-input {
        width: 18px;
        height: 18px;
    }
    
    .custom-control-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-section .section-header h2 {
        font-size: 32px;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    
    .contact-section .section-header {
        margin-bottom: 20px;
    }
    
    .contact-element {
        display: none;
    }
}

body.light-theme .form-control.minimal {
    border-bottom-color: #ddd;
    color: #333;
}

body.dark-theme .form-control.minimal {
    border-bottom-color: #444;
    color: #e4e6ef;
}

body.light-theme .form-control.minimal:focus {
    border-bottom-color: #f26223;
}

body.light-theme .form-label {
    color: #555555;
}

body.light-theme .custom-control-label {
    color: #666666;
}

body.light-theme .custom-control-label strong {
    color: #333333;
}

body.dark-theme .form-control.minimal:focus {
    border-bottom-color: #f26223;
}

body.dark-theme .form-label {
    color: #b5b5c3;
}

body.dark-theme select.form-control.minimal {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b5b5c3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

body.dark-theme .custom-control-label {
    color: #b5b5c3;
}

body.dark-theme .custom-control-label strong {
    color: #e4e6ef;
}

body.dark-theme select.form-control.minimal option {
    background-color: #1e1e2d;
    color: #e4e6ef;
}

body.light-theme .form-success {
    background: rgba(242, 98, 35, 0.05);
}

body.dark-theme .form-success {
    background: rgba(242, 98, 35, 0.15);
}

/* ===== 21. NUMBERS SECTION ===== */
#numbers-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-tertiary);
}

#numbers-section h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

#numbers-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===== 22. CTA SECTION ===== */
.theme-aware-cta-section {
    padding: 100px 0;
    background: var(--bg-secondary) !important;
    position: relative;
    z-index: 2;
}

.theme-aware-cta-section .btn {
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.theme-aware-cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 98, 35, 0.4);
}

/* ===== 23. BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f26223;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(242, 98, 35, 0.3);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #d44d1a;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 98, 35, 0.4);
}

.back-to-top i, 
.back-to-top svg {
    font-size: 20px;
}

/* ===== 24. SEARCH POPUP ===== */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-popup.show {
    display: flex;
}

.search-popup .search-form {
    width: 80%;
    max-width: 600px;
    position: relative;
}

.search-popup .search-form input {
    width: 100%;
    padding: 20px 30px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    outline: none;
    background: white;
    color: #333;
}

.search-popup .search-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #f26223;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-popup .search-form button:hover {
    background: #d44d1a;
    transform: translateY(-50%) scale(1.1);
}

.search-popup .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-popup .close-btn:hover {
    background: #f26223;
    transform: rotate(90deg);
}

/* ===== 25. FOOTER ===== */footer { 
    position: relative; 
    padding: 3rem; 
    z-index: 2; 
    background-image: url('/images/footer-background.svg'); 
    background-size: auto; 
    background-position: bottom right; 
    background-repeat: no-repeat; 
    transition: all 0.3s ease; 
} 

/* Light theme footer */ 
body.light-theme footer { 
    background-color: var(--footer-bg); 
    background-blend-mode: overlay; 
} 

/* Dark theme footer */ 
body.dark-theme footer { 
    background-color: var(--footer-bg, #04048d8f); 
    background-blend-mode: overlay; 
} 

/* Container styles - centered content */
footer .container { 
    position: relative; 
    z-index: 2; 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* ===== RESPONSIVE BACKGROUND ===== */
@media screen and (max-width: 1000px) { 
    footer { 
        background-position: bottom center; 
        background-size: 80% auto; 
        background-repeat: no-repeat; 
        padding: 3rem 1.5rem;
    } 
} 

@media screen and (max-width: 768px) { 
    footer { 
        background-size: 70% auto; 
        background-position: bottom center;
        padding: 2.5rem 1.25rem;
    } 
} 

@media screen and (max-width: 600px) { 
    footer { 
        background-size: 60% auto; 
        background-position: bottom center; 
        min-height: 300px;
        padding: 2rem 1rem;
    } 
} 

@media screen and (max-width: 480px) { 
    footer { 
        background-size: 50% auto; 
        background-position: bottom center; 
        padding-bottom: 2rem;
        padding: 1.5rem 0.75rem;
    } 
} 

@media screen and (max-width: 380px) { 
    footer { 
        background-size: 45% auto; 
        background-position: bottom center;
        padding: 1.25rem 0.5rem;
    } 
}

/* ===== FOOTER CONTENT STYLES ===== */
footer, 
footer h4, 
footer .footer-widget h4, 
footer p, 
footer span, 
footer li { 
    color: var(--footer-text, #1e2b45); 
} 

/* Base link colors */ 
footer a { 
    color: var(--footer-link, #4a5568); 
    text-decoration: none; 
    transition: all 0.3s ease; 
} 

footer a:hover { 
    color: var(--footer-link-hover, #f26223) !important; 
    padding-left: 3px; 
} 

/* Footer heading */ 
footer h4 { 
    margin-bottom: 12px; 
    font-size: 20px; 
    font-weight: 600; 
    position: relative; 
    padding-bottom: 6px; 
} 

footer h4::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 30px; 
    height: 2px; 
    background: var(--footer-link-hover, #f26223); 
    transition: width 0.3s ease; 
} 

/* Lists */ 
footer ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
} 

footer ul li { 
    margin-bottom: 6px; 
} 

footer ul li a { 
    font-size: 13px; 
    transition: all 0.3s ease; 
    display: inline-block; 
    line-height: 1.4; 
} 

footer ul li a:hover { 
    transform: translateX(3px); 
} 

footer ul li ul, 
footer ul li .list-unstyled { 
    margin-top: 4px; 
} 

footer .list-unstyled.mt-4 { 
    margin-top: 8px !important; 
} 

footer .col-lg-5 .row .col-md-6 ul { 
    margin-bottom: 8px; 
} 

/* Form controls */ 
footer .form-control { 
    background-color: rgba(0, 0, 0, 0.05) !important; 
    border: 1px solid rgba(0, 0, 0, 0.15) !important; 
    padding: 8px 12px; 
    border-radius: 6px; 
    font-size: 13px; 
    transition: all 0.3s ease; 
    color: var(--footer-text, #1e2b45) !important; 
} 

body.light-theme footer .form-control { 
    background-color: #ffffff !important; 
    border: 1px solid #cbd5e0 !important; 
    color: var(--footer-text, #1e2b45) !important; 
} 

body.dark-theme footer .form-control { 
    background-color: rgba(255, 255, 255, 0.1) !important; 
    border: 1px solid rgba(255, 255, 255, 0.25) !important; 
    color: var(--footer-text, #ffffff) !important; 
} 

footer .form-control:focus { 
    border-color: var(--footer-link-hover, #f26223) !important; 
    box-shadow: 0 0 0 2px rgba(242, 98, 35, 0.1); 
    outline: none; 
} 

body.light-theme footer .form-control:focus { 
    background-color: #ffffff !important; 
} 

body.dark-theme footer .form-control:focus { 
    background-color: rgba(255, 255, 255, 0.15) !important; 
} 

footer .form-control::placeholder { 
    opacity: 0.6; 
    font-size: 13px; 
    color: var(--footer-text, #1e2b45); 
} 

body.light-theme footer .form-control::placeholder { 
    color: #718096; 
} 

body.dark-theme footer .form-control::placeholder { 
    color: rgba(255, 255, 255, 0.6); 
} 

/* Button */ 
footer .btn-primary { 
    background: var(--footer-link-hover, #f26223); 
    border: none; 
    color: white; 
    padding: 8px 18px; 
    border-radius: 30px; 
    font-weight: 600; 
    font-size: 13px; 
    transition: all 0.3s ease; 
} 

footer .btn-primary:hover { 
    background: #d44d1a; 
    transform: translateY(-1px); 
    box-shadow: 0 4px 12px rgba(242, 98, 35, 0.3); 
} 

/* Paragraph text */ 
footer p { 
    line-height: 1.4; 
    font-size: 13px; 
    margin-bottom: 8px; 
    color: var(--footer-link, #4a5568); 
} 

/* Borders */ 
footer .border-top { 
    border-color: rgba(0, 0, 0, 0.1) !important; 
} 

body.light-theme footer .border-top { 
    border-color: #e2e8f0 !important; 
} 

body.dark-theme footer .border-top { 
    border-color: rgba(255, 255, 255, 0.15) !important; 
} 

footer .mt-5 { 
    margin-top: 1.5rem !important; 
} 

footer .pt-4 { 
    padding-top: 1rem !important; 
} 

footer .mt-4 { 
    margin-top: 0.75rem !important; 
} 

footer .col-lg-5 p { 
    margin-bottom: 8px; 
} 

footer .row.g-3 { 
    margin: -4px; 
} 

footer .row.g-3 > [class*="col-"] { 
    padding: 4px; 
} 

/* ===== LOGO STYLES - Centered on Mobile ===== */
.footer-logo {
    text-align: left;
}

.footer-logo img { 
    height: auto; 
    width: 135px; 
    transition: all 0.3s ease; 
} 

/* Light theme logo */ 
body.light-theme .footer-logo img { 
    filter: brightness(0) invert(0); 
} 

/* Dark theme logo */ 
body.dark-theme .footer-logo img { 
    filter: brightness(0) invert(1); 
} 

.footer-logo-text { 
    font-size: 28px; 
    font-weight: 700; 
    letter-spacing: -0.5px; 
    background: linear-gradient(135deg, #f26223, #ff8c5a); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    display: inline-block; 
    transition: all 0.3s ease; 
} 

body.dark-theme .footer-logo-text { 
    background: linear-gradient(135deg, #f26223, #ff9f6e); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
} 

.footer-logo-text:hover { 
    transform: scale(1.02); 
    background: linear-gradient(135deg, #ff6b2c, #ffa05e); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
} 

/* ===== WIDGETS GRID ===== */
.footer-widgets { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin-bottom: 2rem; 
} 

/* ===== SOCIAL ICONS ===== */
.social-icons { 
    display: flex; 
    gap: 12px; 
    margin-top: 15px; 
} 

.social-icons a { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    transition: all 0.3s ease; 
    font-size: 16px; 
    text-decoration: none; 
    background: rgba(0, 0, 0, 0.05); 
    color: var(--footer-link, #4a5568) !important; 
} 

/* Light theme social icons */ 
body.light-theme .social-icons a { 
    background: #e9ecef; 
    color: #4a5568 !important; 
} 

body.light-theme .social-icons a:hover { 
    background: #f26223; 
    color: #ffffff !important; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 12px rgba(242, 98, 35, 0.3); 
} 

/* Dark theme social icons */ 
body.dark-theme .social-icons a { 
    background: rgba(255, 255, 255, 0.1); 
    color: #e4e6ef !important; 
} 

body.dark-theme .social-icons a:hover { 
    background: #f26223; 
    color: #ffffff !important; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 12px rgba(242, 98, 35, 0.4); 
} 

/* ===== EMAIL LINK STYLING ===== */
.footer-email { 
    margin: 15px 0; 
} 

.footer-email-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 14px; 
    font-weight: 500; 
    color: var(--footer-link, #4a5568) !important; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    padding: 5px 0; 
} 

.footer-email-link i { 
    font-size: 14px; 
    color: #f26223; 
    transition: all 0.3s ease; 
} 

.footer-email-link:hover { 
    color: var(--footer-link-hover, #f26223) !important; 
    transform: translateX(3px); 
} 

.footer-email-link:hover i { 
    transform: translateX(2px); 
    color: #f26223; 
} 

/* ===== FOOTER BOTTOM ===== */
.footer-bottom { 
    border-top: 1px solid rgba(0, 0, 0, 0.1); 
    padding-top: 1.5rem; 
    margin-top: 1.5rem; 
    display: flex; 
    /*justify-content: space-between; */
    align-items: center; 
    flex-wrap: wrap; 
    gap: 15px; 
} 

body.light-theme .footer-bottom { 
    border-top-color: #e2e8f0; 
} 

body.dark-theme .footer-bottom { 
    border-top-color: rgba(255, 255, 255, 0.15); 
} 

.footer-bottom p { 
    margin: 0; 
    font-size: 12px; 
} 

/* Footer bottom links */ 
.footer-bottom-links { 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap; 
} 

.footer-bottom-links a { 
    font-size: 12px; 
} 

/* Light theme footer bottom links */ 
body.light-theme .footer-bottom-links a { 
    color: var(--footer-link, #4a5568); 
} 

body.light-theme .footer-bottom-links a:hover { 
    color: var(--footer-link-hover, #f26223) !important; 
} 

/* Dark theme footer bottom links */ 
body.dark-theme .footer-bottom-links a { 
    color: var(--footer-link, #a0a0a0); 
} 

body.dark-theme .footer-bottom-links a:hover { 
    color: var(--footer-link-hover, #f26223) !important; 
} 

/* Nav links in footer */ 
footer .nav-link { 
    padding: 0.2rem 0.8rem; 
    font-size: 12px; 
    color: var(--footer-link, #4a5568) !important; 
} 

footer .nav-link:hover { 
    color: var(--footer-link-hover, #f26223) !important; 
} 

body.dark-theme footer .nav-link { 
    color: var(--footer-link, #a0a0a0) !important; 
} 

/* ===== RESPONSIVE STYLES ===== */

/* Tablet and below (max-width: 1200px) */
@media (max-width: 1200px) { 
    .footer-widgets { 
        grid-template-columns: repeat(2, 1fr); 
    } 
} 

/* Mobile and tablet (max-width: 992px) */
@media (max-width: 992px) {
    .footer-widget {
        text-align: center;
    }
    
    footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-email-link {
        justify-content: center;
    }
    
    footer ul li a {
        display: inline-block;
    }
}

/* Mobile (max-width: 768px) */ 
@media (max-width: 768px) { 
    footer { 
        padding: 2rem 1rem; 
        text-align: center;
    } 
    
    footer .row > [class*="col-"] { 
        margin-bottom: 15px; 
    } 
    
    footer h4 { 
        margin-top: 10px; 
        margin-bottom: 10px; 
    } 
    
    footer h4:first-child { 
        margin-top: 0; 
    } 
    
    /* Center the logo on mobile */
    .footer-logo {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }
    
    .footer-logo-text {
        font-size: 24px;
        display: block;
        text-align: center;
    }
    
    .social-icons { 
        justify-content: center; 
        margin-top: 15px; 
    } 
    
    .text-lg-end .social-icons { 
        justify-content: center; 
    } 
    
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
        gap: 10px; 
    } 
    
    .footer-bottom-links { 
        justify-content: center; 
    } 
    
    .footer-bottom .nav { 
        justify-content: center; 
    } 
    
    .footer-widgets { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-email-link {
        font-size: 13px;
        justify-content: center;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Center all lists */
    footer ul {
        text-align: center;
    }
    
    footer ul li a {
        display: inline-block;
    }
    
    /* Center the heading underline */
    footer h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    footer h4:hover::after {
        width: 60px;
    }
} 

/* Small mobile (max-width: 480px) */ 
@media (max-width: 480px) { 
    footer { 
        padding: 1.5rem 0.75rem; 
        text-align: center;
    }
    
    .footer-logo-text { 
        font-size: 22px; 
    } 
    
    .footer-email-link { 
        font-size: 12px; 
    } 
    
    .social-icons { 
        gap: 10px; 
    } 
    
    .social-icons a { 
        width: 30px; 
        height: 30px; 
        font-size: 13px; 
    }
    
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 11px;
    }
}

/* Extra small mobile (max-width: 380px) */
@media (max-width: 380px) {
    footer {
        padding: 1.25rem 0.5rem;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-widget h4 {
        font-size: 18px;
    }
    
    .footer-widget ul li a,
    footer p,
    .footer-email-link {
        font-size: 11px;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}



/* ===== 26. ACCESSIBILITY & REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .slider-track:hover {
        animation-play-state: running !important;
    }
    
    .service-card:hover,
    .industry-card:hover,
    .diff-card:hover {
        transform: none !important;
    }
    
    .center-emergence-point {
        animation: none !important;
    }
}

/* Lazy loading image styles */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

img[data-src].loaded {
    opacity: 1;
}

/* Print styles */
@media print {
    .hero-slider-section,
    .hero-brands,
    .back-to-top,
    .search-popup,
    footer .social-icons,
    .btn,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
    
    .service-card,
    .industry-card,
    .diff-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ===== 27. RTL SUPPORT ===== */
[dir="rtl"] .services-cards {
    right: auto;
    left: 6%;
}

[dir="rtl"] .services-text-second {
    left: auto;
    right: 3%;
}

[dir="rtl"] .industries-cards {
    right: auto;
    left: 6%;
}

[dir="rtl"] .industries-text-second {
    left: auto;
    right: 3%;
}

[dir="rtl"] .learn-more-btn .arrow {
    transform: rotate(180deg);
}

[dir="rtl"] .learn-more-btn:hover .arrow {
    transform: rotate(180deg) translateX(-5px);
}

[dir="rtl"] .cards-left .choose-card {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
}

[dir="rtl"] .cards-right .choose-card {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}

[dir="rtl"] .footer-bottom-links {
    flex-direction: row-reverse;
}

/* ===== 28. RESPONSIVE STYLES (ALL BREAKPOINTS) ===== */

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
    .home-hero-section h1 { font-size: 3.5rem; }
    .home-hero-section .lead { font-size: 1.3rem; }
    .hero-text-item { font-size: 2rem; }
    
    .services-title { font-size: 100px; }
    .services-text-second { font-size: 100px; }
    .services-cards { width: 40%; }
    
    
    .industries-cards { width: 40%; }
    
    .cardblock-slider-wrapper .left-content-sec h2 { font-size: 42px; }
    .cardblock-slider-wrapper .left-content-sec p { font-size: 18px; }
    
    .why-choose-us-wrapper { gap: 20px; }
    .choose-card { max-width: 300px; padding: 25px; }
    
    .diff-grid { gap: 15px; }
    .diff-card { padding: 30px 15px; }
    .diff-content h3 { font-size: 20px; }
    .diff-content p { font-size: 14px; }
    
    .contact-form-container { padding: 40px 30px; }
    .contact-section .section-header h2 { font-size: 42px; }
    
    .footer-widgets { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
    .hero-slider-section,
    .mainHeroSlider,
    .mainHeroSlider .swiper-slide,
    .home-hero-section { height: 80vh; }
    
    .home-hero-section h1 { font-size: 3rem; }
    .home-hero-section .lead { font-size: 1.2rem; max-width: 500px; }
    .hero-bottom-texts { bottom: 100px; gap: 20px; }
    .hero-text-item { font-size: 1.8rem; }
    
    .services-section,
    .industries-section { height: auto; padding: 0; }
    
    .services-wrapper,
    .industries-wrapper {
        height: auto;
        position: relative;
        flex-direction: column;
        padding: 60px 20px;
    }
    
    .services-title,
    .industries-title {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        font-size: 60px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .services-text,
    .industries-text {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 10px auto;
        font-size: 20px;
        max-width: 80%;
    }
    
    .services-text-second,
    .industries-text-second {
        position: relative;
        left: 0;
        top: 0;        
        max-width: 80%;
        text-align: center;
        font-size: 60px;
        margin: 20px auto;
    }
    
    .services-cards,
    .industries-cards {
        position: relative;
        right: 0;
        top: 0;
        width: 90%;
        margin: 30px auto;
    }
    
    .service-card,
    .industry-card {
        transform: translateY(0);
        opacity: 1;
    }
    
    .brand-logo { height: 40px; }
    .slider-track { gap: 50px; }
    
    .cardblock-slider-sec { padding: 60px 0; }
    .cardblock-slider-wrapper { flex-direction: column; gap: 40px; }
    .cardblock-slider-wrapper .left-content-sec {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .cardblock-slider-wrapper .left-content-sec h2 { font-size: 38px; }
    .cardblock-slider-wrapper .left-content-sec h2::after { left: 50%; transform: translateX(-50%); }
    .cardblock-slider-wrapper .left-content-sec p {
        padding-left: 0;
        border-left: none;
        max-width: 80%;
        margin: 0 auto;
    }
    .cardblock-slider-wrapper .right-scroll-sec {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .vertical-slider-sec { max-height: 600px; }
    
    .why-choose-us-section { padding: 60px 0; }
    .section-header h2 { font-size: 38px; }
    .why-choose-us-wrapper { flex-direction: column; gap: 40px; }
    .cards-left, .cards-right {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    .cards-left .choose-card,
    .cards-right .choose-card { margin: 0; }
    .choose-card { max-width: 280px; padding: 20px; }
    
    .strategic-diff-section { padding: 60px 0; }
    .strategic-diff-section .section-header h2 { font-size: 42px; }
    .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    
    .contact-section { padding: 60px 0; }
    .contact-section .section-header h2 { font-size: 38px; }
    .contact-element { display: none; }
    .contact-form-container { padding: 30px 20px; }
    
    .navbar-brand {
        padding: 6px 15px;
    }
    
    .navbar-brand .logo-white,
    .navbar-brand .logo-dark {
        font-size: 1.2rem;
    }
    
    .theme-toggle {
        padding: 5px 10px;
    }
    
    .megamenu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        box-shadow: none;
        padding: 1rem;
        background: transparent;
    }
    
    .has-megamenu:hover .megamenu,
    .megamenu:hover {
        display: none;
    }
    
    .megamenu.show {
        display: block !important;
    }
    
    .megamenu .container {
        padding: 0;
        width: 100%;
    }
    
    .megamenu .row {
        flex-direction: column;
    }
    
    .megamenu [class*="col-"] {
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .megamenu .grey-bg-sapce {
        background: transparent;
        padding: 1rem 0;
    }
    
    .megamenu ul li a {
        color: inherit;
    }
    
    .megamenu ul li a:hover,
    .navbar .dropdown-menu ul li a:hover {
        transform: none !important;
    }
    
    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .hero-slider-section,
    .mainHeroSlider,
    .mainHeroSlider .swiper-slide,
    .home-hero-section { height: 70vh; }
    
    .home-hero-section h1 { font-size: 2.5rem; }
    .home-hero-section .lead { font-size: 1rem; max-width: 400px; }
    .home-hero-section .btn { padding: 0.4rem 1.5rem !important; font-size: 0.9rem !important; }
    .hero-bottom-texts { bottom: 80px; gap: 15px; flex-wrap: wrap; }
    .hero-text-item { font-size: 1.2rem; margin: 0 5px; }
    
    .swiper-button-next,
    .swiper-button-prev { width: 40px; height: 40px; }
    .swiper-button-next:after,
    .swiper-button-prev:after { font-size: 16px; }
    
    .hero-brands { padding: 10px 0; }
    .slider-track { gap: 30px; }
    .brand-logo { height: 25px !important; }
    
    .services-title,
    .industries-title { font-size: 40px; }
    .services-text,
    .industries-text { font-size: 18px; max-width: 90%; }
    .services-text-second,
    .industries-text-second { font-size: 40px; max-width: 90%; }
    
    .service-card,
    .industry-card {
        min-height: 100px;
        padding: 12px 15px;
    }
    
    .service-card strong,
    .industry-card strong { font-size: 18px; }
    .service-card p,
    .industry-card p { font-size: 12px; }
    
    .service-card-icon,
    .industry-card-icon { width: 45px; height: 45px; }
    .service-card-icon svg,
    .industry-card-icon svg { width: 25px; height: 25px; }
    
    .cardblock-slider-sec { padding: 40px 0; }
    .cardblock-slider-wrapper .left-content-sec h2 { font-size: 28px; }
    .cardblock-slider-wrapper .left-content-sec p { font-size: 16px; }
    .vertical-slider-sec .card-item .box-wrpper { padding: 20px; }
    .vertical-slider-sec .card-item .content-wrpr h4 { font-size: 16px; }
    .vertical-slider-sec .card-item .content-wrpr p { font-size: 12px; }
    
    .why-choose-us-section { padding: 40px 0; }
    .section-header h2 { font-size: 28px; }
    .cards-left, .cards-right { flex-direction: column; align-items: center; gap: 20px; }
    .choose-card { max-width: 100%; width: 100%; padding: 15px; }
    .choose-card .card-content h3 { font-size: 18px; }
    .choose-card .card-content h4 { font-size: 16px; }
    .choose-card .card-content p { font-size: 13px; }
    .center-emergence-point { width: 40px; height: 40px; margin: 0 20px; }
    
    .strategic-diff-section { padding: 40px 0; }
    .strategic-diff-section .section-header h2 { font-size: 32px; }
    .section-subtitle { font-size: 14px; }
    .diff-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .diff-card { padding: 25px 15px; }
    .diff-icon { width: 60px; height: 60px; }
    .diff-icon svg { width: 35px; height: 35px; }
    .diff-content h3 { font-size: 16px; }
    .diff-content p { font-size: 12px; }
    
    .contact-section { padding: 40px 0; }
    .contact-section .section-header h2 { font-size: 28px; }
    .section-subtitle { font-size: 14px; }
    .contact-form-container { padding: 20px 15px; }
    .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    .form-control { padding: 10px 12px; font-size: 14px; }
    .submit-btn { padding: 10px 25px; font-size: 14px; }
    
    .theme-aware-cta-section h2 { font-size: 24px; }
    .theme-aware-cta-section .btn { padding: 8px 20px; font-size: 14px; }
    
    footer { padding: 2rem 0 1rem; }
    .footer-widgets { grid-template-columns: 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .social-icons { justify-content: center; }
}

/* Mobile Landscape (576px and below) */
@media (max-width: 576px) {
    .hero-slider-section,
    .mainHeroSlider,
    .mainHeroSlider .swiper-slide,
    .home-hero-section { height: 60vh; }
    
    .home-hero-section h1 { font-size: 2rem; line-height: 1.1; }
    .home-hero-section .lead { font-size: 0.9rem; max-width: 300px; }
    .home-hero-section .btn { font-size: 0.8rem !important; padding: 0.3rem 1rem !important; }
    .hero-bottom-texts { bottom: 70px; gap: 10px; }
    .hero-text-item { font-size: 1rem; }
    
    .swiper-button-next,
    .swiper-button-prev { width: 30px; height: 30px; }
    .swiper-button-next:after,
    .swiper-button-prev:after { font-size: 12px; }
    
    .slider-track { gap: 20px; }
    .brand-logo { height: 20px !important; }
    
    .services-title,
    .industries-title { font-size: 32px; }
    .services-text,
    .industries-text { font-size: 16px; }
    .services-text-second,
    .industries-text-second { font-size: 32px; }
    
    .service-card,
    .industry-card {
        min-height: 90px;
        padding: 10px 12px;
    }
    
    .service-card strong,
    .industry-card strong { font-size: 16px; }
    .service-card p,
    .industry-card p { font-size: 11px; }
    
    .service-card-icon,
    .industry-card-icon { width: 40px; height: 40px; }
    .service-card-icon svg,
    .industry-card-icon svg { width: 22px; height: 22px; }
    
    .service-card .vertical-line,
    .industry-card .vertical-line {
        height: 45px;
        margin-left: 6px;
    }
    
    .learn-more-btn { font-size: 13px; }
    .learn-more-btn .arrow { font-size: 20px; }
    
    .cardblock-slider-sec { padding: 30px 0; }
    .vertical-slider-sec .card-item .box-wrpper { padding: 15px; }
    .vertical-slider-sec .card-item .link-wrap { flex: 0 0 40px; height: 40px; }
    .vertical-slider-sec .card-item .link-wrap svg { width: 25px; height: 25px; }
    .vertical-slider-sec .card-item .content-wrpr h4 { font-size: 14px; }
    .vertical-slider-sec .card-item .content-wrpr p { font-size: 11px; }
    .vertical-slider-sec .card-item .roundArrow { width: 30px; height: 30px; }
    .vertical-slider-sec .card-item .roundArrow img { width: 14px; height: 14px; }
    
    .choose-card { padding: 12px; }
    .choose-card .card-content h3 { font-size: 16px; }
    .choose-card .card-content h4 { font-size: 14px; }
    .choose-card .card-content p { font-size: 12px; }
    
    .strategic-diff-section .section-header h2 { font-size: 26px; }
    .section-subtitle { font-size: 13px; }
    .diff-card { padding: 20px 12px; }
    .diff-icon { width: 50px; height: 50px; }
    .diff-icon svg { width: 30px; height: 30px; }
    .diff-content h3 { font-size: 15px; }
    .diff-content p { font-size: 11px; }
    
    .contact-section .section-header h2 { font-size: 24px; }
    .section-subtitle { font-size: 13px; }
    .contact-form-container { padding: 15px; }
    .custom-control { gap: 8px; }
    .custom-control-label { font-size: 11px; }
    .submit-btn { padding: 8px 20px; font-size: 13px; }
    
    .back-to-top {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
    }
    
    .theme-aware-cta-section h2 { font-size: 22px; }
    .theme-aware-cta-section .btn { padding: 6px 18px; font-size: 13px; }
    
    footer { padding: 1.5rem 0 1rem; }
    .footer-widget h4 { font-size: 14px; }
    .footer-widget ul li a { font-size: 12px; }
    .footer-bottom p { font-size: 11px; }
    .footer-bottom-links a { font-size: 11px; }
}

/* Small Mobile (380px and below) */
@media (max-width: 380px) {
    .home-hero-section h1 { font-size: 1.8rem; }
    .hero-text-item { font-size: 0.9rem; }
    .brand-logo { height: 18px !important; }
    
    .services-title,
    .industries-title { font-size: 28px; }
    .services-text,
    .industries-text { font-size: 14px; }
    .services-text-second,
    .industries-text-second { font-size: 28px; }
    
    .section-header h2 { font-size: 24px; }
    
    .strategic-diff-section .section-header h2 { font-size: 24px; }
    .contact-section .section-header h2 { font-size: 22px; }
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .featured-insights-section .insights-split {
        flex-direction: column;
        gap: 30px;
    }
    
    .featured-insights-section .insights-left,
    .featured-insights-section .insights-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .featured-insights-section .insights-left {
        text-align: center;
        padding-bottom: 0;
    }
    
    .featured-insights-section .insights-left .insights-main-title {
        font-size: 28px;
    }
    
    .featured-insights-section .insights-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .featured-insights-section .insights-col {
        width: 100%;
        max-width: 100%;
        transform: translateY(0) !important;
    }
    
    .featured-insights-section .insights-col-2,
    .featured-insights-section .insights-col-3 {
        transform: translateY(0) !important;
    }
    
    .featured-insights-section .insight-card {
        width: 100%;
        margin-bottom: 0;
    }
}

@media (max-width: 992px) {
    .services-section,
    .industries-section {
        height: auto !important;
        min-height: auto !important;
    }
    
    .services-wrapper,
    .industries-wrapper {
        height: auto !important;
        position: relative !important;
        padding: 60px 20px !important;
    }
}

@media (max-width: 768px) {
    .services-wrapper,
    .industries-wrapper {
        padding: 40px 15px !important;
    }
}

@media (max-width: 992px) {
    .service-card,
    .industry-card {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .services-text,
    .services-text-second,
    .industries-text,
    .industries-text-second {
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin-top: 0 !important;
        margin: 15px auto !important;
        text-align: center !important;
        max-width: 90% !important;
    }
    
    .services-cards,
    .industries-cards {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        margin: 25px auto !important;
    }
}
/* ===== FULL WIDTH THEME AWARE BLENDED HERO SECTION ===== */
/* ===== FULL WIDTH THEME AWARE BLENDED HERO SECTION ===== */

.blended-hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--services-bg, #f5f5f5);
    transition: background-color 0.3s ease;
    min-height: 100vh;
    height: 100vh;
}

/* Light theme specific background */
body.light-theme .blended-hero-section {
    background: #f5f5f5;
}

/* Dark theme specific background */
body.dark-theme .blended-hero-section {
    background: #1e1e2f;
}

.hero-blend-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
}

/* Dark overlay covering BOTH sides */
.blended-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2) !important;
    z-index: 5;
    pointer-events: none;
}

/* ===== LEFT TEXT SIDE ===== */
.hero-text-side {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease;
    overflow: visible;
    padding: 0;
    height: 100%;
}

/* Circle Background */
.half-circle-bg {
    position: absolute;        
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 180px;
    height: 360px;
    background: radial-gradient(ellipse at 35% 50%, 
        rgba(242, 98, 35, 0.4) 0%,
        rgba(242, 98, 35, 0.6) 25%,
        rgba(242, 98, 35, 0.8) 50%,
        rgba(255, 120, 50, 0.9) 70%,
        rgba(255, 160, 80, 1) 100%
    );
    border-radius: 0 360px 360px 0;
    z-index: 1;
    box-shadow: 
        15px 0 35px rgba(242, 98, 35, 0.3),
        -5px 0 15px rgba(255, 200, 120, 0.2);
}

/* Light Theme Circle */
body.light-theme .half-circle-bg {
    background: radial-gradient(ellipse at 35% 50%, 
        rgba(242, 98, 35, 0.35) 0%,
        rgba(242, 98, 35, 0.55) 20%,
        rgba(242, 98, 35, 0.75) 40%,
        rgba(255, 130, 70, 0.9) 65%,
        rgba(255, 180, 100, 1) 90%,
        rgba(255, 200, 130, 1) 100%
    );
    border-radius: 0 360px 360px 0;
    box-shadow: 
        20px 0 45px rgba(242, 98, 35, 0.4),
        inset -8px 0 20px rgba(255, 200, 120, 0.2);
}

/* Dark Theme Circle */
body.dark-theme .half-circle-bg {
    background: radial-gradient(ellipse at 35% 50%, 
        rgba(30, 91, 191, 0.4) 0%,
        rgba(30, 91, 191, 0.6) 25%,
        rgba(58, 134, 255, 0.75) 50%,
        rgba(80, 150, 255, 0.9) 75%,
        rgba(110, 168, 254, 1) 100%
    );
    border-radius: 0 360px 360px 0;
    box-shadow: 
        20px 0 45px rgba(58, 134, 255, 0.35),
        inset -8px 0 20px rgba(110, 168, 254, 0.2);
}

/* Heading Overlay - Text only, centered */
.heading-overlay {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: calc(100% - 40px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    pointer-events: auto;
    padding-left: 20px;
}

/* Small text above heading */
.heading-overlay small {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f26223;
    font-weight: 600;
}

.heading-overlay h1 {
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    font-size: 2.0rem;        
    line-height: 1.3;
    margin: 0;
    letter-spacing: 0.5px;
}

.heading-overlay h1 span {
    background: linear-gradient(135deg, #ffcc88, #ff9f4b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.heading-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.heading-overlay h1,
.heading-overlay p,
.heading-overlay small {
    position: relative;
    z-index: 10;
}

/* CTA Button - Independent, at bottom */
.cta-button-wrapper {
    position: absolute;
    bottom: 15%;
    left: 20%;
    z-index: 10;
}

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #f26223, #ff8c42);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(242, 98, 35, 0.3);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 98, 35, 0.4);
    background: linear-gradient(135deg, #ff6b2c, #ff9f4b);
    gap: 16px;
}

.cta-button:active {
    transform: translateY(0);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Dark theme CTA button */
body.dark-theme .cta-button {
    background: linear-gradient(135deg, #3a86ff, #6ea8fe);
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

body.dark-theme .cta-button:hover {
    background: linear-gradient(135deg, #5a9eff, #8abaff);
    box-shadow: 0 6px 20px rgba(58, 134, 255, 0.4);
}

/* Light Theme Heading */
body.light-theme .heading-overlay h1 {
    color: #1a1f2e;
    text-shadow: none;
}

body.light-theme .heading-overlay h1 span {
    background: linear-gradient(135deg, #f26223, #ff9f4b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.light-theme .heading-overlay p {
    color: #4a5568;
    text-shadow: none;
}

/* Dark Theme Heading */
body.dark-theme .heading-overlay h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.dark-theme .heading-overlay h1 span {
    background: linear-gradient(135deg, #6ea8fe, #3a86ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.dark-theme .heading-overlay p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Light theme CTA text */
body.light-theme .cta-button {
    color: white;
}

/* Dark theme CTA text */
body.dark-theme .cta-button {
    color: white;
}

/* Light Theme - Text side background */
body.light-theme .hero-text-side {
    background-color: transparent;
}

/* Dark Theme - Text side background */
body.dark-theme .hero-text-side {
    background-color: transparent;
}

/* ===== RIGHT IMAGE SIDE ===== */
.hero-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    height: 100%;
    z-index: 1;
}

body.light-theme .hero-image-side {
    background-color: transparent;
}

body.dark-theme .hero-image-side {
    background-color: transparent;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Light Theme - White blend on image left edge */
body.light-theme .hero-image-side::before {
    content: '';
    position: absolute;
    top: 0;        
    height: 100%;
    width: 100px;
    background: linear-gradient(
        to right,
        rgba(245, 245, 245, 0.9) 0%,
        rgba(245, 245, 245, 0.5) 40%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Dark Theme - Dark blend on image left edge */
body.dark-theme .hero-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(
        to right,
        rgba(30, 30, 47, 0.9) 0%,
        rgba(30, 30, 47, 0.5) 40%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

.hero-image-side:hover img {
    transform: scale(1.02);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .blended-hero-section {
        height: auto;
        min-height: 70vh;
    }
    .half-circle-bg {
        left: -10%;
        width: 160px;
        height: 320px;
        border-radius: 0 320px 320px 0;
    }
    .heading-overlay h1 {
        font-size: 1.6rem;
        max-width: 340px;
    }
    .heading-overlay p {
        font-size: 0.85rem;
        max-width: 340px;
    }
    .cta-button {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .half-circle-bg {
        left: -10%;
        width: 140px;
        height: 280px;
        border-radius: 0 280px 280px 0;
    }
    .heading-overlay {
        left: 10px;
    }
    .heading-overlay h1 {
        font-size: 1.3rem;
        max-width: 300px;
    }
    .heading-overlay p {
        font-size: 0.75rem;
        max-width: 300px;
    }
    .cta-button {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    .cta-button-wrapper {
        bottom: 12%;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .blended-hero-section {
        height: auto;
    }
    .hero-blend-container {
        flex-direction: column;
    }
    .hero-text-side {
        flex-direction: column;
        padding: 0;
        height: auto;
        min-height: 50vh;
        position: relative;
    }
    .half-circle-bg {
        display: none;
    }
    .heading-overlay {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        align-items: center;
        padding: 2rem;
        max-width: 100%;
    }
    .heading-overlay h1 {
        font-size: 1.8rem;
        max-width: 100%;
    }
    .heading-overlay p {
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    /* Fix for button on mobile */
    .cta-button-wrapper {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Mobile theme text colors */
    body.light-theme .heading-overlay {
        background: transparent;
    }
    body.light-theme .heading-overlay h1 {
        color: #1a1f2e;
    }
    body.light-theme .heading-overlay p {
        color: #4a5568;
    }
    
    body.dark-theme .heading-overlay {
        background: transparent;
    }
    body.dark-theme .heading-overlay h1 {
        color: white;
    }
    body.dark-theme .heading-overlay p {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .hero-image-side {
        min-height: 40vh;
        height: auto;
    }
    .hero-image-side::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .heading-overlay h1 {
        font-size: 1.4rem;
    }
    .heading-overlay p {
        font-size: 0.75rem;
    }
    .heading-overlay small {
        font-size: 0.7rem;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .cta-button-wrapper {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}