/* Basic styles for data-strategy.html */

/* === OPTIMIZED RESPONSIVE DESIGN SYSTEM === */
/* This ensures background videos show on ALL devices and responsive design is consistent */

/* ALL DEVICES - VIDEOS ALWAYS SHOW */
.back-vid,
.blackhole-box video,
.main-hero-video-box video {
    display: block !important;
}

/* UNIVERSAL MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    /* Grid and Flexbox optimizations */
    .container, .grid-container, .flex-container {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    /* Typography adjustments */
    h1, h2, h3, h4, h5, h6 {
        font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }
    
    p, .text-content {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        line-height: 1.6 !important;
    }
    
    /* Dropdown and navigation */
    .dropdown-menu, .sidebar-menu {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Buttons and interactive elements */
    .btn, .cta-button, .service-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
    }
    
    /* Images and media */
    img, video {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    /* Stats section responsive */
    .stats-section {
        flex-direction: column !important;
        gap: 30px !important;
        width: 95% !important;
        padding: 20px 0 !important;
    }
    
    .stat {
        width: 100% !important;
        min-width: auto !important;
    }
    
    .circle {
        width: 200px !important;
        height: 200px !important;
    }
    
    .counter h2 {
        font-size: 1.6em !important;
    }
    
    .stat p {
        font-size: 0.9em !important;
        margin-top: 15px !important;
    }
}

/* MEDIUM SCREENS/TABLETS OPTIMIZATION */
@media (max-width: 1024px) {
    .container {
        gap: 40px !important;
        padding: 0 20px !important;
    }
    
    .hero, .section {
        padding: 40px 20px !important;
    }
    
    /* Stats section responsive for tablets */
    .stats-section {
        width: 95% !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
    }
    
    .stat {
        min-width: auto !important;
    }
    
    .circle {
        width: 220px !important;
        height: 220px !important;
    }
    
    .counter h2 {
        font-size: 1.8em !important;
    }
}

/* Additional responsive improvements for stats section */
@media (max-width: 600px) {
    .stats-section {
        width: 100% !important;
        padding: 15px 5px !important;
        margin: 20px auto !important;
    }
    
    .stat {
        padding: 10px 5px !important;
    }
    
    .circle {
        width: 140px !important;
        height: 140px !important;
    }
    
    .counter h2 {
        font-size: 1.3em !important;
    }
    
    .stat p {
        font-size: 0.8em !important;
        margin-top: 8px !important;
        padding: 0 5px !important;
    }
}

/* ACCESSIBILITY IMPROVEMENTS */
@media (prefers-contrast: high) {
    .btn, .cta-button {
        border: 2px solid #fff !important;
        background: #000 !important;
        color: #fff !important;
    }
}

/* Strategic Edge Section Responsive */
@media (max-width: 1024px) {
    .strategic-edge {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px !important;
        padding: 30px !important;
    }
    
    .strategic-edge-content {
        max-width: 100% !important;
    }
    
    .strategic-edge-content .section-title {
        text-align: center !important;
        font-size: 2.2rem !important;
    }
    
    .strategic-edge-content p {
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .strategic-edge-video {
        width: 100% !important;
        max-width: 600px !important;
    }
}

@media (max-width: 768px) {
    .strategic-edge {
        width: 95% !important;
        padding: 25px !important;
    }
    
    .strategic-edge-content .section-title {
        font-size: 2rem !important;
    }
    
    .strategic-edge-content p {
        font-size: 1rem !important;
    }
    
    .strategic-edge .cta-button {
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .stats-section {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    
    .stat {
        flex: 1 1 calc(50% - 15px) !important;
        min-width: 180px !important;
    }
    
    .circle {
        width: 160px !important;
        height: 160px !important;
    }
    
    .counter h2 {
        font-size: 1.4em !important;
    }
}

/* Import Google Fonts if needed */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: lightgray;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Stats Section Base Styles */
.stats-section {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 50px auto;
    text-align: center;
    border-radius: 15px;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.progress-bg, .progress-fg {
    stroke-linecap: round;
}

.progress-fg {
    transition: stroke-dashoffset 1.5s ease-out;
}

/* Responsive stroke width for mobile */
@media (max-width: 768px) {
    .progress-bg, .progress-fg {
        stroke-width: 8;
    }
}

@media (max-width: 480px) {
    .progress-bg, .progress-fg {
        stroke-width: 6;
    }
}

.counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter h2 {
    font-size: 2em;
    color: #72a1de;
    margin: 0;
    font-weight: bold;
}

.stat p {
    font-size: 1em;
    color: lightgray;
    line-height: 1.5;
    padding: 0 10px;
    margin-top: 20px;
}

.container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    background-color: #020f1cd1;
}

.back-vid {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    mix-blend-mode: overlay;
    background-color: #020f1cd1;
}

header {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 70px;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 999;
    flex-wrap: nowrap;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.left {
    display: flex;
    align-items: center;
}

header.scrolled {
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.left img {
    width: 80px;
    margin: 0 15px;
}

.logo-bar-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

header ul li {
    margin: 0;
    position: relative;
}


.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1600px;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px #72a1dea2;
    list-style: none;
    padding: 30px 40px;
    border-radius: 16px;
    min-height: 50vh;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.logo-bar-buttons li:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-menu a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 0;
    background: none !important;
    box-shadow: none !important;
    transition: color 0.2s, padding-left 0.2s;
}

.dropdown-menu a:hover {
    color: #72a1de;
    padding-left: 5px;
}

.dropdown-menu h4 {
    color: #72a1de;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(114, 161, 222, 0.2);
}

.services-dropdown, .solutions-dropdown {
    margin-left: 150px !important;
    transform: translateX(-50%) !important;
    left: 0 !important;
    width: 300vw !important;
    max-width: 2000px !important;
    justify-content: center !important;
    background-color: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(5px);
}

.dropdown-menu.services-dropdown .dropdown-content-wrapper {
    display: flex !important;
    gap: 40px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.dropdown-menu.services-dropdown .dropdown-image {
    flex: 1.3 !important;
    margin-top: 20px;
}

.dropdown-menu.services-dropdown .dropdown-image img {
    max-width: 100% !important;
    max-height: 300px !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    display: block !important;
    margin-top: 20px !important;
}

.dropdown-menu.services-dropdown .dropdown-links {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 30px !important;
}

.dropdown-menu.services-dropdown .dropdown-links a {
    color: white;
    text-decoration: none !important;
    padding: 5px 0 !important;
}

.dropdown-menu.services-dropdown .dropdown-links a:hover {
    color: #72a1de !important;
}

.aboutus-rightlinks-dropdown {
    position: absolute;
    top: 100%;
    margin-right: 80px !important;
    width: 100%;
    background-color: #111111;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    z-index: 999;
    border-top: 1px solid #333;
}

.aboutus-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.aboutus-image {
    width: 400px;
    flex-shrink: 0;
    margin-top: 40px;
}

.aboutus-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.aboutus-image h4 {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
    line-height: 1.4;
}

.aboutus-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    text-align: left;
    margin-top: 80px;
}

.aboutus-links h4 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.aboutus-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.aboutus-links a:hover {
    color: #ffffff;
}

/* Update section-title class */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(to right, gray, darkgray, #72a1dea2, white, darkgray, gray);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

/* Keep original hero section style */
.hero-info h1.gradient {
    margin-top: 80px !important;
    background: linear-gradient(to left, #ADD8E6, #4682B4, #1E90FF, #FFFFFF, #1E90FF, #4682B4, #ADD8E6);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 5s linear infinite;
}

.strategic-edge-content h2.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: left;
    background: linear-gradient(to right, gray, darkgray, #72a1dea2, white, darkgray, gray);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.strategy-solutions h2.section-title,
.workflow-section h2.section-title,
.why-choose-us h2.section-title,
.custom-data-solutions h1.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(to right, gray, darkgray, #72a1dea2, white, darkgray, gray);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

/* Keep the animation keyframes only for hero section */
@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px; /* Move content down from the top */
}

.hero-info {
    width: 90%;
    max-width: 900px;
    margin-top: 60px; /* Additional downward spacing */
}

.hero-info p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

/* Rest of the styles from data-services.css */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-info {
    width: 90%;
    max-width: 900px;
}

.hero-info p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

/* Add other necessary styles from data-services.css */
.site-footer {
    position: relative;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.6);
    color: #a9a9a9;
    padding: 60px 0 20px 0;
    margin-top: 150px;
    overflow: hidden;
}

.footer-main {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h4 {
    color: #72a1dea2;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-column.about .left {
    margin-bottom: 15px;
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #a9a9a9;
    font-size: 28px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #72a1de;
    transform: translateY(-3px);
}

.footer-column.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column.links ul li {
    margin-bottom: 12px;
}

.footer-column.links ul li::before {
    content: '●';
    color: #72a1de;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.footer-column.links ul li a {
    color: #a9a9a9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column.links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-column.contact p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-column.contact i {
    font-size: 20px;
    color: #72a1de;
    margin-top: 4px;
}

.footer-bottom {
    width: 90%;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(114, 161, 222, 0.15);
    text-align: center;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .dropdown-menu.services-dropdown,
    .dropdown-menu.aboutus-dropdown,
    .aboutus-rightlinks-dropdown {
        width: 100vw !important;
        padding: 20px !important;
    }

    .dropdown-image,
    .dropdown-links,
    .aboutus-links {
        width: 100% !important;
        text-align: center !important;
    }

    .aboutus-links {
        margin-top: 20px !important;
        text-align: center !important;
    }

    .dropdown-content-wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }

    .main-hero-content h1 {
        font-size: 28px !important;
    }

    .main-hero-content p,
    .section-title,
    .solution-card p {
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 1024px) {
    .project-card,
    .workflow-grid {
        flex-direction: column !important;
    }

    .strategy-card,
    .cda-card {
        flex: 0 1 100% !important;
    }
}
/* --- Custom Data Solutions We Offer --- */
.custom-data-solutions {
    width: 90%;
    max-width: 1400px;
    text-align: center;
    margin: 80px auto;
    color: #fff;
}

.custom-data-solutions .solutions-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.data-services-list {
    text-align: left;
    flex-basis: 20%;
}

.data-services-list h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.data-services-list ul {
    list-style: none;
    padding: 0;
}

.data-services-list ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #c5c5c5;
}

.data-services-model {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-services-model .center-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #72a1de, #4682b4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    text-align: center;
    position: relative;
    z-index: 2;
}

.data-services-model .gen-ai-text {
    font-size: 1.5rem;
    font-weight: 300;
}

.data-services-model .model-text {
    font-size: 2rem;
    font-weight: 700;
}

.data-services-model .training-text {
    position: absolute;
    font-size: 1.2rem;
    color: #c5c5c5;
    letter-spacing: 5px;
    font-weight: 300;
    top: 50%;
    left: -100px; /* Further left */
    transform: translateY(-50%) rotate(-90deg);
    white-space: nowrap; /* Prevent text from wrapping */
}

.data-services-model .adaptation-text {
    position: absolute;
    font-size: 1.2rem;
    color: #c5c5c5;
    letter-spacing: 5px;
    font-weight: 300;
    top: 50%;
    right: -100px; /* Further right */
    transform: translateY(-50%) rotate(90deg);
    white-space: nowrap; /* Prevent text from wrapping */
}

.data-services-model .data-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.data-services-model .data-point .icon {
    width: 60px;
    height: 60px;
    border: 1px solid #72a1de;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background-color: rgba(10, 25, 47, 0.8);
}

.data-services-model .data-point .icon i {
    font-size: 2rem;
    color: #72a1de;
}

.data-services-model .data-point span {
    font-size: 0.8rem;
}

/* Position icons in a circle */
.data-services-model .data-point.image { top: 20px; left: 210px; } /* Top */
.data-services-model .data-point.text { top: 144px; left: 381px; } /* Top-Right */
.data-services-model .data-point.speech { top: 144px; left: 39px; } /* Top-Left */
.data-services-model .data-point.structured-data { top: 346px; left: 104px; } /* Bottom-Left */
.data-services-model .data-point.signals { top: 346px; left: 316px; } /* Bottom-Right */

.adaptation-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-basis: 20%;
}

.adaptation-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
}

.strategic-edge {
    width: 90%;
    max-width: 1400px;
    margin: 80px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 40px;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(114, 161, 222, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Added shadow for modern look */
}

.strategic-edge-content {
    flex: 1.2;
    max-width: 650px;
    padding-right: 20px; /* Added padding for better spacing */
}

.strategic-edge-content .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #72a1dea2; /* Ensure consistent gradient or color */
}

.strategic-edge-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0 0 35px;
    text-align: justify;
}

.strategic-edge-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strategic-edge-video img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.strategic-edge-video img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(114, 161, 222, 0.2);
}

.strategic-edge .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(45deg, rgba(114, 161, 222, 0.1), rgba(114, 161, 222, 0.2));
    border: 1px solid rgba(114, 161, 222, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.strategic-edge .cta-button:hover {
    background: linear-gradient(45deg, #72a1de, #4682b4);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(114, 161, 222, 0.2);
}

.strategic-edge .cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.strategic-edge .cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive design for strategic edge section */
@media screen and (max-width: 1200px) {
    .strategic-edge {
        padding: 30px;
        gap: 40px;
    }
    
    .strategic-edge-content .section-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 1024px) {
    .strategic-edge {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .strategic-edge-content {
        max-width: 100%;
        padding-right: 0; /* Remove padding on smaller screens */
    }

    .strategic-edge-content .section-title {
        text-align: center;
    }

    .strategic-edge-content p {
        text-align: center;
    }

    .strategic-edge-video {
        width: 100%;
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .strategic-edge {
        width: 95%;
        padding: 25px;
    }

    .strategic-edge-content .section-title {
        font-size: 2rem;
    }

    .strategic-edge-content p {
        font-size: 1rem;
    }

    .strategic-edge .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ================================================ */
/* === RESPONSIVE DESIGN FOR DATA STRATEGY PAGE === */
/* ================================================ */

/* Mobile menu icon - hidden by default */
.menu-icon {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    background: rgba(10, 25, 47, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(114, 161, 222, 0.3);
}

.menu-icon i {
    font-size: 1.5rem;
    color: #72a1dea2;
}

/* Mobile-first responsive approach */
@media (max-width: 768px) {
    /* Show mobile menu icon */
    .menu-icon {
        display: flex;
    }

    /* Hide desktop navigation */
    .logo-bar-buttons {
        display: none;
    }

    /* Mobile menu styles */
    .sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1000;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sidebar.active {
        right: 0;
    }

    .close-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: #72a1dea2;
        cursor: pointer;
        z-index: 1001;
    }

    .sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
        width: 100%;
    }

    .sidebar ul li {
        margin: 20px 0;
    }

    .sidebar ul li a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 500;
        transition: color 0.3s ease;
        display: block;
        padding: 15px;
    }

    .sidebar ul li a:hover {
        color: #72a1dea2;
    }

    .sidebar-dropdown {
        position: relative;
    }

    .sidebar-submenu {
        display: none;
        background: rgba(114, 161, 222, 0.1);
        border-radius: 10px;
        margin-top: 10px;
        padding: 10px;
    }

    .sidebar-dropdown.active .sidebar-submenu {
        display: block;
    }

    .sidebar-submenu li {
        margin: 10px 0;
    }

    .sidebar-submenu li a {
        font-size: 1.2rem;
        padding: 10px;
    }

    .social-sidebar {
        position: absolute;
        bottom: 30px;
        display: flex;
        gap: 20px;
    }

    .social-sidebar a {
        color: #72a1dea2;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

    .social-sidebar a:hover {
        color: white;
    }

    /* Hero section responsive */
    .hero {
        padding: 40px 20px;
        text-align: center;
        height: auto !important;
        min-height: 60vh;
    }

    .hero-info h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-info p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* Stats section responsive */
    .stats-section {
        padding: 40px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .stat {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .stat-circle-wrapper {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }

    .progress-circle {
        width: 200px;
        height: 200px;
    }

    .stat p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Strategic edge section responsive */
    .strategic-edge {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
    }

    .strategic-edge-content {
        max-width: 100%;
        padding-right: 0;
    }

    .strategic-edge-content .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .strategic-edge-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .strategic-edge-video {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .strategic-edge-video img {
        width: 100%;
        height: auto;
    }

    /* Custom data solutions section responsive */
    .custom-data-solutions {
        padding: 40px 20px;
    }

    .custom-data-solutions .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .solutions-container {
        flex-direction: column;
        gap: 30px;
    }

    .data-services-list {
        width: 100%;
        text-align: center;
    }

    .data-services-list h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .data-services-list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: left;
    }

    .data-services-list li {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .data-services-model {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .training-text,
    .adaptation-text {
        font-size: 0.8rem;
    }

    .center-circle {
        width: 120px;
        height: 120px;
    }

    .gen-ai-text {
        font-size: 0.8rem;
    }

    .model-text {
        font-size: 1.2rem;
    }

    .data-point {
        width: 80px;
        height: 80px;
    }

    .data-point .icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .data-point span {
        font-size: 0.7rem;
    }

    .adaptation-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: center;
    }

    .adaptation-item {
        font-size: 0.9rem;
        padding: 12px;
    }

    /* Strategy framework section responsive */
    .strategy-framework {
        padding: 40px 20px;
    }

    .strategy-framework .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .framework-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .framework-step {
        padding: 25px;
    }

    .framework-step h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .framework-step p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Why choose us section responsive */
    .why-choose-us {
        padding: 40px 20px;
    }

    .why-choose-us .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .reasons-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reason {
        padding: 25px;
        text-align: center;
    }

    .reason i {
        font-size: 3rem !important;
        margin-bottom: 20px;
    }

    .reason h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .reason p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Footer responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column {
        padding: 0 20px;
    }

    .footer-column h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-column ul li {
        margin: 10px 0;
    }

    .footer-column ul li a {
        font-size: 0.95rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
        padding: 20px;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-info h1 {
        font-size: 3rem;
    }

    .hero-info p {
        font-size: 1.2rem;
    }

    .strategic-edge {
        padding: 40px;
        gap: 50px;
    }

    .strategic-edge-content .section-title {
        font-size: 2.5rem;
    }

    .solutions-container {
        gap: 40px;
    }

    .data-services-model {
        width: 80%;
        height: 450px;
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .reasons-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Large screen responsive */
@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-info h1 {
        font-size: 3.5rem;
    }

    .strategic-edge {
        padding: 50px;
        gap: 60px;
    }

    .strategic-edge-content .section-title {
        font-size: 2.8rem;
    }

    .solutions-container {
        gap: 50px;
    }

    .data-services-model {
        width: 70%;
        height: 500px;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
        min-height: 50vh;
    }

    .hero-info h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-info p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .stats-section {
        padding: 30px 15px;
        gap: 20px;
    }

    .stat-circle-wrapper {
        width: 150px;
        height: 150px;
    }

    .progress-circle {
        width: 150px;
        height: 150px;
    }

    .strategic-edge {
        padding: 25px 15px;
        gap: 20px;
    }

    .strategic-edge-content .section-title {
        font-size: 1.8rem;
    }

    .custom-data-solutions,
    .strategy-framework,
    .why-choose-us {
        padding: 30px 15px;
    }

    .custom-data-solutions .section-title,
    .strategy-framework .section-title,
    .why-choose-us .section-title {
        font-size: 1.8rem;
    }

    .data-services-model {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .framework-grid {
        gap: 20px;
    }

    .framework-step {
        padding: 20px;
    }

    .reasons-container {
        gap: 20px;
    }

    .reason {
        padding: 20px;
    }

    .menu-icon {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .menu-icon i {
        font-size: 1.3rem;
    }

    .sidebar ul li a {
        font-size: 1.3rem;
        padding: 12px;
    }

    .sidebar-submenu li a {
        font-size: 1.1rem;
        padding: 8px;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    .cta-button,
    .framework-step,
    .reason,
    .data-point {
        min-height: 44px;
        min-width: 44px;
    }

    .sidebar ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .strategic-edge,
    .framework-step,
    .reason {
        border: 2px solid #72a1dea2;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .strategic-edge-video img,
    .cta-button,
    .data-point {
        transition: none;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 20px;
    }

    .hero-info h1 {
        font-size: 2rem;
    }

    .hero-info p {
        font-size: 1rem;
    }

    .strategic-edge {
        padding: 20px;
        gap: 20px;
    }

    .solutions-container {
        flex-direction: row;
        gap: 20px;
    }

    .data-services-model {
        width: 50%;
        height: 300px;
    }
}

/* Fix background video effects for mobile */
@media (max-width: 768px) {
    /* Ensure background video covers full screen on mobile */
    .back-vid {
        opacity: 0.4;
        mix-blend-mode: normal;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    /* Ensure proper backdrop filters on mobile */
    .strategic-edge,
    .custom-data-solutions,
    .strategy-framework,
    .why-choose-us {
        backdrop-filter: blur(8px);
        background: rgba(10, 25, 47, 0.85);
        border: 1px solid rgba(114, 161, 222, 0.2);
    }

    /* Fix blurriness by reducing complex shadows and effects */
    .framework-step,
    .reason,
    .data-point {
        backdrop-filter: blur(6px);
        background: rgba(10, 25, 47, 0.9);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(114, 161, 222, 0.15);
    }

    /* Optimize AOS animations for mobile */
    [data-aos] {
        animation-duration: 0.8s !important;
        animation-delay: 0s !important;
    }

    /* Enhanced mobile contrast */
    .section-title,
    .framework-step h3,
    .reason h3 {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .framework-step p,
    .reason p {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    }

    /* Ensure container takes full width on mobile */
    .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin: 0;
    }

    /* Fix any overflow issues */
    body {
        overflow-x: hidden;
        width: 100vw;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .back-vid {
        opacity: 0.5;
    }

    .strategic-edge,
    .custom-data-solutions,
    .strategy-framework,
    .why-choose-us {
        backdrop-filter: blur(6px);
        background: rgba(10, 25, 47, 0.9);
    }

    .framework-step,
    .reason,
    .data-point {
        backdrop-filter: blur(4px);
        background: rgba(10, 25, 47, 0.95);
    }
}