
     * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Video Background Container */
.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;  /* CHANGED FROM 120vh */
    z-index: -1;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.video-background.active {
    opacity: 1;
}

.video-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Webinar Banner */
.webinar-banner {
    position: fixed;
    height: 7%;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    color: white;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.webinar-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.webinar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.webinar-text {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.watch-btn {
    padding: 10px 28px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.watch-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.watch-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.watch-btn:hover::before {
    height: 100%;
}

.close-banner {
    position: absolute;
    right: 50px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

/* Sticky Navbar */
.sticky-navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 100px 8px 7.2%;
    transition: top 0.4s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sticky-navbar.visible {
    top: 0;
    animation: slideDownNav 0.4s ease-out;
}

@keyframes slideDownNav {
    from {
        top: -90px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.sticky-navbar img {
    height: 64px;
    width: auto;
    filter: none;
    object-fit: cover;
    object-position: center;
}

.sticky-navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sticky-navbar .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.sticky-navbar .menu-toggle svg {
    width: 30px;
    height: 30px;
    stroke: #333;
    stroke-width: 2;
}

.sticky-navbar .consultation-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border-top: 0.4px solid #050714;
    border-left: 1px solid #050714;
    border-right: 1px solid #050714;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.sticky-navbar .consultation-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.sticky-navbar .consultation-btn:hover {
    color: white;
}

.sticky-navbar .consultation-btn:hover::before {
    height: 100%;
}

/* Logo Container */
.logo-container {
    position: fixed;
    top: 65px;
    left: 7.05%;
    z-index: 900;
    transition: all 0.3s ease;
}

.logo-container.banner-hidden {
    top: 40px;
}

.logo-container.hide {
    opacity: 0;
    pointer-events: none;
}

.logo-container img {
    height: 69px;
    width: auto;
}

/* Menu Toggle Container */
.menu-toggle-container {
    position: fixed;
    top: 70px;
    right: 100px;
    z-index: 900;
    transition: all 0.3s ease;
}

.menu-toggle-container.banner-hidden {
    top: 60px;
}

.menu-toggle-container.hide {
    opacity: 0;
    pointer-events: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 200px;
    width: 100%;           /* ADD THIS */
    max-width: 100vw;      /* ADD THIS */
    overflow: hidden;       /* ADD THIS */
}

.hero-container {
    margin-left: 7.5%;
    margin-right: 7.5%;      /* CHANGED FROM 100px */
    max-width: calc(100% - 15%);  /* ADD THIS */
    color: white;
    width: auto;
}

.hero-content {
    animation: slideUpContent 0.8s ease-out;
    text-align: left;
}

@keyframes slideUpContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    max-width: 900px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    max-width: 750px;
    margin-bottom: 30px;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.hero-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.hero-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.hero-btn:hover {
    color: white;
}

.hero-btn:hover::before {
    height: 100%;
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-bottom: 3px solid white;
}

.hero-btn-secondary::before {
    background: white;
}

.hero-btn-secondary:hover {
    color: #050714;
}

/* Industry Tabs Section */
.industry-tabs-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.industry-tabs-container {
    margin: 0 7.5%;
    margin-right: 100px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 0;
    position: relative;
}

/* Animated Line Indicator */
.industry-line-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #0B2A3D;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(37, 162, 193, 0.8);
}

.industry-tab {
    flex: 1;
    padding: 10px 15px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    position: relative;
    opacity: 0.7;
}

.industry-tab:first-child {
    text-align: left;
}

.industry-tab:last-child {
    text-align: right;
}

.industry-tab.active {
    opacity: 1;
    font-weight: 600;
}

.industry-tab:hover {
    opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    z-index: 10;
    padding: 8px 100px 8px 7.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-logo img {
    height: 66px;
    width: auto;
}

.dropdown-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dropdown-consultation-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dropdown-consultation-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.dropdown-consultation-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.dropdown-consultation-btn:hover::before {
    height: 100%;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.close-menu svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.dropdown-container {
    max-width: 1400px;
    margin: 0 80px;
    padding: 60px 40px 80px;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: white;
}

.dropdown-section-wrapper {
    display: block;
    margin-bottom: 0;
}

.dropdown-section-title {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dropdown-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 30px;
    grid-auto-flow: row;
}

.dropdown-item {
    display: block;
}

.dropdown-item a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.3s;
    font-size: 18px;
    line-height: 1.5;
}

.dropdown-item a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    color: white;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Content Section */
.content-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.content-container {
    margin: 0 7.5%;
    margin-right: 100px;
}

.content-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.3;
}

.content-section .subtitle {
    font-size: 19px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.5;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    color: white;
    padding: 50px 45px;
    transition: all 0.3s;
    
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

.card-text h3:first-child {
    margin-bottom: 4px;
}

.card-text h3 .normal {
    font-weight: 400;
}

.card-icon {
    flex-shrink: 0;
    margin-left: 20px;
}

.card-icon svg {
    width: 70px;
    height: 70px;
    stroke: white;
    stroke-width: 1.5;
}

.consult-link {
    margin-top:40px;
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.consult-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.consult-link:hover {
    color: white;
    border-bottom-color: #050714;
}

.consult-link:hover::before {
    height: 100%;
}

/* ========== ABOUT QUALYTIX SECTION ========== */
.about-Qualytix-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about-Qualytix-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(5, 7, 20, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(5, 7, 20, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.about-Qualytix-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 7.5%;
    position: relative;
    z-index: 2;
}

.about-decorative-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #050714 0%, #0B2A3D 100%);
    margin-bottom: 60px;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-main-content {
    position: relative;
}

.about-title {
    font-size: 56px;
    font-weight: 900;
    color: #050714;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-description {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    max-width: 650px;
}

.about-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #050714;
    border-top: 0.4px solid #050714;
    border-left: 1px solid #050714;
    border-right: 1px solid #050714;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.about-cta-btn:hover {
    color: white;
}

.about-cta-btn:hover::before {
    height: 100%;
}

.about-stats-grid {
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
    border: none;
}

.about-stats-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ========== MOBILE RESPONSIVENESS ========== */

/* Tablets */
@media (max-width: 1024px) {
    .about-Qualytix-container {
        padding: 0 5%;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-title {
        font-size: 44px;
    }

    .about-description {
        font-size: 18px;
        max-width: 100%;
    }
}

/* Mobile - Image First, Then Text */
@media (max-width: 768px) {
    .about-Qualytix-section {
        padding: 60px 0;
    }

    .about-Qualytix-container {
        padding: 0 20px;
    }

    .about-decorative-line {
        width: 80px;
        height: 3px;
        margin-bottom: 30px;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    /* Image appears first on mobile */
    .about-stats-grid {
        order: 1;
        margin-bottom: 20px;
    }

    /* Text content appears second */
    .about-main-content {
        order: 2;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .about-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .about-cta-btn {
        padding: 13px 32px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .about-stats-grid img {
        border-radius: 6px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-Qualytix-section {
        padding: 50px 0;
    }

    .about-Qualytix-container {
        padding: 0 15px;
    }

    .about-decorative-line {
        width: 60px;
        margin-bottom: 25px;
    }

    .about-content-wrapper {
        gap: 30px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .about-cta-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .about-stats-grid img {
        border-radius: 4px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .about-Qualytix-container {
        padding: 0 12px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-cta-btn {
        padding: 11px 24px;
        font-size: 12px;
    }
}

/* State of Data Section */
.state-of-data-section {
    background: #f5f8fa;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.state-of-data-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.state-of-data-left h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
    line-height: 1.2;
}

.state-of-data-left p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.state-of-data-left p a {
    color: #050714;
    text-decoration: none;
    border-bottom: 1px solid #050714;
    transition: color 0.3s;
}

.state-of-data-left p a:hover {
    color: #0B2A3D;
    border-bottom-color: #0B2A3D;
}

.data-issues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
}

.data-issue-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.data-issue-item::before {
    content: '⮞';
    color: #0B2A3D;
    font-size: 12px;
    flex-shrink: 0;
}

.state-of-data-right {
    position: relative;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}


/* Expert Team CTA Section */
.expert-cta-section {
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    padding: 30px 0;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.expert-cta-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.3;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.expert-cta-content p {
    font-size: 19px;
    line-height: 1;
    margin-bottom: 16px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.expert-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.expert-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.expert-cta-btn:hover {
    color: white;
    border-bottom-color: #050714;
}

.expert-cta-btn:hover::before {
    height: 100%;
}
/* Industries Section */
.industries-section {
    background: #F0F2F5;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.industries-header {
    margin-bottom: 60px;
}

.industries-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
    line-height: 1.3;
}

.industries-header .subtitle {
    font-size: 19px;
    color: #050714;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.industries-header .description {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    max-width: 1200px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.industry-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.industry-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-card-image {
    transform: scale(1.1);
}

.industry-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.industry-card-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 20px;
}

.industry-card-underline {
    width: 60px;
    height: 3px;
    background: #0B2A3D;
    margin-top: 12px;
}

.industry-card-cta {
    background: #050714;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background 0.3s;
}

.industry-card-cta:hover {
    background: #0B2A3D;
}

.industry-card-cta .cta-icon {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    transform: rotate(-45deg);
}

.industry-card-cta .cta-text {
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Industries CTA Wrapper */
.industries-cta-wrapper {
    margin-top: 24px;
    text-align: left;
}

/* What We Offer Section */
.what-we-offer-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.what-we-offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-offer-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}

.what-we-offer-header .subtitle {
    font-size: 19px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(5, 7, 20, 0.6) 0%, rgba(8, 26, 47, 0.7) 100%);
}

.service-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg) scale(1.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.service-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-title {
    transform: translateY(-5px);
}

.service-description {
    color: white;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.service-card:hover .service-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.services-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.services-cta-btn:hover {
    color: white;
    border-bottom-color: #050714;
}

.services-cta-btn:hover::before {
    height: 100%;
}
/* ========== INDUSTRY LEADER SECTION ========== */
.industry-leader-section {
    position: relative;
    width: 100%;
    background: white;
    z-index: 2;
    overflow: hidden;
}

.industry-leader-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.industry-leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.industry-leader-content {
    background: white;
    padding: 60px 7.5%;
    padding-right: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.industry-leader-text {
    flex: 1;
    max-width: 800px;
}

.industry-leader-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 24px;
}

.industry-leader-text p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.industry-leader-cta {
    flex-shrink: 0;
}

.industry-leader-btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.industry-leader-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.industry-leader-btn:hover {
    color: white;
    border-bottom-color: #050714;
}

.industry-leader-btn:hover::before {
    height: 100%;
}


/* Testimonials Section */
.testimonials-section {
    background: #F0F2F5;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonials-left h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    line-height: 1.3;
}

.testimonial-content {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    transition: none;
}

.testimonial-slide.slide-out-left {
    animation: slideOutLeft 0.3s ease-out forwards;
}

.testimonial-slide.slide-out-right {
    animation: slideOutRight 0.3s ease-out forwards;
}

.testimonial-slide.slide-in-left {
    animation: slideInLeft 0.3s ease-out forwards;
}

.testimonial-slide.slide-in-right {
    animation: slideInRight 0.3s ease-out forwards;
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-quote {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 17px;
    color: #050714;
    font-weight: 600;
    line-height: 1.5;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #050714;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-nav-btn:hover {
    background: #050714;
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #050714;
    stroke-width: 2.5;
}

.testimonial-nav-btn:hover svg {
    stroke: white;
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #B8B8B8;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #050714;
    width: 12px;
    height: 12px;
}

.testimonials-right {
    position: relative;
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Partner With Us Section */
.why-partner-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.why-partner-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

.why-partner-image-side {
    position: relative;
}

.partner-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.partner-image-wrapper:hover .partner-image {
    transform: scale(1.05);
}

.partner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 7, 20, 0.2) 0%, rgba(5, 7, 20, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-badge {
    position: relative;
    text-align: center;
    color: white;
    padding: 50px 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
}

.partner-image-wrapper:hover .partner-badge {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-5px);
}

.badge-content {
    position: relative;
}

.badge-number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -2px;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.6);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-divider {
    width: 60px;
    height: 3px;
    background: white;
    margin: 0 auto 15px;
    box-shadow: 0 2px 8px rgba(255,255,255,0.3);
}

.badge-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.badge-subtext {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.why-partner-text-side {
    padding-left: 0;
    padding-right: 40px;
    max-width: 650px;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    color: #050714;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid #0B2A3D;
}

.why-partner-text-side h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 50px;
}

.partner-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(5, 7, 20, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-number {
    transform: scale(1.1);
}

.benefit-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Client Ratings Section */
.client-ratings-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.client-ratings-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.3;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

.star-rating svg {
    width: 32px;
    height: 32px;
}

.star-filled {
    fill: #050714;
}

.star-cyan {
    fill: #0B2A3D;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
}

.rating-circle svg {
    transform: rotate(-90deg);
}

.rating-circle-bg {
    fill: none;
    stroke: #E8E8E8;
    stroke-width: 20;
}

.rating-circle-fill {
    fill: none;
    stroke: #0B2A3D;
    stroke-width: 20;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.rating-circle-dark {
    fill: none;
    stroke: #050714;
    stroke-width: 20;
    stroke-linecap: round;
}

.rating-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.rating-score {
    font-size: 48px;
    font-weight: 700;
    color: #050714;
    line-height: 1;
}

.rating-total {
    font-size: 24px;
    color: #666;
    font-weight: 400;
}

.rating-label {
    font-size: 18px;
    color: #050714;
    font-weight: 600;
}
/* Success Stories Section */
.success-stories-section {
    background: white;
    padding: 80px 0 100px;
    position: relative;
    z-index: 2;
}

.success-stories-header {
    margin-bottom: 40px;
}

.success-stories-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.stories-filters {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #0B2A3D;
    padding-bottom: 0;
}

.filter-tab {
    background: none;
    border: none;
    color: #666;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    padding: 12px 0;
    transition: all 0.3s;
    position: relative;
}

.filter-tab.active {
    color: #050714;
    font-weight: 600;
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #050714;
}

.filter-tab:hover {
    color: #050714;
}

.stories-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.stories-grid-row-1 {
    grid-template-columns: 75% 25%;
}

.stories-grid-row-2 {
    grid-template-columns: 25% 75%;
}

.stories-grid-row-3 {
    grid-template-columns: 75% 25%;
}

.story-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.story-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-card-image {
    transform: scale(1.1);
}

.story-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.story-card:hover .story-card-overlay::before {
    transform: translateX(0);
}

.story-category {
    position: absolute;
    top: 30px;
    right: 0;
    background: #050714;
    color: white;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 3;
    transition: transform 0.5s ease;
}

.story-card:hover .story-category {
    transform: translateX(100%);
}

.story-title {
    color: white;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0 0 20px 0;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease 0.2s;
}

.story-card:hover .story-title {
    transform: translateY(-60px);
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #050714;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 2;
    align-self: flex-start;
}

.story-card:hover .read-more-btn {
    opacity: 1;
    transform: translateY(-60px);
}

.read-more-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.read-more-btn:hover {
    color: white;
}

.read-more-btn:hover::before {
    height: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pagination-btn {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #666;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn.active {
    background: #050714;
    color: white;
}

.pagination-btn:hover:not(.active) {
    color: #050714;
}

.pagination-next,
.pagination-prev {
    color: #050714;
    font-weight: 600;
    gap: 8px;
}

/* Recent Posts Section */
.recent-posts-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.recent-posts-section .content-container {
    margin: 0 7.5%;
    margin-right: 100px;
}

.recent-posts-header {
    margin-bottom: 60px;
}

.recent-posts-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.post-card {
    display: block;
}

.post-card-image-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.post-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 4px;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    min-height: 76px;
}

.post-card-badge-logo-section {
    display: flex;
    flex-direction: column;
    padding-right: 16px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    align-self: center;
}

.post-card-badge-logo {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    white-space: nowrap;
}

.post-card-badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.post-card-badge-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.post-card-badge-subtitle {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.3;
    min-height: 16px;
}

.post-card-date {
    color: #050714;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
}

.post-card-title-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.post-card-title {
    color: #222;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.view-all-articles {
    text-align: center;
}

.view-all-articles a {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.view-all-articles a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.view-all-articles a:hover {
    color: white;
    border-bottom-color: #050714;
}

.view-all-articles a:hover::before {
    height: 100%;
}

/* CTA Banner Section */
.cta-banner-section {
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-banner-text {
    flex: 1;
}

.cta-banner-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner-text p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-banner-button {
    flex-shrink: 0;
}

.cta-banner-btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.cta-banner-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.cta-banner-btn:hover {
    color: white;
    border-bottom-color: #050714;
}

.cta-banner-btn:hover::before {
    height: 100%;
}

/* Footer Section */
.footer-section {
    background: white;
    padding: 80px 0 0 0;
    position: relative;
    z-index: 2;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 0.7fr;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 14px;
    width: 90% !important;
}

.footer-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    width: 100% !important;
}

.footer-column ul li a:hover {
    color: #050714;
}

.footer-column sup {
    font-size: 11px;
    top: -0.3em;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.social-icon:hover {
    background: #050714;
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.gptw-badge {
    width: 100px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 64px;
    width: auto;
}

.footer-copyright {
    flex: 1;
    text-align: center;
    color: #666;
    font-size: 15px;
}

.footer-search {
    display: flex;
    gap: 0;
    max-width: 400px;
    width: 100%;
}

.footer-search input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-right: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 0; /* CRITICAL: Allows input to shrink below content size */
}

.footer-search input:focus {
    border-color: #050714;
}

.footer-search input::placeholder {
    color: #999;
}

.footer-search button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents button from shrinking */
    min-width: 60px; /* Ensures minimum button width */
}

.footer-search button:hover {
    background: linear-gradient(135deg, #081A2F 0%, #0B2A3D 60%, #050714 100%);
}

.footer-links {
    background: #f5f5f5;
    padding: 20px 0;
    text-align: center;
}

.footer-links-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #050714;
}

.footer-links-separator {
    color: #ccc;
}

/* ========== MOBILE RESPONSIVENESS - TABLETS ========== */
@media (max-width: 1200px) {

     .hero-section {
        padding-top: 240px !important;
        padding-bottom: 140px
          /* Increased from default */
    }
    .services-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}


@media (max-width: 1024px) {
    /* Hero Section - INCREASE PADDING to prevent text touching logo */
    .hero-section {
        padding-top: 240px !important;
        padding-bottom: 130px
          /* Increased from default */
    }

    .hero-content h1 {
        font-size: 40px;
        margin-top: 20px !important;  /* Extra spacing from logo */
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 17px;
        margin-bottom: 24px;
    }

    /* Logo positioning for 1024px */
    .logo-container {
        top: 75px;
    }

    .logo-container.banner-hidden {
        top: 45px;
    }


    /* Menu toggle positioning */
    .menu-toggle-container {
        top: 80px;
    }

    .menu-toggle-container.banner-hidden {
        top: 50px;
    }

    .ratings-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px;
        max-width: 100%;
    }

    .rating-circle {
        width: 180px;
        height: 180px;
    }

    .rating-score {
        font-size: 44px;
    }

    .rating-total {
        font-size: 22px;
    }

    .rating-label {
        font-size: 16px;
    }

    /* Industry Tabs */
    .industry-tabs-container {
        margin: 0 5%;
        margin-right: 20px;
    }

    /* Services Grid */
    .services-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-image-wrapper {
        height: 350px;
    }

    /* Other sections adjustments */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    

    .state-of-data-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-leader-content {
        flex-direction: column;
        padding: 60px 7.5%;
        gap: 40px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .data-issues-grid {
        grid-template-columns: 1fr;
    }

    .why-partner-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .partner-image-wrapper {
        height: 500px;
    }

    .why-partner-text-side h2 {
        font-size: 36px;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* ========== 768px MOBILE/TABLET FIX ========== */
@media (max-width: 768px) {
    /* Base Mobile Fixes */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    * {
        box-sizing: border-box;
    }

    /* Universal Container Fix */
    .content-container,
    .hero-container {
        margin-left: 20px !important;
        margin-right: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: calc(100% - 40px) !important;
        max-width: calc(100% - 40px) !important;
    }
    
    /* Webinar Banner */
     .webinar-banner {
        height: auto;
        padding: 10px 12px; /* More compact */
        flex-wrap: wrap;
    }

    .webinar-content {
        flex-direction: column;
        gap: 10px;
        padding-right: 35px;
        width: 100%;
        max-width: 100%; /* Full width on mobile */
    }

    .webinar-text {
        font-size: 12px; /* Smaller on mobile */
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }

    .watch-btn {
        padding: 8px 20px; /* More compact */
        font-size: 12px;
        width: auto; /* Not full width */
        text-align: center;
    }

    .close-banner {
        right: 12px;
        top: 10px;
    }

    .close-banner svg {
        width: 16px;
        height: 16px;
    }

    /* Logo Container */
     .logo-container {
        position: fixed !important;
        left: 20px !important;
        top: 100px !important;
        z-index: 900 !important;
    }

    .logo-container.banner-hidden {
        top: 20px !important;
    }

    .logo-container img {
        height: 50px !important;
        width: auto !important;
    }

     /* Menu Toggle Container - Ensure visibility */
    .menu-toggle-container {
        position: fixed !important;
        right: 20px !important;
        top: 100px !important;
        z-index: 900 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .menu-toggle-container.banner-hidden {
        top: 20px !important;
    }

    .menu-toggle {
        display: flex !important;
        padding: 10px !important;
        border-radius: 4px !important;
    }

    .menu-toggle svg {
        width: 28px !important;
        height: 28px !important;
        stroke: white !important;
        stroke-width: 2.5 !important;
    }


    /* Sticky Navbar */
    .sticky-navbar {
        padding: 10px 15px;
    }

    .sticky-navbar img {
        height: 45px;
    }

    .sticky-navbar .nav-right {
        gap: 12px;
    }

    .sticky-navbar .consultation-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

   .hero-section {
        min-height: 100vh;
        padding-top: 220px !important;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-content {
        margin-top: 0;
        padding-top: 0;
    }

    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        margin-top: 0 !important;
    }

    .hero-content p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }

    /* Button Container - Keep Row Layout */
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }

    /* Buttons - Allow Text Wrapping */
    .hero-btn {
        flex: 1;
        min-width: 0; /* Critical: Allows flex items to shrink below content size */
        padding: 12px 10px !important;
        font-size: 12px !important;
        font-weight: 600;
        line-height: 1.3 !important;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: normal !important; /* Allow text wrapping */
        word-break: break-word;
        hyphens: auto;
    }

    .hero-btn-secondary {
        flex: 1;
        min-width: 0;
    }

    /* Industry Tabs - Vertical Stack */
    .industry-tabs-section {
        position: relative;
        bottom: auto;
        margin-top: 40px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
    }

    .industry-tabs-container {
        margin: 0 20px !important;
        padding: 0;
        flex-direction: column;
        gap: 0;
    }

    .industry-tab {
        padding: 16px 20px;
        text-align: left !important;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        display: block;
        background: transparent;
        transition: background 0.3s;
    }

    .industry-tab:hover,
    .industry-tab.active {
        background: rgba(255, 255, 255, 0.1);
    }

    .industry-tab:last-child {
        border-bottom: none;
        text-align: left !important;
    }

    .industry-tab:first-child {
        text-align: left !important;
    }

    .industry-line-indicator {
        display: none !important;
    }

    /* Content Section */
    .content-section {
        padding: 60px 0;
    }

    .content-section h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .content-section .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .section-header-link {
        margin-top: 30px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 30px 25px;
    }

    .card-content {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .card-text h3 {
        font-size: 20px;
    }

    .card-icon svg {
        width: 50px;
        height: 50px;
    }

   

    /* State of Data Section */
    .state-of-data-section {
        padding: 60px 0;
    }

    .state-of-data-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .state-of-data-left h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .state-of-data-left p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .data-issues-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 16px !important;
        width: 100%;
    }

    .data-issue-item {
        font-size: 14px;
        padding: 4px 0;
    }

    .data-issue-item::before {
        font-size: 10px;
    }

    .video-thumbnail {
        width: 100%;
        height: auto;
    }

    
    /* Expert CTA Section */
    .expert-cta-section {
        padding: 40px 0;
    }

    .expert-cta-content h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .expert-cta-content p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    /* Services Section */
    .what-we-offer-section {
        padding: 60px 0;
    }

    .what-we-offer-header h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .what-we-offer-header .subtitle {
        font-size: 16px;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image-wrapper {
        height: 300px;
    }

    .service-overlay {
        padding: 25px;
    }

    .service-icon {
        top: 25px;
        right: 25px;
        width: 44px;
        height: 44px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
        max-height: none;
        opacity: 1;
        margin-top: 8px;
    }

    /* Industries Section */
    .industries-section {
        padding: 60px 0;
    }

    .industries-header h2 {
        font-size: 28px;
    }

    .industries-header .subtitle,
    .industries-header .description {
        font-size: 16px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-card {
        height: 280px;
    }
      .industries-cta-wrapper {
        margin-top: 16px;
        text-align: center;
    }
    
    .industries-cta-wrapper .expert-cta-btn {
        width: 100%;
        max-width: 100%;
    }

    /* Industry Leader Section */
    .industry-leader-image {
        width: 100%;
        height: auto;
    }

    .industry-leader-content {
        padding: 50px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .industry-leader-text h2 {
        font-size: 28px;
    }

    .industry-leader-text p {
        font-size: 16px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Text section first */
    .testimonials-left {
        order: 1 !important;
    }
    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-left h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .testimonial-quote {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .testimonial-author {
        font-size: 16px;
    }

    .testimonial-navigation {
        gap: 16px;
    }

    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
    }
     /* Why Partner Section */
    .why-partner-section {
        padding: 60px 0;
    }

    .why-partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-image-wrapper {
        height: 400px;
    }

    .partner-badge {
        padding: 40px 50px;
    }

    .badge-number {
        font-size: 64px;
    }

    .badge-text {
        font-size: 16px;
    }

    .badge-subtext {
        font-size: 14px;
    }

    .why-partner-text-side {
        padding: 0;
        max-width: 100%;
    }

    .why-partner-text-side h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .benefit-item {
        gap: 20px;
    }

    .benefit-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .benefit-content h3 {
        font-size: 20px;
    }

    .benefit-content p {
        font-size: 15px;
    }

    /* Client Ratings - 3 COLUMNS */
    .client-ratings-section {
        padding: 60px 0 !important;
        overflow: hidden !important;
    }

    .client-ratings-section .content-container {
        margin-left: 15px !important;
        margin-right: 15px !important;
        padding: 0 10px !important;
    }

    .client-ratings-section h2 {
        font-size: 26px !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }

    .star-rating {
        margin-bottom: 40px !important;
    }

    /* Three column layout with proper spacing */
    .ratings-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 8px !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .rating-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 4px !important;
    }

    .rating-circle {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 16px !important;
    }

    .rating-circle svg {
        width: 100px !important;
        height: 100px !important;
    }

    .rating-circle-bg,
    .rating-circle-fill,
    .rating-circle-dark {
        stroke-width: 16 !important;
    }

    .rating-text {
        transform: translate(-50%, -50%) scale(0.65) !important;
    }

    .rating-score {
        font-size: 32px !important;
    }

    .rating-total {
        font-size: 18px !important;
    }

    .rating-label {
        font-size: 11px !important;
        text-align: center !important;
        line-height: 1.3 !important;
        padding: 0 2px !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }


    /* Success Stories Section */
    .success-stories-section {
        padding: 60px 0;
    }

    .success-stories-header h2 {
        font-size: 28px;
    }

    .stories-filters {
        flex-wrap: wrap;
        gap: 12px;
        overflow-x: auto;
    }

    .filter-tab {
        font-size: 14px;
        padding: 10px 0;
    }

    .stories-grid {
        grid-template-columns: 1fr !important;
    }

    .story-card {
        height: 320px;
    }

    .story-title {
        font-size: 22px;
    }

    .pagination {
        gap: 8px;
        flex-wrap: wrap;
    }

    .pagination-btn {
        min-width: 40px;
        height: 40px;
        font-size: 15px;
    }

    /* Recent Posts Section */
    .recent-posts-section {
        padding: 60px 0;
    }

    .recent-posts-header h2 {
        font-size: 28px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .post-card-image-wrapper {
        height: 240px;
    }

    .post-card-badge {
        padding: 16px 20px;
        min-height: 70px;
    }

    .post-card-title {
        font-size: 20px;
    }

    /* CTA Banner Section */
    .cta-banner-section {
        padding: 40px 0;
    }

    .cta-banner-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-banner-text h2 {
        font-size: 24px;
    }

    .cta-banner-text p {
        font-size: 16px;
    }

    .cta-banner-btn {
        width: 100%;
    }

    /* Footer Section */
    .footer-section {
        padding: 60px 0 0 0;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 15px;
    }

    .footer-logo {
        order: 1;
        text-align: center;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-copyright {
        order: 2;
        font-size: 14px;
        text-align: center;
    }

    .footer-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 12px 16px;
        font-size: 14px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 12px 24px;
        font-size: 16px;
        min-width: 60px;
    }

    .footer-links-content {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links-separator {
        display: none;
    }

    /* Dropdown Menu */
    .dropdown-header {
        padding: 12px 15px;
    }

    .dropdown-logo img {
        height: 45px;
    }

    .dropdown-consultation-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

      /* Dropdown Menu Mobile Styles */
    .dropdown-container {
        margin: 0 15px;
        padding: 30px 15px;
    }

    .dropdown-content {
        gap: 0;
    }

    .dropdown-section-wrapper {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-section-wrapper:last-child {
        border-bottom: none;
    }

    /* Section Title as Accordion Toggle */
    .dropdown-section-title {
        font-size: 18px;
        margin-bottom: 0;
        padding: 10px 0;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        transition: all 0.3s ease;
    }

    .dropdown-section-title:hover {
        opacity: 0.8;
    }

    /* Add Arrow Icon */
    .dropdown-section-title::after {
        content: '›';
        font-size: 28px;
        font-weight: 300;
        transform: rotate(90deg);
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown-section-wrapper.active .dropdown-section-title::after {
        transform: rotate(-90deg);
    }

    /* Hide items grid by default on mobile */
    .dropdown-items-grid {
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 12px;
        animation: slideDown 0.3s ease-out;
    }

    .dropdown-section-wrapper.active .dropdown-items-grid {
        display: grid;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Dropdown Items Styling */
    .dropdown-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-item:first-child {
        border-top: none;
    }

    .dropdown-item a {
        font-size: 15px;
        padding: 14px 0;
        padding-left: 16px;
        display: block;
        transition: all 0.2s ease;
    }

    .dropdown-item a:hover {
        opacity: 1;
        padding-left: 24px;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Social Links Mobile Spacing */
    .social-links {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}


/* ========== SMALL MOBILE DEVICES ========== */
@media (max-width: 480px) {
    /* Webinar Banner */
    .webinar-banner {
        padding: 8px 10px;
    }

    .webinar-text {
        font-size: 11px;
    }

    .watch-btn {
        padding: 7px 16px;
        font-size: 11px;
    }

    /* Logo */
    .logo-container {
        left: 15px !important;
        top: 55px;
    }

    .logo-container.banner-hidden {
        top: 35px;
    }

    .logo-container img {
       height: 38px;
    }

    /* Menu Toggle */
    .menu-toggle-container {
        right: 15px !important;
        top: 20px;
    }

    .menu-toggle svg {
        width: 24px;
        height: 24px;
    }

    /* Sticky Navbar */
    .sticky-navbar {
        padding: 8px 12px;
    }

    .sticky-navbar img {
        height: 38px;
    }

    .sticky-navbar .consultation-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

   .hero-section {
        padding-top: 180px !important;
        padding-bottom: 80px !important;
    }

    .hero-container {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .hero-content h1 {
        font-size: 24px !important;
        margin-bottom: 16px !important;
    }

    .hero-content p {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }

    .hero-buttons {
        gap: 8px;
        margin-top: 16px;
    }

    .hero-btn {
        padding: 11px 8px !important;
        font-size: 11px !important;
        line-height: 1.25 !important;
    }
    /* Industry Tabs */
    .industry-tabs-container {
        margin: 0 15px;
        padding: 12px 0;
    }

    .industry-tab {
        padding: 12px;
        font-size: 14px;
    }

    /* Dropdown Menu */
    .dropdown-header {
        padding: 10px 12px;
    }

    .dropdown-logo img {
        height: 38px;
    }

    .dropdown-right {
        gap: 10px;
    }

    .dropdown-consultation-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .close-menu svg {
        width: 22px;
        height: 22px;
    }
    .dropdown-content {
        gap: 25px;
    }

     .dropdown-container {
        margin: 0 12px;
        padding: 25px 12px;
    }

    .dropdown-section-title {
        font-size: 16px;
        padding: 3px 0;
    }

    .dropdown-section-title::after {
        font-size: 24px;
    }

    .dropdown-item a {
        font-size: 14px;
        padding: 12px 0;
        padding-left: 12px;
    }

    .dropdown-item a:hover {
        padding-left: 20px;
    }

    /* Content Section */
    .content-section h2 {
        font-size: 24px;
    }

  

    /* Data Issues Grid */
    .data-issues-grid {
        gap: 10px 16px;
    }

    .data-issue-item {
        font-size: 13px;
    }
     .industries-cta-wrapper {
        margin-top: 12px;
    }
    
    .industries-cta-wrapper .expert-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    
    /* Services */
    .service-image-wrapper {
        height: 280px;
    }

    .what-we-offer-header h2 {
        font-size: 24px;
    }

    .service-overlay {
        padding: 20px;
    }

    .service-icon {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
    }

    /* Partner Section */
    .partner-image-wrapper {
        height: 350px;
    }

    .partner-badge {
        padding: 30px 35px;
    }

    .badge-number {
        font-size: 52px;
    }

    .badge-divider {
        width: 40px;
    }

    .badge-text {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .badge-subtext {
        font-size: 12px;
    }

    .why-partner-text-side h2 {
        font-size: 24px;
    }

    .benefit-item {
        gap: 20px;
    }

    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .benefit-content h3 {
        font-size: 18px;
    }

    .benefit-content p {
        font-size: 14px;
    }

    .client-ratings-section {
        padding: 50px 0 !important;
    }

    .client-ratings-section .content-container {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .client-ratings-section h2 {
        font-size: 24px !important;
        margin-bottom: 16px !important;
    }

    .star-rating {
        margin-bottom: 30px !important;
        gap: 4px;
    }

    .star-rating svg {
        width: 24px;
        height: 24px;
    }

    .ratings-grid {
        gap: 12px 4px !important;
        padding: 0 3px !important;
    }

    .rating-circle {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 10px !important;
    }

    .rating-circle svg {
        width: 80px !important;
        height: 80px !important;
    }

    .rating-circle-bg,
    .rating-circle-fill,
    .rating-circle-dark {
        stroke-width: 12 !important;
    }

    .rating-text {
        transform: translate(-50%, -50%) scale(0.55) !important;
    }

    .rating-score {
        font-size: 28px !important;
    }

    .rating-total {
        font-size: 14px !important;
    }

    .rating-label {
        font-size: 9px !important;
        line-height: 1.15 !important;
        padding: 0 1px !important;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        gap: 16px;
        padding: 0 10px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-copyright {
        font-size: 13px;
        padding: 0 10px;
        line-height: 1.4;
    }

    .footer-search {
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 10px 12px;
        font-size: 13px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 10px 18px;
        font-size: 16px;
        min-width: 52px;
    }

}

/* ========== EXTRA SMALL MOBILE (375px) ========== */
@media (max-width: 375px) {
    .hero-section {
        padding-top: 160px !important;
        padding-bottom: 70px !important;
    }

    .hero-content h1 {
        font-size: 22px !important;
    }

    .hero-content p {
        font-size: 14px !important;
    }

    .hero-buttons {
        gap: 6px;
    }

    .hero-btn {
        padding: 10px 6px !important;
        font-size: 10.5px !important;
        line-height: 1.2 !important;
    }
    .client-ratings-section .content-container {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .client-ratings-section h2 {
        font-size: 22px !important;
    }

    .ratings-grid {
        gap: 10px 3px !important;
        padding: 0 2px !important;
    }

    .rating-circle {
        width: 75px !important;
        height: 75px !important;
        margin-bottom: 8px !important;
    }

    .rating-circle svg {
        width: 75px !important;
        height: 75px !important;
    }

    .rating-text {
        transform: translate(-50%, -50%) scale(0.5) !important;
    }

    .rating-score {
        font-size: 26px !important;
    }

    .rating-label {
        font-size: 8.5px !important;
        line-height: 1.1 !important;
    }

    /* Footer */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        gap: 14px;
        padding: 0 8px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 0 5px;
        line-height: 1.4;
    }

    .footer-search {
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 10px 10px;
        font-size: 12px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 10px 16px;
        font-size: 15px;
        min-width: 48px;
    }
}
/* ========== VERY SMALL SCREENS (360px and below) ========== */
@media (max-width: 360px) {
    .footer-bottom-content {
        padding: 0 5px;
    }

    .footer-search input {
        padding: 9px 8px;
        font-size: 11px;
    }

    .footer-search button {
        padding: 9px 14px;
        font-size: 14px;
        min-width: 46px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-logo img {
        height: 42px;
    }
}

/* Landscape Orientation */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .industry-tabs-section {
        margin-top: 15px;
    }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .hero-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .industry-tab {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .menu-toggle,
    .close-menu {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent Horizontal Scroll */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

.hero-section,
.industry-tabs-section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Very Small Screens */
@media (max-width: 375px) {
    .logo-container img {
        height: 70px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 9px 20px;
        font-size: 12px;
    }

    .industry-tab {
        font-size: 13px;
        padding: 10px;
    }
}
    