/*
Theme Name:   Gitakshmi Group Theme
Theme URI:    https://gitakshmi.com
Description:  Standalone Premium Theme for Gitakshmi Group. Features Dark Mode aesthetic, GSAP animations, and Core Web Vitals optimization.
Author:       Senior WP Developer
Author URI:   https://gitakshmi.com
Version:      1.0.0
Text Domain:  gitakshmi-child
*/

/* Variables */
:root {
    --font-family-base: "Poppins", sans-serif;
    --color-primary: #092EA0;
    --color-accent: #2E8EFF;
    --color-secondary: #F5F7FA;
    --color-text-dark: #1A1A1A;
    --color-text-light: #FFFFFF;
    --color-border: rgba(9, 46, 160, 0.12);
    --color-shadow: 0 4px 12px rgba(9, 46, 160, 0.08);
    /* Updated for soft shadow */
    --color-shadow-hover: 0 8px 24px rgba(9, 46, 160, 0.16);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --header-height: 3.75rem;
    --primary-blue: var(--color-primary);
    /* keeping legacy support */
    --primary-purple: var(--color-accent);
    /* keeping legacy support */
    --transition-base: all 0.3s ease;

    /* Typography Unification */
    --font-weight-bold: 600;
    --font-weight-title: 500;
    --font-weight-text: 400;
}

/* HALFTONE GRID SYSTEM */
#halftone-grid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.6;
}

.halftone-dot {
    width: 3px;
    height: 3px;
    background: rgba(9, 46, 160, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.halftone-dot.active {
    background: #2E8EFF !important;
    opacity: 0.8 !important;
    box-shadow: 0 0 8px rgba(9, 46, 160, 0.4);
}

.halftone-dot.active-alt {
    background: #092EA0 !important;
    box-shadow: 0 0 8px rgba(46, 142, 255, 0.4);
}


/* Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family-base);
    overflow-x: hidden;
    color: var(--color-text-dark);
    background: var(--color-secondary);
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Lenis Smooth Scroll Core Styles */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-base);
    color: var(--color-primary);
    font-weight: var(--font-weight-title);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-2);
}

h1,
h2 {
    font-weight: var(--font-weight-bold);
}

p,
.pargraph,
.paragraph,
.growth-subtext,
.card-desc,
.it-hero-p,
.trans-content p,
.it-capability-list li,
.empowr-description,
.fs-para,
.fs-base,
.text_reg,
.sub-description,
.description-text,
.designation,
.pillar-desc {
    font-weight: var(--font-weight-text);
}

/* Ensure bold text within paragraphs follows the title weight (600) for elegance, or stays 400 if requested */
p b,
p strong,
.pargraph b,
.pargraph strong,
.growth-subtext b,
.growth-subtext strong,
.card-desc b,
.card-desc strong {
    font-weight: var(--font-weight-title);
}

/* Utility weight overrides for paragraphs */
p.weight500,
p.weight600,
p.weight700,
p.f_w_m {
    font-weight: var(--font-weight-text) !important;
}

.f_w_e_b {
    font-weight: var(--font-weight-bold) !important;
}

.f_w_m {
    font-weight: var(--font-weight-title) !important;
}

.color_black {
    color: #1A1A1A !important;
}

.color_white {
    color: #FFFFFF !important;
}

.text_uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section_heading h5 {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
}

.btn_gitakshmi_underline {
    font-weight: var(--font-weight-title);
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: var(--transition-base);
}

.btn_gitakshmi_underline:hover {
    opacity: 0.8;
}

.title,
.title-2,
.com-heading h2,
.card-title,
.growth-heading,
.industry-name,
.heading2,
.it-hero-h1,
.trans-content h3,
.tools_tab_link {
    font-weight: var(--font-weight-title);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Components */
button,
.btn,
.watch-btn,
.action-btn {
    font-family: var(--font-family-base);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
}

button:hover,
.btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.scard,
.card {
    border-radius: var(--radius-lg);
    box-shadow: var(--color-shadow);
    background-color: var(--color-text-light);
    transition: var(--transition-base);
    padding: var(--space-3);
    border: 1px solid var(--color-border);
}

.scard:hover,
.card:hover {
    box-shadow: var(--color-shadow-hover);
    transform: translateY(-2px);
}

input,
select,
textarea {
    font-family: var(--font-family-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-1) var(--space-2);
    transition: var(--transition-base);
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.1);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    :root {
        --space-5: 2.5rem;
        --space-6: 3rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --space-5: 2rem;
        --space-6: 2.5rem;
    }

    html {
        font-size: 95%;
        /* Adjust zoom for mobile */
    }
}

.panel.section,
.banner,
.banner-slider {
    min-height: calc(100vh - var(--header-height));
    height: auto;
    width: 100%;
}

/* CORE UTILITIES */
.dp-flex {
    display: flex;
}

.fdc {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-space-between {
    justify-content: space-between;
}

.gap48 {
    gap: 3rem;
}

.gap36 {
    gap: 2.25rem;
}

.gap24 {
    gap: 1.5rem;
}

.gap12 {
    gap: 0.75rem;
}

.br-24 {
    border-radius: 1.5rem;
}

.mb60 {
    margin-bottom: 3.75rem;
}

.mb24 {
    margin-bottom: 1.5rem;
}

.mb0 {
    margin-bottom: 0;
}

.wht-text {
    color: var(--color-text-light) !important;
}

.blk-text {
    color: var(--color-text-dark);
}

.weight800 {
    font-weight: var(--font-weight-title);
}

.weight700 {
    font-weight: var(--font-weight-title);
}

.weight600 {
    font-weight: var(--font-weight-title);
}

.weight500 {
    font-weight: var(--font-weight-title);
}

.weight400 {
    font-weight: var(--font-weight-text);
}

.opacity-70 {
    opacity: 0.7;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}



body.home header:not(.scrolled) {
    background: transparent;
    box-shadow: none;
}

header.scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

body.menu-open header {
    background: #ffffff !important;
    box-shadow: none !important;
}

/* Transparent Header Content Colors */
body.home:not(.menu-open) header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

body.home:not(.menu-open) header:not(.scrolled) nav.main-nav ul li a,
body.home:not(.menu-open) header:not(.scrolled) .action-btn {
    color: #ffffff;
}

body.home:not(.menu-open) header:not(.scrolled) .action-btn svg,
body.home:not(.menu-open) header:not(.scrolled) nav.main-nav ul li a svg {
    stroke: #ffffff;
}

body.home:not(.menu-open) header:not(.scrolled) .hamburger-menu span {
    background-color: #ffffff;
}


.logo {
    font-size: 24px;
    font-weight: var(--font-weight-title);
    letter-spacing: -0.5px;
    display: flex;
    flex-shrink: 0;
    min-width: 100px;
    height: var(--header-height);
    align-items: center;
}

.logo-img {
    height: 50px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo .ad {
    color: var(--primary-blue);
}

.logo .ani {
    color: var(--primary-purple);
}

nav.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: var(--header-height);
    margin-right: 40px;
}

nav.main-nav>ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    height: 100%;
}

nav.main-nav>ul>li {
    height: 100%;
    display: flex;
    align-items: center;
}

nav.main-nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 12px;
    font-weight: var(--font-weight-title);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

nav.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav.main-nav ul li a:hover::after {
    width: 100%;
}

nav.main-nav ul li a:hover {
    color: var(--color-accent);
}

body.home header:not(.scrolled) nav.main-nav ul li a:hover {
    color: #ffffff;
    opacity: 0.85;
}

body.home header:not(.scrolled) nav.main-nav ul li a::after {
    background-color: #ffffff;
}

nav.main-nav ul li a svg {
    width: 8px;
    height: 8px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

nav.main-nav ul li a:hover svg {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-shrink: 0;
    height: var(--header-height);
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: var(--font-weight-title);
    color: #222;
    transition: color 0.3s ease, opacity 0.3s ease;
    padding: 6px;
}

.action-btn:hover {
    color: var(--color-accent);
}

body.home header:not(.scrolled) .action-btn:hover {
    color: #ffffff;
    opacity: 0.7;
}

.action-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background-color: #222;
    transition: all 0.3s ease;
}

/* TABLET/MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    header {
        padding: 0 20px;
    }

    .logo {
        min-width: 80px;
        font-size: 20px;
    }

    nav.main-nav ul {
        gap: 16px;
    }

    nav.main-nav ul li a {
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    .header-actions {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 16px;
        background: white !important;
        box-shadow: none;
        height: 60px;
    }

    body.home header {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%) !important;
        box-shadow: none;
    }

    header.scrolled,
    body.home header.scrolled {
        background: #ffffff !important;
    }

    .logo-img {
        height: 48px;
        max-width: 200px;
        /* Constrain width so it doesn't overflow */
        width: auto;
        object-fit: contain;
    }

    .logo {
        min-width: 70px;
        font-size: 18px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-overlay {
        position: fixed;
        z-index: 500;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .nav-overlay.overlay--active {
        opacity: 1;
        visibility: visible;
    }

    nav.main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        /* Full height to allow scrolling */
        display: block !important;
        padding-top: 10px;
        padding-bottom: 80px;
        /* Space at bottom to scroll past */
        background: #fff;
        box-shadow: 0 20px 50px 0 rgb(0 0 0 / 15%);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
        overscroll-behavior: contain;
        /* Better mouse scroll handling */
        transform: translateX(-100%);
        transition: transform 0.3s ease-out;
        z-index: 99999;
    }

    nav.main-nav.open {
        transform: translateX(0);
    }

    nav.main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    nav.main-nav>ul>li {
        position: relative;
        border-bottom: 1px solid #eee;
        width: 100%;
        height: auto;
    }

    nav.main-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 65px;
        padding: 1rem 2rem 1rem 1rem;
        font-weight: var(--font-weight-title);
        font-size: 14px;
        color: #000000 !important;
        /* Force black text */
        width: 100%;
    }

    /* Sub-menu (Dropdown) */
    .dropdown-menu {
        display: none;
        position: relative;
        z-index: 999;
        top: 0;
        padding: 10px 0;
        width: 100%;
        background-color: #f9f9f9;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu li {
        border-bottom-color: #ececec;
        width: 100%;
    }

    .dropdown-menu li a {
        padding: 0.5rem 1.5rem 0.5rem 2rem;
        font-weight: 400;
        height: auto;
    }

    /* Expand button SVG rotation */
    .expand-btn svg {
        transition: transform 0.25s;
    }

    .expand-btn.open svg {
        transform: rotate(180deg);
    }

    /* Hamburger Menu matching the example */
    .hamburger-menu {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 1.5rem;
        height: 1.5rem;
        cursor: pointer;
        z-index: 2;
        background: transparent;
        border: none;
        padding: 0;
    }

    .hamburger-menu span {
        position: absolute;
        width: 1.5rem;
        height: 0.1rem;
        background: #092EA0;
        transition: all 0.4s ease-in-out;
    }

    body.home:not(.menu-open) header:not(.scrolled) .hamburger-menu span {
        background: #fff;
    }

    .hamburger-menu span:nth-child(1) {
        transform: translateY(-0.5rem);
    }

    .hamburger-menu span:nth-child(2) {
        transform: translateY(0);
    }

    .hamburger-menu span:nth-child(3) {
        transform: translateY(0.5rem);
    }

    .hamburger-menu.open span:nth-child(2) {
        background: transparent !important;
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg);
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .header-actions {
        gap: 12px;
    }
}

/* HERO BANNER */
.panel.section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #111;
}

.banner,
.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

#customslider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#customslider>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s;
}

#customslider>div.active {
    opacity: 1;
    visibility: visible;
}

#customslider .slideWrap {
    width: 100%;
    height: 100%;
    position: relative;
}

#customslider .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
}

#customslider>div.active .img-box {
    transform: scale(1);
}

#customslider .slideWrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
}

#customslider .text-wraper {
    position: absolute;
    z-index: 2;
    bottom: 105px;
    left: 30px;
    color: #fff;
    text-align: left;
    max-width: 53%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
}

#customslider .text-wraper .title,
#customslider .text-wraper .pargraph,
#customslider .text-wraper .btns-wrap {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0s, opacity 0s;
}

#customslider>div.active .text-wraper .title {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s, opacity 1s linear 0.3s;
}

#customslider>div.active .text-wraper .pargraph {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s, opacity 1s linear 0.5s;
}

#customslider>div.active .text-wraper .btns-wrap {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s, opacity 1s linear 0.7s;
}

#customslider .title {
    font-size: 30px;
    font-weight: var(--font-weight-title);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

#customslider .title-2 {
    font-size: 20px;
}

#customslider .pargraph {
    width: 100%;
    margin-top: 24px;
    font-size: 1.1em;
    color: #fff;
    font-family: var(--font-family-base);
    font-weight: 400;
}

#customslider .btns-wrap {
    display: inline-grid;
    justify-content: flex-start;
    margin-top: 40px;
}

#customslider .watch-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: var(--font-weight-title);
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    transition: opacity 0.3s;
}

#customslider .watch-btn:hover {
    opacity: 0.7;
}

/* SWIPER THUMBNAIL CARDS */
.card-wrapper {
    position: absolute;
    bottom: 115px;
    z-index: 99;
    right: 5.56%;
    width: 40%;
    max-width: 770px;
    min-width: 400px;
    overflow: hidden;
    padding-left: 5px;
    transition: all 0.3s ease;
    -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
    mask-image: linear-gradient(to right, #000 85%, transparent 100%);
}

.swiper.HeroSlider {
    visibility: hidden;
    transition: opacity linear 0.3s;
    width: 100%;
    height: 100%;
}

.swiper.HeroSlider.swiper-initialized {
    visibility: visible;
}

.swiper.HeroSlider.sThumbHide {
    opacity: 0;
    pointer-events: none;
}

.swiper-slide {
    flex-shrink: 0;
}

.scard {
    width: 160px !important;
    height: 230px !important;
    cursor: pointer;
    position: relative;
    box-shadow: 2px 3px 4px #333;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
}

.scard .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.scard .text-wraper {
    display: none;
}

/* PAGINATION CONTROLS */
.custom-pagintion {
    position: absolute;
    right: 5.56%;
    bottom: 3%;
    z-index: 91;
    display: flex;
    align-items: center;
    gap: 20px;
}

.autoplay-progress {
    top: -10px;
    width: 280px;
    height: 2px;
    background: #fff;
    position: relative;
    order: 1;
}

.pbar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, #2e57aa 0%, #91288d 100%);
    width: 0%;
}

.swiper-button-next,
.swiper-button-prev {
    position: static !important;

    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    order: 2;
    color: #e1e1e1 !important;
}

.swiper-button-prev,
.swiper-button-next {}

.swiper-button-next:after,
.swiper-button-prev:after {

    font-size: 10px !important;
    font-weight: bold;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */
@media (max-width: 1920px) {
    .card-wrapper {
        width: 40%;
        max-width: 770px;
        min-width: 400px;
        right: 5.56%;
        bottom: 115px;
    }

    .scard {
        width: 160px !important;
        height: 230px !important;
    }

    #customslider .text-wraper {
        max-width: 53%;
        bottom: 105px;
        left: 30px;
    }

    #customslider .title {
        font-size: 30px;
    }

    #customslider .title-2 {
        font-size: 20px;
    }

    #customslider .pargraph {
        font-size: 1.1em;
    }

    .custom-pagintion {
        right: 5.56%;
        bottom: 3%;
    }

    .autoplay-progress {
        width: 280px;
    }
}

@media (max-width: 1440px) {
    .card-wrapper {
        width: 42%;
        max-width: 650px;
        min-width: 350px;
        right: 20px;
    }

    .scard {
        width: 140px !important;
        height: 200px !important;
    }

    #customslider .text-wraper {
        max-width: 55%;
    }

    #customslider .title {
        font-size: 28px;
    }

    #customslider .title-2 {
        font-size: 18px;
    }

    .autoplay-progress {
        width: 240px;
    }
}

@media (max-width: 1024px) {
    .card-wrapper {
        width: 45%;
        max-width: 500px;
        min-width: 300px;
        right: 16px;
        bottom: 100px;
    }

    .scard {
        width: 110px !important;
        height: 160px !important;
    }

    #customslider .text-wraper {
        max-width: 50%;
        bottom: 90px;
        left: 20px;
    }

    #customslider .title {
        font-size: 24px;
    }

    #customslider .title-2 {
        font-size: 16px;
    }

    #customslider .pargraph {
        font-size: 0.95em;
        margin-top: 16px;
    }

    #customslider .watch-btn {
        font-size: 12px;
    }

    .custom-pagintion {
        right: 20px;
        bottom: 4%;
        gap: 16px;
    }

    .autoplay-progress {
        width: 200px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .card-wrapper {
        width: 50%;
        max-width: 320px;
        min-width: 250px;
        right: 12px;
        bottom: 80px;
    }

    .scard {
        width: 90px !important;
        height: 140px !important;
    }

    #customslider .text-wraper {
        max-width: 100%;
        bottom: 70px;
        left: 16px;
    }

    #customslider .title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    #customslider .title-2 {
        font-size: 14px;
    }

    #customslider .pargraph {
        font-size: 0.9em;
        margin-top: 12px;
    }

    #customslider .btns-wrap {
        margin-top: 24px;
    }

    #customslider .watch-btn {
        font-size: 11px;
    }

    .custom-pagintion {
        right: 12px;
        bottom: 3%;
        gap: 12px;
    }

    .autoplay-progress {
        width: 140px;
        height: 1px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 32px;
        height: 32px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 14px;
    }

    /* PREVENT HEADER CLIPPING ON TABLET */
    #customslider {}

    /* CENTER HERO CONTENT FOR TABLET */
    #customslider .text-wraper {
        bottom: 50% !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(50%) !important;
        text-align: center !important;
        justify-content: center !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    #customslider .btns-wrap {
        justify-content: center !important;
        width: 100% !important;
    }

    #customslider .pargraph {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #customslider .title {
        text-align: center !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {

    /* Hide slider thumbnails and pagination */
    .card-wrapper,
    .custom-pagintion,
    .autoplay-progress {
        display: none !important;
    }

    /* Force show only Layer 1 (Video) */
    #customslider>div {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    #customslider #layer1 {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
    }

    /* Statically reveal animation elements in Layer 1 */
    #customslider #layer1 .text-wraper .title,
    #customslider #layer1 .text-wraper .pargraph,
    #customslider #layer1 .text-wraper .btns-wrap {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    #customslider .text-wraper {
        position: absolute;
        top: 60% !important;
        margin-bottom: 20%;
        left: 5% !important;
        right: 5% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        width: 90% !important;
        max-width: 100% !important;
        padding: 30px 20px;
        z-index: 50;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(4px);
        border-radius: 20px;
    }

    #customslider .title,
    #customslider .title-2 {
        font-size: 24px !important;
        font-weight: var(--font-weight-title) !important;
        line-height: 1.2 !important;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
        color: #fff !important;
    }

    #customslider .title-2 br {
        display: none;
        /* Remove hardcoded breaks on mobile */
    }

    #customslider .pargraph {
        font-size: 14px !important;
        margin-top: 5px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        opacity: 1 !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    #customslider .btns-wrap {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #customslider .watch-btn {
        font-size: 13px;
        font-weight: var(--font-weight-title);
        padding: 12px 25px;
        background: #2E8EFF;
        border: none;
        border-radius: 50px;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
    }

    #customslider .slideWrap::after {
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}

/* ABOUT US EMPOWR SECTION */
.about-empowr-section {
    background-color: #ffffff;
    padding: 60px 30px;
    margin: 40px auto;
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 90, 156, 0.08);
    /* subtle blue shadow */
    border: 1px solid rgba(0, 90, 156, 0.1);
}

.empowr-container {
    text-align: center;
}

.empowr-text-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    flex-wrap: wrap;
    margin-bottom: 35px;
}



.empowr-word {
    display: flex;
    align-items: center;
    gap: 4px;
}

.empowr-letter {
    display: inline-block;
    font-size: 11vw;
    font-weight: var(--font-weight-title);
    font-family: var(--font-family-base);
    line-height: 1;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: cover;
    background-position: center;
    /* Using primary blue for the stroke to match the logo */
    -webkit-text-stroke: 2px var(--primary-blue, #005a9c);
    transition: transform 0.3s ease, filter 0.3s ease;
    text-transform: uppercase;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.empowr-letter:hover {
    transform: translateY(-5px) scale(1.03);
    -webkit-text-stroke: 2px var(--primary-purple, #8b2361);
    filter: drop-shadow(0 10px 15px rgba(139, 35, 97, 0.2));
}

@media (min-width: 1300px) {
    .empowr-letter {
        font-size: 150px;
    }
}

.empowr-description {
    color: #444444;
    /* Dark gray for readability */
    font-size: 19px;
    line-height: 1.7;
    font-weight: 400;
    font-family: var(--font-family-base);
    max-width: 900px;
    margin: 0 auto;
}

.empowr-description strong {
    color: var(--primary-blue);
    font-weight: var(--font-weight-title);
}

@media (max-width: 991px) {
    .about-empowr-section {
        margin: 40px 20px;
        padding: 60px 20px;
        border-radius: 12px;
    }

    .empowr-letter {
        font-size: 12vw;
    }

    .empowr-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .about-empowr-section {
        margin: 20px 15px;
        padding: 50px 15px;
        box-shadow: 0 5px 20px rgba(0, 90, 156, 0.05);
    }

    .empowr-text-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .empowr-word {
        gap: 3px;
    }

    .empowr-letter {
        font-size: 22vw;
        /* Larger font size since they stack now */
        -webkit-text-stroke: 1.5px var(--primary-blue, #005a9c);
    }

    .empowr-description {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .hide-mobile {
        display: none;
    }
}

/* =========================================================================
   NEW ABOUT US SECTION (CIRCULAR ANIMATION & PATTERN)
   ========================================================================= */

.about-us-section {
    padding: 60px 5%;
    background-color: #ffffff;
    font-family: var(--font-family-base);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* --- Left: Circular Visual --- */
.about-visual {
    width: 480px;
    height: 480px;
    position: relative;
    flex-shrink: 0;
}

/* Infinite Rotating Text */
.rotating-text-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
    pointer-events: none;
}

.rotating-text-svg text {
    font-size: 21px;
    font-weight: var(--font-weight-title);
    fill: #1b3b85;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes rotateText {
    100% {
        transform: rotate(360deg);
    }
}

/* Concentric Circles */
.visual-circle-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(27, 59, 133, 0.15);
    background: radial-gradient(circle, #ffffff 0%, #e2effe 100%);
    box-shadow: 0 10px 40px rgba(27, 59, 133, 0.08), inset 0 0 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

/* Particles Wrapper */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Inner White Circle (Counter) */
.visual-circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(27, 59, 133, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.experience-counter {
    color: #1b3b85;
    font-size: 64px;
    font-weight: var(--font-weight-title);
    line-height: 1;
    display: flex;
    align-items: center;
}

.experience-counter .count-num {
    display: inline-block;
}

.experience-text {
    font-size: 13px;
    color: #4a5568;
    margin-top: 5px;
    font-weight: var(--font-weight-title);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Right: Content --- */
.about-content {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f6ff;
    color: #3474d4;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: var(--font-weight-title);
}

/* Paragraphs */
.about-para {
    color: #556275;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.about-para.main-para {
    font-size: 18px;
}

/* Features List */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #3a475a;
    font-weight: var(--font-weight-title);
}

.check-circle {
    background-color: #2b6bdc;
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Button */
.btn-discover {
    display: inline-flex;
    align-items: center;
    background-color: #438dfe;
    color: #ffffff !important;
    border-radius: 40px;
    padding: 6px 6px 6px 20px;
    text-decoration: none;
    font-weight: var(--font-weight-title);
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(67, 141, 254, 0.3);
}

.btn-discover:hover {
    background-color: #2b6bdc;
    box-shadow: 0 10px 25px rgba(43, 107, 220, 0.4);
    transform: translateY(-2px);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3878dd;
    border-radius: 50%;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.btn-discover:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .about-content {
        align-items: center;
    }

    .about-para {
        text-align: center;
    }

    .about-features-list {
        align-items: center;
        text-align: left;
    }
}

/* =========================================================================
   ABOUT US PAGE STYLES (PREMIUM REVAMP)
   ========================================================================= */

.about-page {
    background: #050505;
    color: #fff;
    overflow-x: hidden;
}

.section-padding {
    padding: 60px 0;
}

.oddbg {
    background: #0a0a0a;
}

.evenbg {
    background: #050505;
}

/* ABOUT HERO */
.about-hero {
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, #001a33 0%, #050505 100%);
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 75px);
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 50px;
}

.scroll-dowm-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
}

.mouse-scroll {
    width: 25px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse-scroll::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 5px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* MISSION & VISION */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.mission-card {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 25px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.mission-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.7;
}

/* CORE VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.value-number {
    font-size: 48px;
    font-weight: var(--font-weight-title);
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    transition: color 0.3s ease;
}

.value-item:hover .value-number {
    color: var(--color-accent);
}

.value-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.value-info p {
    font-size: 15px;
    opacity: 0.6;
}

/* JOURNEY TIMELINE */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.timeline-item.left {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border: 4px solid #050505;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.5);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 25px rgba(227, 30, 36, 0.8);
}

.timeline-content {
    width: 42%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-content .year {
    display: inline-block;
    padding: 5px 15px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: var(--font-weight-title);
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    opacity: 0.6;
}

/* MOBILE RESPONSIVE FOR ABOUT PAGE */
@media (max-width: 991px) {

    .mission-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 40px;
    }

    .timeline-dot {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px;
    }

    .timeline-item.left .timeline-content {
        margin-left: 80px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

/* =========================================================================
   NEW BUSINESSES SECTION (VERTICALS & LISTED COMPANIES)
   ========================================================================= */

.panel.Com_businessHome {
    background-color: #f6f8fa;
    /* slight off-white/gray bg like in image */
    font-family: var(--font-family-base);
    padding-top: 60px;
    padding-bottom: 60px;
}

.business-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.business-section_home .heading-wrap {
    margin-bottom: 40px;
    padding: 0 10px;
    position: relative;
    z-index: 100;
}

.business-right-tab {
    position: relative;
    z-index: 105;
}

.business-right-tab ul li a {
    cursor: pointer !important;
}

.business-details-comp {
    display: flex;
    gap: 15px;
    height: 500px;
}

#listedcompanies.business-details-comp {
    height: auto;
    min-height: 500px;
}

/* --- Left Section (Thumbnails Grid) --- */
.business-left-sec {
    width: 38%;
    height: 100%;
}

.business-tab-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.businessThumb {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.businessThumb>a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.thumb-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #e1e1e1;
}

.thumb-image picture,
.thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

/* Base overlay for non-active thumbs */
.overlay-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.overlay-text {
    width: 100%;
    color: #ffffff;
    font-size: 13px;
    font-weight: var(--font-weight-title);
    line-height: 1.2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.arrow-right {
    display: none;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

/* ACTIVE & HOVER State Overlay */
.businessThumb>a.active .overlay-wrap,
.businessThumb>a:hover .overlay-wrap {
    height: 100%;
    background: linear-gradient(135deg, #0f7bb0 0%, #8b2361 100%);
    padding-bottom: 25px;
    /* extra padding to match alignment */
}


.businessThumb>a.active .thumb-image img,
.businessThumb>a:hover .thumb-image img {
    opacity: 0;
    /* hide background image */
}

.businessThumb>a.active .arrow-right,
.businessThumb>a:hover .arrow-right {
    display: block;
}

/* Active & Hover Line with Arrow (Direct to Consumer style) */
.businessThumb>a.active .overlay-text,
.businessThumb>a:hover .overlay-text {
    position: relative;
}

.businessThumb>a.active .overlay-text::after,
.businessThumb>a:hover .overlay-text::after {
    content: "→";
    position: absolute;
    right: 0;
    bottom: 0;
    color: white;
}

.businessThumb>a.active .overlay-text::before,
.businessThumb>a:hover .overlay-text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: #ffffff;
}

/* --- Right Section (Featured Hero Image) --- */
.business-right-wrap {
    width: 62%;
    height: 100%;
}

.business-right-sec {
    width: 100%;
    height: 100%;
    position: relative;
    display: none;
    /* Only show active */
}

.business-right-sec.active {
    display: block;
}

.business-detail-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.big-thumb-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.big-thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add a dark gradient at the bottom so hovering pills stand out nicely */
.big-thumb-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

/* Floating content at bottom of large image */
.business-details-links {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.business-details-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.business-details-links ul li {
    display: block;
    margin: 0;
}

.business-details-links ul li a {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: var(--font-weight-title);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Premium Hover Sweep Effect */
.business-details-links ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #0f7bb0, #8b2361);
    z-index: -1;
    transition: width 0.4s ease;
    border-radius: 30px;
}

.business-details-links ul li a:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.business-details-links ul li a:hover::before {
    width: 100%;
}

.elplore-more-cta {
    position: relative;
    padding-top: 15px;
}

.elplore-more-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
}

.elplore-more-cta a {
    color: #ffffff;
    font-size: 14px;
    font-weight: var(--font-weight-title);
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* --- Listed Companies Grid Section --- */
.listed-companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 1200px) {
    .listed-companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .listed-companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .listed-companies-grid {
        grid-template-columns: 1fr;
    }
}

.listed-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.listed-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listed-card:hover img {
    transform: scale(1.05);
}

.listed-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 12px 15px;
}

.listed-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: var(--font-weight-title);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Curved Portfolio Slider Section --- */
.curved-portfolio-section {
    background-color: #050505;
    padding: 100px 0 0 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 850px;
    /* Force minimum height for larger views */
    margin-bottom: -60px;
}

.portfolio-slider-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.portfolio-slider-collection {
    position: relative;
    width: 100%;
    /* Remove max-width to allow full bleed on higher resolutions / 75% zoom */
    height: 680px;
    cursor: grab;
    overflow: hidden;
}

.portfolio-slider-collection:active {
    cursor: grabbing;
}

.gsap-curved-list {
    position: relative;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.curved-item {
    position: absolute;
    /* Center it perfectly horizontal! */
    left: calc(50% - 190px);
    top: 10px;
    /* Drop it down slightly from the very top */
    width: 380px;
    height: 410px;

    /* 
       Magic math: We give the cards a transform-origin located incredibly far down.
       Since height is 480px, 300% is 1440px down!
       This exactly replicates the sweeping radius shown in Appinventiv's css.
    */
    transform-origin: 50% 375%;
    will-change: transform;
    pointer-events: none;
}

.curved-item a {
    pointer-events: auto;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    color: #000;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 900px) {
    .curved-item {
        width: 300px;
        left: calc(50% - 150px);
        height: 380px;
        transform-origin: center -500px !important;
    }

    .portfolio-slider-collection {
        height: 600px;
    }
}

@media screen and (max-width: 600px) {
    .curved-item {
        width: 260px;
        left: calc(50% - 130px);
        height: 320px;
        top: 20px;
        transform-origin: center -400px !important;
    }

    .portfolio-slider-collection {
        height: 500px;
    }

    .curved-portfolio-section {
        padding-top: 40px;
    }

    .portfolio-slider-nav {
        gap: 6px;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 10px 20px;
    }

    .portfolio-slider-nav-slider {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        flex: 1;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 5px 0;
        scroll-snap-type: x mandatory;
    }

    .portfolio-slider-nav-slider::-webkit-scrollbar {
        display: none;
    }

    .portfolio-slider-nav-slider .portfolio-nav-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: center;
        padding: 10px 20px !important;
        font-size: 13px !important;
        margin: 0 !important;
    }

    .portfolio-slider-arrow {
        flex-shrink: 0;
        width: 36px !important;
        height: 36px !important;
    }
}

@media (max-width: 480px) {

    /* FOOTER ADDRESS STACKING */
    .f-new-contact-center {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .f-new-contact-item {
        width: 100% !important;
        border: none !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .f-new-logo-tagline {
        text-align: center !important;
    }

    .f-new-brand-top {
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media screen and (max-width: 450px) {
    .curved-item {
        width: 280px;
        /* Slightly wider for better card content fit */
        left: calc(50% - 140px);
        height: 340px;
        transform-origin: 50% 320%;
        /* Tighter radius for smaller screen */
        top: 0;
    }

    .portfolio-slider-collection {
        height: 480px;
    }

    .portfolio-card {
        padding: 16px;
        /* Less padding to fit content better */
    }

    .portfolio-card .card-header {
        gap: 12px !important;
    }

    .portfolio-card .subtitle {
        font-size: 16px !important;
    }

    .portfolio-card p {
        font-size: 13px !important;
        margin-top: 10px !important;
    }
}

/* Custom DRAG Cursor Follower */
.drag-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: var(--font-weight-text);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-slider-collection:hover .drag-cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-slider-collection:active .drag-cursor {
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(255, 255, 255, 0.2);
}

/* --- Marquee Showcase Section --- */
.marquee-showcase-section {
    background-color: #111111;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-showcase-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-showcase-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-showcase-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Translates by half of track width plus half gap (since there are 2 identical halves) */
        transform: translateX(calc(-50% - 10px));
    }
}

.marquee-showcase-card {
    background-color: #1a1a1a;
    border-radius: 24px;
    width: 320px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid #333;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.marquee-showcase-card:hover {

    border-color: #555;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.marquee-showcase-header {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-number {
    color: #ffffff;
    font-size: 42px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: var(--font-weight-title);
    line-height: 1;
}

.card-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: var(--font-weight-title);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.card-desc {
    color: #a0aec0;
    font-size: 13px;
    font-weight: var(--font-weight-text);
    margin: 0;
    line-height: 1.4;
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-showcase-card:hover .card-image img {
    transform: scale(1.05);
}

/* Responsive Handling */
@media (max-width: 1024px) {
    .listed-companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-details-comp {
        flex-direction: column;
        height: auto;
    }

    .business-left-sec {
        width: 100%;
        height: auto;
    }

    .business-tab-home {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        height: auto;
    }

    .business-left-sec .businessThumb {
        height: 100px;
    }

    .business-right-wrap {
        width: 100%;
        height: auto;
        margin-top: 10px;
    }

    .business-right-wrap .businessThumb {
        height: 320px;
        /* Give content area more height on mobile */
    }

    .business-section_home .heading-wrap {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }

    .business-right-tab {
        width: 100%;
    }

    .business-right-tab ul {
        justify-content: center !important;
        gap: 15px !important;
    }

    .business-right-tab ul li a {
        font-size: 14px !important;
        padding-bottom: 5px !important;
    }
}

@media (max-width: 768px) {
    .listed-companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-tab-home {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 columns even on small mobile for compactness */
        grid-template-rows: auto;
    }

    .business-left-sec {
        height: auto;
    }

    .business-left-sec .businessThumb {
        height: 90px;
    }

    .business-right-wrap .businessThumb {
        height: 380px;
        /* Even more height for small mobile to fit all links */
    }

    .overlay-text {
        font-size: 11px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .overlay-text .arrow-right {
        align-self: flex-end;
        margin-top: -15px;
    }

    .business-details-links {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .business-details-links ul {
        gap: 8px;
        margin-bottom: 15px;
    }

    .business-details-links ul li a {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .listed-companies-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   ROADMAP CTA SECTION
   ========================================================================= */
.roadmap-cta-section {
    padding: 50px 0;
    background: #000;
}

.layout-container-lg {

    margin: 0 auto;
    padding-inline: var(--container-gutter, 20px);
    width: 100%;
}

.roadmap-cta-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.roadmap-cta-inner {
    position: relative;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.roadmap-cta-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.roadmap-cta-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    padding: 40px 60px;
    z-index: 3;
}

.fdc {
    display: flex;
    flex-direction: column;
}

.gap24 {
    gap: 24px;
}

.gap48 {
    gap: 24px;
}

.wht-text {
    color: #ffffff;
}

.weight400 {
    font-weight: 400;
}

.weight500 {
    font-weight: var(--font-weight-title);
}

.weight800 {
    font-weight: var(--font-weight-title);
}

.mb0 {
    margin-bottom: 0;
}

.title-h3 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.fs-base {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn-wrapper {
    display: flex;

}



.desktop-block {
    display: block;
}

.mobile-block {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .roadmap-cta-inner {
        min-height: 400px;
    }

    .roadmap-cta-content {
        padding: 40px;
        max-width: 550px;
    }

    .title-h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .roadmap-cta-section {
        padding: 40px 0;
    }

    .roadmap-cta-inner {
        min-height: auto;
        display: flex;
        flex-direction: column;
        border-radius: 16px;
    }

    .desktop-block {
        display: none;
    }

    .mobile-block {
        display: block;
    }

    .roadmap-cta-content {
        position: relative;
        padding: 60px 24px;
        text-align: left;
        max-width: 100%;
    }

    .roadmap-cta-img.mobile-block {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .roadmap-cta-object-wrapper {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 180px;
        z-index: 2;
        pointer-events: none;
    }

    .roadmap-cta-object {
        width: 100%;
        display: block;
    }

    .mobile-w100 {
        width: 100%;
    }

    .mobile-btn-center {
        justify-content: center;
    }

    .title-h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .fs-base {
        font-size: 16px;
    }

    .gap48 {
        gap: 32px;
    }
}

/* =========================================================================
   NEWS SECTION (LATEST AT VEDANTA)
   ========================================================================= */
.news_section {
    background-image: linear-gradient(135deg, #f8faff 0%, #eef2f7 100%);
    width: 100%;
    padding: 60px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #000;
}

@media screen and (max-width: 991px) {
    .news_section {
        padding: 60px 0;
    }
}

.container-news {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.f_w_j {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.f_r_a_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f_r_aj_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f_r_center {
    display: flex;
    align-items: center;
}

.news_inside {
    padding-bottom: 20px;
}

.news_inside .news_info {
    width: 48%;
}

@media screen and (max-width: 767px) {
    .news_inside .news_info {
        width: 100%;
        text-align: left !important;
    }

    .news_inside .news_info:last-child {
        margin-top: 15px;
    }
}

.news_inside .news_info:last-child {
    text-align: right;
}

.text_xxl {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.btn_grd {
    background: linear-gradient(90deg, #004d8c, #4caf50);
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: var(--font-weight-title);
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn_grd:hover {
    transform: translateY(-2px);
}

/* =========================================================================
   NEWS SECTION (LATEST AT VEDANTA) RAW STYLE INJECTION
   ========================================================================= */

.news_section {
    background-image: url(../../img/homepage/news-banner-img.webp);
    width: 100%;
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

@media screen and (max-width: 991px) {
    .news_section {
        padding: 60px 0;
    }
}

.news_section .news_inside .news_info {
    width: 48%;
}

@media screen and (max-width: 767px) {
    .news_section .news_inside .news_info {
        width: 100%;
    }

    .news_section .news_inside .news_info:last-child {
        padding-top: 20px;
    }

    .news_section .news_inside .news_info .btn_gitakshmi_default {
        margin: 10px 0 0;
    }
}

.news_section .news_inside .news_info:last-child {
    text-align: right;
}

@media screen and (max-width: 767px) {
    .news_section .news_inside .news_info:last-child {
        text-align: unset;
    }
}

.news_section .reports_releases_blogs_section {
    width: 100%;
    align-items: stretch !important;
}

.news_section .reports_releases_blogs_section .reports_inside_section {
    width: calc(50% - 10px);
    padding: 20px 20px 0 20px;
    background-color: #ffffffcc;
    -webkit-backdrop-filter: blur(13px) brightness(0.8);
    backdrop-filter: blur(13px) brightness(0.8);
    border-radius: 20px;
    height: auto;
    /* Removed 100% because stretch handles this naturally */
}

@media screen and (max-width: 767px) {
    .news_section .reports_releases_blogs_section .reports_inside_section {
        width: 100%;
        margin-bottom: 20px;
    }
}

.news_section .reports_releases_blogs_section .reports_inside_section .text_reg,
.news_section .reports_releases_blogs_section .reports_inside_section .wrapper_filter .filter .select_style,
.wrapper_filter .filter .news_section .reports_releases_blogs_section .reports_inside_section .select_style {
    color: #292727;
}

.news_section .reports_releases_blogs_section .releases_blogs_inside_section {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .news_section .reports_releases_blogs_section .releases_blogs_inside_section {
        width: 100%;
    }
}

.press_releases_section {
    background-color: #fff;
    padding: 20px 20px 35px 20px;
    border-radius: 20px;
}

.news_section .reports_releases_blogs_section .releases_blogs_inside_section .press_releases_section.news_blogs_section {
    background-color: rgba(42, 42, 42, 0.5);
    -webkit-backdrop-filter: blur(13px) brightness(0.7);
    backdrop-filter: blur(13px) brightness(0.7);
    margin: 20px 0 0;
}

@media screen and (max-width: 767px) {
    .news_section .reports_releases_blogs_section .releases_blogs_inside_section .press_releases_section.news_blogs_section {
        margin: 20px 0 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .news_section .reports_releases_blogs_section .releases_blogs_inside_section .press_releases_section.news_blogs_section {
        margin: 65px 0 0;
    }
}

.news_section .reports_releases_blogs_section .releases_blogs_inside_section .press_releases_section.news_blogs_section .text_xxs {
    color: #fff;
    opacity: .5;
}

.news_section .reports_releases_blogs_section .releases_blogs_inside_section .press_releases_section.news_blogs_section .slick-arrow {
    background-color: #000;
    border: 0;
}

.news_section .reports_releases_blogs_section .releases_blogs_inside_section .press_releases_section.news_blogs_section .slick-arrow::after {
    background-image: url(../../img/arrow-right-white.svg);
}

@media screen and (max-width: 767px) {
    .news_section .reports_releases_blogs_section .releases_blogs_inside_section .press_releases_section.news_blogs_section .slick-dots li button:before {
        color: #fff;
    }
}

.news_section .reports_releases_blogs_section .releases_blogs_inside_section .press_blog_radius {
    border-radius: 4px;
}

.news_section .text_xxs {
    color: #6d6e71;
    opacity: .5;
}

.news_section .btn_gitakshmi_underline {
    margin: 0;
    color: #0063a8 !important;
}

.news_section .btn_gitakshmi_underline:after {
    background-color: #0063a8 !important;
}

.news_section .blogs_press .btn_gitakshmi_underline {
    margin: 0;
    color: #fff !important;
}

.news_section .blogs_press .btn_gitakshmi_underline:after {
    background-color: #fff !important;
}

.news_section .reports_info .reports_inside {
    border-bottom: 1px solid #b5b6b77a;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.news_section .reports_info .reports_inside .donwload_btn {
    width: 90%;
}

.news_section .reports_info .reports_inside .donwload_btn:last-child {
    width: 10%;
}

.news_section .reports_info .reports_inside .donwload_btn img {
    margin-left: auto;
    display: block;
}

.news_section .reports_info .reports_inside .donwload_btn p {
    color: var(--color-text-dark);
    font-weight: var(--font-weight-text);
}

.news_section .press_blogs_swiper .press_blogs_info_inside {
    padding: 0 1px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.news_section .press_blogs_swiper .press_blogs_info_img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.news_section .press_blogs_swiper .press_blogs_info_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_section .press_blogs_swiper .press_blogs_info_text {
    width: calc(100% - 95px);
    padding-left: 5px;
}

@media screen and (max-width: 991px) {
    .news_section .press_blogs_swiper .press_blogs_info_text {
        width: calc(100% - 95px);
        padding-left: 10px;
    }
}

@media screen and (max-width: 767px) {
    .news_section .press_blogs_slider .press_blogs_info .text_xs {
        margin: 0;
    }
}

.news_section .press_blogs_slider .press_blogs_info .text_xxs {
    padding-left: 20px;
}

.news_section .press_blogs_slider .press_blogs_info .text_xxs:first-child {
    padding-left: 0;
}

.news_section .press_blogs_slider .slick-arrow {
    width: 30px;
    height: 30px;
    bottom: -32px;
    transition: .3s ease;
    background-color: #f0f9ff;
    border: 1px solid #0063a8;
    border-radius: 50%;
    top: auto;
    cursor: pointer;
    margin-right: 0;
    position: absolute;
}

.news_section .press_blogs_slider .slick-arrow.slick-prev {
    -webkit-transform: rotate(180deg) translateY(50%);
    -ms-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
    left: auto;
    right: 40px;
    z-index: 1;
}

@media(max-width: 767px) {
    .news_section .press_blogs_slider .slick-arrow.slick-prev {
        left: -60px;
        right: 0;
        margin: auto;
    }
}

.news_section .press_blogs_slider .slick-arrow.slick-next {
    right: 0;
}

@media(max-width: 767px) {
    .news_section .press_blogs_slider .slick-arrow.slick-next {
        right: -60px;
        left: 0;
        margin: auto;
    }
}

.news_section .press_blogs_slider .slick-arrow::before {
    display: none;
}

.news_section .press_blogs_slider .slick-arrow::after {
    content: "";
    position: absolute;
    background-image: url(../../img/arrow-right-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    left: 0;
    right: -3px;
    margin: auto;
    width: 9px;
    height: 15px;
}

@media(max-width: 767px) {
    .news_section .press_blogs_slider .slick-arrow {
        bottom: -35px;
    }
}

@media screen and (max-width: 767px) {
    .news_section .slick-dots {
        bottom: -45px;
    }

    .news_section .slick-dots li {
        width: 8px;
        height: 8px;
    }

    .news_section .slick-dots li button:before {
        font-size: 8px;
        color: #292727;
        opacity: .5;
    }

    .news_section .slick-dots li.slick-active button:before {
        font-size: 8px;
        opacity: 1;
    }
}

/* Base Flex Utilities added for original structure matching */
.f_r_a_center {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.f_w_j {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.f_w {
    display: flex;
    flex-wrap: wrap;
}

.f_r_aj_between {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.fdc {
    display: flex;
    flex-direction: column;
}

.gap20 {
    gap: 20px;
}

/* Swiper specific overrides */
.press_blogs_swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 10px;
}

.press_blogs_swiper .swiper-button-prev,
.press_blogs_swiper .swiper-button-next {
    position: static;
    margin-top: 0;
    width: auto;
    height: auto;
}

.press_blogs_swiper .swiper-button-prev::after,
.press_blogs_swiper .swiper-button-next::after {
    display: none;
    /* Hide default Swiper icons */
}

/* Ensure slides have zero height if not active maybe? No, Swiper handles it. */
.press_blogs_info_inside:hover .press_blogs_info_text h5 {
    color: #0063a8;
}

.news_blogs_section .press_blogs_info_inside:hover .press_blogs_info_text h5 {
    color: #4caf50;
}

/* Animations */
.fadeInUp {
    animation: fadeInUp 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================================
   FAQ SECTION STYLES (CUSTOM)
   ========================================================================= */
.faq-main {
    padding: 100px 0;
}

.faq-form-card {
    position: relative;
    padding: 48px;
    width: 40%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #031432;
    /* Appinventiv solid dark blue look */
    border-radius: 24px;
}

.faq-right {
    width: 55%;
}

.faq-inner-section {
    background: #ffffff;
    /* Pure white start for premium look */
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
}

.faq-num {
    width: 50px;
    padding: 6px 0
}

.faq-conent-right {
    width: calc(100% - 110px)
}

.accordion-item {
    border-bottom: 1px solid #eeeeee;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.faq-inner-section .accordion .accordion-item:last-child {
    border-bottom: none
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 24px
}

.accordion-header h3 {
    margin: 0
}

.accordion-content {
    overflow: hidden;
    margin: 24px 80px 0 0;
    display: none
}

.accordion-toggle {
    transition: transform .3s ease
}

.active .accordion-toggle {
    transform: rotate(180deg) translate(0, 8px)
}

.faq-inner-section .accordion-item:first-child {
    padding-top: 0
}

.faq-inner-section .accordion-item:last-child {
    padding-bottom: 0
}

.faq-accordion-scroll {
    height: 672px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-right: 4px
}

.faq-accordion-scroll::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px
}

.faq-accordion-scroll::-webkit-scrollbar-thumb {
    background-color: #9f9f9f;
    border-radius: 8px
}

.accordion-content p,
.faq-inner-section .accordion-content ul,
.faq-inner-section .accordion-content ol {
    margin: 0 0 15px
}

.accordion-item .common-list-blk {
    margin-bottom: 12px
}

.accordion-item .common-list-blk li {
    margin-bottom: 8px
}

.faq-inner-section .accordion-content li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: .5rem
}

.faq-inner-section .accordion-content li:last-child {
    margin-bottom: 0
}

.faq-inner-section .accordion-content ul li:before {
    content: "•";
    font-size: var(--fs-para);
    color: #000;
    left: 0;
    top: -3px;
    position: absolute
}

.faq-form-main .contact-form-section {
    padding: 36px;
    width: 100%
}

.faq-form-main .form-title-main {
    padding-right: 50px
}

.faq-form-main .contact-form-flex {
    position: relative
}

.faq-form-main .init-card-close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 2
}

.faq-form-main .error-msg {
    position: relative;
    margin-top: 6px;
    color: #ff4246;
    font-size: 12px;
    font-weight: var(--font-weight-title);
    display: none
}

.faq-form-main .blk-text {
    color: #000;
}

.faq-form-main .floating-input-text {
    border: none;
    padding-bottom: 6px;
    caret-color: #fff;
    border-bottom: 1px solid #516c9c;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: var(--font-weight-title);
    line-height: 1.4;
    width: 100%;
    position: relative;
    outline: none;
}

.faq-form-main .floating-input-text::placeholder {
    color: #8395b6;
    opacity: 1;
    font-weight: var(--font-weight-text);
}

.faq-form-main .floating-input-label {
    position: relative;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 12px;
    font-weight: var(--font-weight-title);
    line-height: 1.6;
    display: block;
    margin-bottom: 6px;
    pointer-events: none;
    transition: none
}

.faq-form-main .form-select .selectric-hide-select {
    display: none;
}

.faq-form-main .auto-grow-textarea {
    color: #fff;
    width: 100%;
    height: 36px;
    max-height: 90px;
    resize: vertical;
    overflow-y: auto;
    border: none;
    padding-bottom: 6px;
    font-size: 16px;
    line-height: 1.4;
    border-bottom: 1px solid #8395b6;
}

.faq-form-main .contact-form-footer {
    margin-top: 48px
}

.faq-form-main .fast-response-nda-wrap {
    border-radius: 8px;
    background: #fefbdc;
    padding: 8px;
    margin-top: 24px;
}

.faq-form-main .form-captcha-text {
    color: #fff
}

.faq-form-main .form-captcha-box {
    background: #276be8;
    border: 1px solid #fff;
    padding: 10px 16px;
    border-radius: 8px;
    max-width: 59px;
    height: 46px;
    text-align: center;
    line-height: 1.4;
    color: #fff;
}

.faq-form-main .contact-form-submit {
    min-width: 240px;
    max-width: 100%;
    justify-content: center
}

.form-fields-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 36px;
    width: 100%
}

.form-field-wrap {
    position: relative;
    flex: 1 1 calc(50% - 36px)
}

.form-field-wrap.form-lg-column {
    flex: 1 1 calc(100% - 36px)
}

@media (max-width: 1680px) {
    .faq-form-card {
        padding: 32px;
    }

    .accordion-item {
        padding: 22px 18px 20px 42px;
    }

    .faq-accordion-scroll {
        height: 536px;
    }
}

@media (max-width: 1366px) {
    .faq-accordion-scroll {
        height: 480px;
    }
}

@media (max-width: 991px) {
    .faq-main .flex-dir-col {
        flex-direction: column;
    }

    .faq-right {
        width: 100%;
    }

    .faq-form-card {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .faq-form-card {
        padding: 1.5rem 1rem;
        width: 100%;
        order: 2;
    }

    .faq-right {
        width: 100%;
    }

    .faq-inner-section {
        background: #000;
        color: #fff;
    }

    .faq-inner-section .accordion-header h3,
    .faq-inner-section .fs-base {
        color: #fff;
    }

    .accordion-item {
        border-top: 1px solid #dfdedc;
    }

    .accordion-toggle path {
        fill: #fff;
    }
}

/* =========================================================================
   CEO GROWTH SECTION (STRICT ADANI STYLE)
   ========================================================================= */

#section-growth {
    padding: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.growth-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.growth-section.sectionheight {
    /* Height logic from SCSS */
}

.growth_wrapper {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    /* Essential to keep them side by side on desktop */
    align-items: center;
    /* Adani sets this to center so text is vertically centered against the tall image */
}

.growth-left-sec {
    flex: 0 0 42.1%;
    max-width: 42.1%;
    position: relative;
    overflow: hidden;
}

.growth-left-sec .leftimage {
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
}

.growth-left-sec .leftimage img {
    width: 100%;
    height: 101vh;
    /* Strictly requested Adani proportion */
    object-fit: cover;
    transition: 1s ease;
    display: block;
}

.growth-left-sec:hover .leftimage img {
    transform: scale(1.05);
}

.growth-right-sec {
    flex: 0 0 57.9%;
    max-width: 57.9%;
    padding: 0 9.8% 0px 8.4%;
    /* Revert padding, relying on flex center */
    background: #fff;
    display: flex;
    align-items: center;
    /* Centers its child */
}

@media screen and (max-width: 900px) {
    .growth_wrapper {
        flex-direction: column;
    }

    .growth-left-sec,
    .growth-right-sec {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .growth-right-sec {
        padding: 60px 24px;
        text-align: center;
        justify-content: center;
    }

    .growth-left-sec .leftimage img {
        height: auto;
        min-height: 400px;
    }
}

.textWrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.growth-heading {
    width: 100%;
    color: #333;
    font-size: 3.4rem;
    font-weight: var(--font-weight-title);
    line-height: 100%;
    display: inline-block;
    position: relative;
}

.growth-subtext {
    padding: 20px;
    width: 100%;
    line-height: 1.5;
    font-size: 1.3rem;
    /* Adani-style size */
    color: #333;

    /* Increased for that airy Adani feel */
    margin-top: 20px;
    position: relative;
    font-family: var(--font-family-base);
}



.growth-subtext blockquote {
    font-size: 0;
    font-style: normal;
    border: none !important;
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.growth-subtext blockquote div {

    font-size: 1.8rem;
    display: inline-block;
    position: relative;
}

/* Add space between words */
.growth-subtext blockquote>div,
.growth-subtext blockquote>b>div {
    margin-right: 0.35em;
}

.growth-subtext blockquote:before {
    content: '"';
    left: -25px;
    top: -5px;
    display: inline-block;
    color: #333;
    font-size: 1.5em;
    position: absolute;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-title);
}

.growth-subtext blockquote:after {
    content: '"';
    bottom: -15px;
    margin-left: 5px;
    display: inline-block;
    color: #333;
    font-size: 1.5em;
    position: absolute;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-title);
}

/* Arrow SVG container */
.arrow-icons {
    width: 100%;
    display: block;
    position: relative;
    bottom: 50px;
    z-index: 2;
}

.arrow-icons img {
    width: 100%;
    display: block;
}

/* Info Overlap Wrap */
.info-wrap {
    width: 100%;
    display: block;
    position: relative;
    margin-top: -75px;
    /* SCSS overlap logic */
}

.info {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.info .name {
    color: #333;
    font-size: 1.2rem;
    font-weight: var(--font-weight-title);
    padding-bottom: 6px;
    margin: 0;
}

.info .designation {
    color: #333;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

.btn-animation {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.gradient-button {
    display: inline-block;
    padding: 12px 18px;
    border: 1px solid #333;
    border-radius: 6px;
    /* Adani style is more square-ish/rounded but not full pill */
    color: #333;
    text-decoration: none;
    font-weight: var(--font-weight-title);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: transparent;
}

.gradient-button:hover {
    background: #333;
    color: #fff;
    border-color: #1a202c;
    transform: translateY(-3px);
}

/* Responsive Overrides matching SCSS */
@media (max-width: 1024px) {
    .growth-left-sec .leftimage img {
        height: 50vh;
    }

    .growth-right-sec {
        padding: 40px 5%;
    }

    .growth-heading {
        font-size: 3.4rem;
    }

    .growth-subtext {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {

    .growth-left-sec,
    .growth-right-sec {
        width: 100%;
    }

    .growth-left-sec .leftimage img {
        height: auto;
    }

    .growth-right-sec {
        padding: 40px 20px;
    }

    .arrow-icons {
        bottom: 30px;
    }

    .info-wrap {
        margin-top: 0;
        bottom: 0px;
    }
}

@media (max-width: 480px) {
    .growth-heading {
        font-size: 2.4rem;
    }

    .growth-subtext {
        padding-right: 10px;
    }
}

/* Entrance Animations */
#section-growth.active .leftimage {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================================
   FOOTER NEW STYLES
   ========================================================================= */
.footer-new {
    background: #000000;
    color: #ffffff;
    font-family: var(--font-family-base);
    padding-top: 20px;
}

.footer-new-section {
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.footer-new-top-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-new-brand {
    max-width: 500px;
}

.footer-new-logo img {
    filter: brightness(0) invert(1);
    height: 50px;
    margin-bottom: 24px;
}

.footer-new-social {
    margin-top: 32px;
}

.footer-new-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-new-social-link {
    background: #1a1a1a;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-new-social-link:hover {
    background: #333;
}

.footer-new-social-link span {
    margin-left: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: var(--font-weight-title);
}

.footer-new-ratings {
    display: flex;
    align-items: center;
}

.footer-new-deloitte img,
.footer-new-google-rating img {
    height: 40px;
    margin-left: 20px;
}

/* Locations */
.footer-new-locations-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.footer-new-location-card {
    background: #0a0a0a;
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
}

.footer-new-location-flag img {
    width: 24px;
    height: auto;
    margin-bottom: 15px;
}

.footer-new-location-card .wht-text.fs-base.weight600 {
    font-size: 13px !important;
    margin-bottom: 8px;
    display: block;
}

.footer-new-location-card p {
    font-size: 11px !important;
    line-height: 1.5;
    word-break: break-word;
}

/* Navigation */
.footer-new-nav-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-new-nav-column {
    flex: 1;
    min-width: 180px;
}

.footer-new-nav-title {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: var(--font-weight-title);
}

.footer-new-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-new-nav-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-new-nav-links a:hover {
    color: #fff;
}

/* Bottom Copyright */
.footer-new-bottom {
    background: #000;

    border-top: 1px solid #111;
}

.footer-new-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-new-copyright {
    color: #666;
    font-size: 14px;
}

.footer-new-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-new-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer-new-bottom-links a:hover {
    color: #fff;
}

/* Utilities */
.footer-new-dp-flex {
    display: flex;
}

.footer-new-flex-center {
    align-items: center;
}

.footer-new-fdc {
    flex-direction: column;
}

.footer-new-justify-end {
    justify-content: flex-end;
}

.footer-new-justify-space-between {
    justify-content: space-between;
}

@media (max-width: 991px) {
    .footer-new-top-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-new-ratings {
        justify-content: center;
        width: 100%;
    }

    .footer-new-nav-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-new-locations-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-new-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-new-nav-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-new-locations-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-new-brand {
        text-align: center;
    }

    .footer-new-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-new-locations-slider {
        grid-template-columns: 1fr;
    }
}


/* Business Units Grid */
.footer-new-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.footer-new-business-card {
    background: #0a0a0a;
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.footer-new-business-card:hover {
    border-color: #333;
    background: #111;
}

.footer-new-business-card img {
    height: 30px;
}

.footer-new-business-link {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.footer-new-business-link svg {
    margin-left: 10px;
}

.head-gap {
    margin-top: 20px;
}

/* =========================================================================
   PREMIUM UI OVERRIDES
   ========================================================================= */

/* Variables */
:root {
    --surface-1: #ffffff;
    --surface-2: #f8fafc;
    --surface-dark: #07213d;
    --text-muted: #4b5563;
    --shadow-soft: 0 0.75rem 2.5rem rgba(0, 51, 102, 0.08);
    --shadow-card: 0 0.875rem 2rem rgba(0, 51, 102, 0.1);
    --container-gutter: clamp(1rem, 2vw, 2rem);
}

/* Base */
html {
    font-size: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body,
button,
input,
select,
textarea,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-base) !important;
}

body,
.site,
#page {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

body,
p,
li,
input,
select,
textarea {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.growth-heading,
.text_xxl,
.footer-new-nav-title,
#customslider .title,
#customslider .title-2 {
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 2.4vw, 2.125rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h5 {
    font-size: clamp(1.125rem, 1.7vw, 1.375rem);
}

h6 {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
}

a {
    color: var(--color-primary);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.15em;
    transition: all 0.3s ease;
}

a:hover,
a:focus-visible {
    color: var(--color-accent);
    text-decoration: underline;
}

button,
.button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.btn,
.btn_grd,
.gradient-button,
#customslider .watch-btn {
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.btn:hover,
.btn_grd:hover,
.gradient-button:hover,
#customslider .watch-btn:hover {
    transform: translateY(-0.125rem) scale(1.02);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 0.125rem solid rgba(227, 30, 36, 0.35);
    outline-offset: 0.125rem;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

img,
video {
    height: auto;
}

.img-box img,
.press_blogs_info_img img,
.growth-left-sec .leftimage img,
.logo-img {
    object-fit: cover;
}

/* Components */
header {
    min-height: var(--header-height);
    padding-inline: var(--container-gutter);
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 51, 102, 0.06);
}

nav.main-nav ul li a,
.action-btn {
    color: var(--color-primary);
    letter-spacing: 0.04em;
}

.footer-new-nav-links a {
    color: var(--color-secondary) !important;
}

.action-btn:hover,
nav.main-nav ul li a:hover {
    color: var(--color-accent);
}

.panel.section {
    width: 100%;
    min-height: calc(100svh - var(--header-height));
}

#customslider .slideWrap::after {
    background: linear-gradient(90deg, rgba(0, 27, 54, 0.82) 0%, rgba(0, 51, 102, 0.45) 48%, rgba(0, 0, 0, 0.22) 100%);
}

#customslider .text-wraper {
    max-width: min(52rem, 55%);
    padding-right: var(--space-3);
}

#customslider .title,
#customslider .title-2,
#customslider .pargraph,
#customslider .watch-btn {
    color: var(--color-text-light);
}

#customslider .title {
    font-size: clamp(1.875rem, 3vw, 3.25rem);
    font-weight: var(--font-weight-title);
}

#customslider .title-2 {
    font-size: clamp(1.5rem, 2.6vw, 2.75rem);
    font-weight: var(--font-weight-title);
}

#customslider .pargraph {
    font-size: clamp(0.975rem, 1.2vw, 1.125rem);
    max-width: 42rem;
}

#customslider .watch-btn {
    border-bottom: none;
    background: var(--color-accent);
    padding: 0.875rem 1.25rem;
    text-transform: none;
    text-decoration: none;
    box-shadow: 0 0.75rem 1.5rem rgba(227, 30, 36, 0.24);
}

#customslider .watch-btn:hover {
    background: #b6151b;
    color: var(--color-text-light);
    text-decoration: none;
}

.scard,
.reports_inside_section,
.press_releases_section,
.faq-inner-section,
.faq-form-card,
.footer-new-location-card,
.footer-new-business-card,
.about-empowr-section {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.reports_inside_section,
.press_releases_section,
.faq-inner-section,
.about-empowr-section,
.footer-new-business-card,
.footer-new-location-card {
    border: 1px solid var(--color-border);
}

.btn_grd,
.gradient-button,
input[type="submit"],
input[type="button"],
.btn {
    background: var(--color-accent);
    color: var(--color-text-light);
    border: 1px solid var(--color-accent);
    text-decoration: none;
}

.btn_grd:hover,
.gradient-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
    background: #b6151b;
    border-color: #b6151b;
    color: var(--color-text-light);
}

.gradient-button {
    color: var(--color-primary);
    background: transparent;
    border-color: var(--color-primary);
}

.gradient-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn_gitakshmi_underline,
.footer-new-nav-links a,
.footer-new-bottom-links a {
    color: var(--color-primary);
}

.btn_gitakshmi_underline::after {
    background: currentColor;
}

.reports_inside,
.accordion-item,
.footer-new-section {
    border-color: rgba(0, 51, 102, 0.1);
}

.reports_inside p,
.empowr-description,
.growth-subtext,
.faq-inner-section,
.footer-new-location-card p,
.footer-new-copyright {
    color: var(--text-muted);
}

.faq-form-card,
.footer-new,
.press_releases_section.dark-card {
    background: var(--surface-dark);
}

.faq-form-main .floating-input-text,
.faq-form-main .auto-grow-textarea,
.faq-form-main .floating-input-label,
.faq-form-main .form-captcha-text,
.press_releases_section.dark-card,
.press_releases_section.dark-card h5,
.press_releases_section.dark-card h6,
.footer-new,
.footer-new-nav-title,
.footer-new-social-link span {
    color: var(--color-text-light);
}

.faq-form-main .floating-input-text,
.faq-form-main .auto-grow-textarea {
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.footer-new-social-link {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-new-social-link:hover,
.footer-new-business-card:hover,
.footer-new-location-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.logo-img {
    height: 3rem;
    max-height: 100%;
}

.news_section,
.reports_releases_blogs_section,
.about-container,
.growth_wrapper,
.footer-new-top-content,
.footer-new-nav-grid {
    gap: clamp(1rem, 0.1vw, 2.5rem);
}

.reports_inside_section,
.press_releases_section,
.footer-new-business-card {
    padding: clamp(1.25rem, 2vw, 1.875rem);
}

/* Responsive */
@media (max-width: 64rem) {
    header {
        padding-inline: 1rem;
    }

    #customslider .text-wraper {
        max-width: 58%;
        left: 1.25rem;
        bottom: 5.5rem;
    }

    .card-wrapper {
        min-width: 18rem;
        width: min(45%, 31rem);
        right: 1rem;
    }

    .growth-right-sec,
    .about-us-section,
    .about-empowr-section {
        padding-inline: clamp(1rem, 4vw, 2rem);
    }
}

@media (max-width: 48rem) {
    html {
        font-size: 95%;
    }

    header {
        min-height: 3.5rem;
    }

    nav.main-nav.mobile-active {
        top: 3.5rem;
    }

    nav.main-nav.mobile-active ul li a {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    #customslider .text-wraper {
        max-width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
        bottom: 6rem;
        padding-right: 0;
    }

    .custom-pagintion {
        right: 0.75rem;
    }

    .reports_inside,
    .press_blogs_info_inside,
    .footer-new-bottom-content {
        flex-wrap: wrap;
    }

    .faq-form-card,
    .faq-right,
    .growth-left-sec,
    .growth-right-sec,
    .reports_inside_section,
    .releases_blogs_inside_section {
        width: 100%;
    }

    .faq-accordion-scroll {
        height: auto;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 30rem) {
    html {
        font-size: 93.75%;
    }

    .panel.section {
        min-height: calc(100dvh - var(--header-height));
    }

    .card-wrapper {
        padding: 0.75rem;
    }

    .scard {
        width: 5.75rem !important;
        height: 8.75rem !important;
    }

    #customslider .text-wraper {
        bottom: 10.5rem;
    }

    .custom-pagintion {
        bottom: 9rem;
    }

    .footer-new-location-card,
    .footer-new-business-card,
    .reports_inside_section,
    .press_releases_section,
    .faq-inner-section,
    .faq-form-card {
        padding: 1rem;
    }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

.about-page {
    overflow-x: hidden;
}

.about-hero {
    position: relative;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 80vh !important;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 0 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: var(--font-weight-title);
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    /* Animated via GSAP */
    background: var(--color-accent);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.4);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--color-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--color-shadow-hover);
}

.timeline-content .year {
    font-size: 1.75rem;
    font-weight: var(--font-weight-title);
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--color-shadow-hover);
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-number {
    font-size: 3rem;
    font-weight: var(--font-weight-title);
    color: var(--color-accent);
    opacity: 0.1;
    line-height: 1;
}

.value-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-padding {
    padding: var(--space-6) 0;
}

.max-600 {
    max-width: 600px;
}

/* ==========================================================================
   PREMIUM WAVY PAGE HEADER
   ========================================================================== */

.inner-page-header-wavy {
    position: relative;
    width: 100%;
    height: 580px;
    background-color: #ffffff !important;
    /* Force White Section */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
    /* Resetting context */
}

.wavy-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 100px;
    /* Increased gap */
    position: relative;
    z-index: 10;
}

/* HERO LOGO VISUAL CORE */
.hero-logo-visual {
    position: relative;
    width: 450px;
    /* Reduced for better balance */
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.g-logo-svg-wrap {
    position: relative;
    z-index: 5;
    width: 420px;
    height: 420px;
    filter: drop-shadow(0 0 30px rgba(225, 26, 49, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-logo-svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.g-logo-svg-container svg {
    width: 100%;
    height: auto;
    max-width: 450px;
    /* Massive increase */
    /* Standardize size */
}

/* WIREFRAME PATH STYLING - Adjusted for White BG */
.g-logo-svg-container svg path {
    fill: transparent !important;
    stroke: url(#brandGradient) !important;
    /* Use Brand Colors for Stroke */
    stroke-width: 1px !important;
    transition: stroke 0.5s ease;
}

/* INTERNAL ENERGY FLOW ON WIREFRAME */
.g-logo-internal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
    z-index: 2;
    pointer-events: none;

    /* Using the SVG as a mask - now shimmer only shows on wireframe lines */
    -webkit-mask: url('assets/images/g.svg') no-repeat center;
    mask: url('assets/images/g.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;

    /* Liquid Brand-Energy Gradient (Red to Blue) - Brightened */
    background: linear-gradient(135deg,
            rgba(225, 26, 49, 0) 10%,
            rgba(225, 26, 49, 1) 40%,
            rgba(0, 75, 154, 1) 60%,
            rgba(0, 75, 154, 0) 90%);
    background-size: 300% 300%;
    mix-blend-mode: screen;
    animation: internalGlowFlow 4s infinite linear;
}

@keyframes internalGlowFlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.5;
    }

    50% {
        background-position: 100% 50%;
        opacity: 1;
    }

    100% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
}

/* NEBULA AURA BEHIND LOGO */
.logo-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    /* Increased from 280px */
    height: 450px;
    background: radial-gradient(circle, rgba(225, 26, 49, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: auraPulse 4s infinite ease-in-out;
}

.aura-2 {
    width: 450px;
    /* Increased from 350px */
    height: 450px;
    background: radial-gradient(circle, rgba(0, 75, 154, 0.15) 0%, transparent 70%);
    z-index: 0;
    animation: auraRotate 10s infinite linear;
}

@keyframes auraPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes auraRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 991px) {
    .wavy-header-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-logo-visual {
        width: 500px;
        height: 500px;
    }
}

#halftone-grid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    gap: 30px;

    box-sizing: border-box;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background-color: #ffffff !important;
}

.halftone-dot {
    width: 5px;
    /* Slightly larger base size */
    height: 5px;
    background-color: #e5e5e5;
    /* More visible grey */
    border-radius: 50%;
    opacity: 0.6;
    /* Higher base opacity */
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, opacity 0.3s ease;
    will-change: transform, background-color, opacity;
}

.halftone-dot.active {
    background-color: rgba(0, 75, 154, 0.3);
    /* Soft Brand Blue */
    z-index: 5;
    box-shadow: 0 0 10px rgba(0, 75, 154, 0.2);
}

.halftone-dot.active-alt {
    background-color: rgba(225, 26, 49, 0.3);
    /* Soft Brand Red */
    box-shadow: 0 0 10px rgba(225, 26, 49, 0.2);
}

#wavy-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wavy-header-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.wavy-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.wavy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: var(--font-weight-title);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wavy-breadcrumb a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wavy-breadcrumb a:hover {
    color: var(--color-text-light);
}

.wavy-breadcrumb .sep {
    color: var(--color-accent);
}

.wavy-breadcrumb .current {
    color: var(--color-accent);
}

.wavy-page-title {
    font-size: 70px;
    font-weight: var(--font-weight-title);
    background: linear-gradient(90deg, #E11A31, #004B9A, #E11A31, #004B9A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: textBrandFlow 5s linear infinite;
}

@keyframes textBrandFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@media (max-width: 1200px) {
    .wavy-page-title {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .inner-page-header-wavy {
        height: 400px;
    }

    .wavy-page-title {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .inner-page-header-wavy {
        height: 350px;
    }

    .wavy-page-title {
        font-size: 56px;
    }
}

@media (max-width: 576px) {
    .inner-page-header-wavy {
        padding-top: 90px !important;
        height: auto;
    }

    .wavy-page-title {
        font-size: 42px;
    }
}

/* ABOUT INTRO STATS SECTION */
#about-intro-stats {
    background-color: var(--color-secondary);
    padding: 100px 0;
    overflow: hidden;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.circular-media-wrap {
    position: relative;
    width: 480px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-label {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 35s linear infinite;
    z-index: 2;
}

.rotating-label svg {
    overflow: visible;
}

.rotating-label text {
    fill: var(--color-primary);
    font-size: 6.5px;
    font-weight: var(--font-weight-title);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-family-base);
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.particles-circle-container {
    position: relative;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #ffffff 0%, #edf2ff 100%);
    box-shadow: inset 0 0 20px rgba(43, 107, 220, 0.05), 0 20px 40px rgba(0, 51, 102, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c2d3f0;
    /* Thin light-blue outer edge */
}

#particles-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.inner-stats-circle {
    position: relative;
    z-index: 3;
    width: 180px;
    height: 180px;
    background: #ffffff;
    border: 1px solid #adc1e6;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.08);
}

.count-num {
    font-size: 72px;
    font-weight: var(--font-weight-title);
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -2px;
}

.inner-stats-circle p {
    font-size: 14px;
    font-weight: var(--font-weight-title);
    color: #4a5568;
    line-height: 1.3;
    margin-top: 5px;
}

/* Right Content Content Title */
.section-title {
    font-size: 44px;
    line-height: 1.25;
    color: var(--color-primary);
    font-weight: var(--font-weight-title);
    letter-spacing: -0.02em;
}

.description-text {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: var(--font-weight-text);
}

.sub-description {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: var(--font-weight-text);
}

.stats-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.stats-check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 19px;
    font-weight: var(--font-weight-title);
    color: #334155;
    margin-bottom: 18px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #2b6bdc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    flex-shrink: 0;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: #ebf4ff;
    color: #2b6bdc;
    border-radius: 50px;
    font-size: 14px;
    font-weight: var(--font-weight-title);
    box-shadow: 0 4px 12px rgba(43, 107, 220, 0.1);
    border: 1px solid rgba(43, 107, 220, 0.1);
}

.badge-icon {
    width: 18px;
    height: 18px;
    display: flex;
}

/* Discover Button adjustments */
.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #4B83F3;
    color: #fff !important;
    border-radius: 12px;
    font-weight: var(--font-weight-title);
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.discover-btn:hover {
    background: #3a71da;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.btn-arrow {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: transform 0.3s ease;
}

.discover-btn:hover .btn-arrow {
    transform: translateX(6px);
}

.discover-btn.wht-btn {
    background: #fff;
    color: #092ea0 !important;
}

.discover-btn.wht-btn:hover {
    background: #f0f4ff;
}

.discover-btn.wht-btn .btn-arrow {
    background: rgba(9, 46, 160, 0.1);
    color: #092ea0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .circular-media-wrap {
        width: 440px;
        height: 440px;
    }

    .inner-stats-circle {
        width: 160px;
        height: 160px;
    }

    .count-num {
        font-size: 60px;
    }

    .section-title {
        font-size: 38px;
    }

    .description-text,
    .sub-description,
    .stats-check-list li {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    #about-intro-stats {
        padding: 60px 0;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .circular-media-wrap {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 576px) {
    .circular-media-wrap {
        width: 280px;
        height: 280px;
    }

    .inner-stats-circle {
        width: 130px;
        height: 130px;
    }

    .count-num {
        font-size: 38px;
    }

    .inner-stats-circle p {
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .description-text,
    .sub-description,
    .stats-check-list li {
        font-size: 15px;
        line-height: 1.5;
    }

    .stats-check-list li {
        margin-bottom: 12px;
        gap: 10px;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        padding: 4px;
    }
}

/* ========================================================================== 
   GLOBAL RESPONSIVE UTILITIES 
   ========================================================================== */

.section-full {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.dark-bg {
    background-color: #050505 !important;
}

.pt80 {
    padding-top: 50px !important;
}

.pb80 {
    padding-bottom: 50px !important;
}

.container-fluid-git {
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
}

.home-cta-section-wrap {
    width: 95%;
    margin: 0 auto;
}

/* ========================================================================== 
   TECHNOLOGY STRATEGY CTA SECTION (GRID OPTIMIZED)
   ========================================================================== */

.home-cta-section {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background-color: #fff;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.1);
    width: 100%;
}

.home-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;

}

.home-cta-section .appi-cta-left {
    background-image: linear-gradient(to right, #03122d, #001b40, #002253, #002a67, #00327b, #013889, #053d98, #0b43a7, #0c48b3, #0d4dc0, #0f52cc, #1157d9);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.home-cta-section .appi-cta-right {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.home-cta-section .appi-cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fills the space without white gaps */
    display: block;
}

.appi-cta-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



/* Responsive CTA */
@media (max-width: 992px) {
    .home-cta-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-section .appi-cta-left {
        padding: 50px 30px;
    }

    .home-cta-section .appi-cta-right {
        height: 350px;
    }
}

.wht-text {
    color: #ffffff !important;
}

.weight600 {
    font-weight: var(--font-weight-title);
}

.weight500 {
    font-weight: var(--font-weight-title);
}

.fs-base {
    font-size: 17px;
}

.mb0 {
    margin-bottom: 0;
}

.gap16 {
    gap: 1rem;
}

.gap48 {
    gap: 3rem;
}

.block {
    display: block;
}

@media (min-width: 768px) {
    .flex-dir-row-md {
        flex-direction: row;
    }
}

@media (max-width: 820px) {

    .home-cta-section .appi-cta-left,
    .home-cta-section .appi-cta-right {
        width: 100%;
    }
}

/* ========================================================================== 
   INDUSTRIES WE SERVE SECTION (RE-ENGINEERED FOR ULTRA-WIDE)
   ========================================================================== */

/* ========================================================================== 
   INDUSTRIES WE SERVE SECTION (ENTERPRISE DESIGN)
   ========================================================================== */

.industries-section {
    background-color: #050505;
    padding: 100px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.industries-section .heading2 {
    font-size: 42px;
    font-weight: var(--font-weight-title);
    margin-bottom: 20px;
}

.industries-section .app__subhead {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    width: 100%;
}

.industry-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.industry-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e11a31;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industry-item:hover::after {
    transform: scaleX(1);
}

.industry-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-item:hover .industry-icon {
    background: #e11a31;
    transform: translateY(-8px);
    border-color: #e11a31;
    box-shadow: 0 10px 20px rgba(225, 26, 49, 0.3);
}

.industry-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon img {
    opacity: 1;
    transform: scale(1.1);
}

.industry-name {
    font-size: 17px;
    font-weight: var(--font-weight-title);
    opacity: 0.7;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    color: #fff !important;
}

.industry-item:hover .industry-name {
    opacity: 1;
    color: #2b6bdc !important;
}

/* Responsive Grid */
@media (max-width: 1400px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-item {
        padding: 40px 15px;
    }

    .industries-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================== 
   ULTRA-PREMIUM IT SERVICES (RE-ENGINEERED)
   ========================================================================== */
.it-experience-page {
    background: #ffffff;
    overflow-x: hidden;
}

.it-premium-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8faff 0%, #fff 50%, #fff6f8 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.container-git {
    width: 90%;

    margin: 0 auto;
    position: relative;
}

.it-hero-text-block {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 20;
}

.it-hero-h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: var(--font-weight-title);
    color: #000000;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.it-hero-p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 780px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: var(--font-weight-text);
}

.it-main-btn {
    display: inline-block;
    padding: 20px 48px;
    background: #2b6bdc;
    color: #ffffff !important;
    border-radius: 12px;
    font-weight: var(--font-weight-title);
    font-size: 1.1rem;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(43, 107, 220, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.it-main-btn:hover {
    transform: translateY(-5px) scale(1.02);
    background: #1e52b3;
    box-shadow: 0 18px 45px rgba(43, 107, 220, 0.35);
}

.it-hero-visual {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.it-main-image-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 60px 100px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    transform: translateZ(0);
    /* Hardware acceleration */
}

.it-main-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floating-brand-bubble {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: #2b6bdc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(43, 107, 220, 0.4);
    animation: bubbleFloat 4s infinite ease-in-out;
}

/* IT SERVICES GRID */
.it-services-grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.it-glass-card {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 30px;
    border: 1px solid #f0f1f5;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.it-glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 51, 102, 0.08);
    border-color: #2b6bdc;
}

.it-card-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.it-card-icon-wrap img {
    width: 100%;
    height: auto;
    filter: brightness(0.1);
}

.it-glass-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-title);
    color: #111;
    margin-bottom: 25px;
}

.it-capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.it-capability-list li {
    font-size: 1rem;
    color: #555;
    padding: 12px 0 12px 28px;
    position: relative;
    border-bottom: 1px solid #f7f8fc;
    font-weight: var(--font-weight-title);
}

.it-capability-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #2b6bdc;
    border-radius: 50%;
}

.purple-accent {
    border-top: 6px solid #8b2361;
}

.blue-accent {
    border-top: 6px solid #2b6bdc;
}

.pink-accent {
    border-top: 6px solid #2b6bdc;
}

/* BOTTOM CTA */
.it-bottom-cta {
    padding: 60px 0;
    background: #000;
}

.cta-inner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text-side h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-title);
    margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .it-services-grid-wrap {
        grid-template-columns: 1fr;
    }

    .cta-inner-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .it-glass-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .it-hero-h1 {
        font-size: 3rem;
    }

    .it-main-image-card {
        border-radius: 20px;
    }

    .it-premium-hero {
        padding-top: 100px;
    }
}

/* ========================================================================== 
   DROPDOWN MENU STYLES (RE-ADDED)
   ========================================================================== */
nav.main-nav ul li.has-dropdown {
    position: relative;
    padding-right: 10px;
}

ul.dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    min-width: 250px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 15px 0 !important;
    z-index: 9999 !important;
    border: 1px solid #eee !important;
    margin: 0 !important;
    list-style: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

nav.main-nav ul li.has-dropdown:hover ul.dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

ul.dropdown-menu li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

ul.dropdown-menu li a {
    display: block !important;
    padding: 12px 25px !important;
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.2s ease !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    text-align: left !important;
}

ul.dropdown-menu li a:after {
    display: none !important;
}

ul.dropdown-menu li a:hover {
    background: #f8faff !important;
    color: #2b6bdc !important;
    padding-left: 30px !important;
}

/* MOBILE DROPDOWN */
@media (max-width: 768px) {
    nav.main-nav.mobile-active ul li.has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        border: none;
        display: none;
        background: transparent !important;
    }

    nav.main-nav.mobile-active ul li.has-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* ========================================================================== 
   LATEST AT GITAKSHMI SLIDER CONTROLS
   ========================================================================== */
.slider-controls-simple {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 15px !important;
    justify-content: flex-start !important;
    position: relative !important;
    z-index: 10 !important;
    clear: both !important;
}

.slider-controls-simple .swiper-button-prev,
.slider-controls-simple .swiper-button-next {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 1px solid #0063a8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: #0063a8 !important;
    background: #fff !important;
    margin: 0 !important;
}

.slider-controls-simple .swiper-button-prev::after,
.slider-controls-simple .swiper-button-next::after {
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: swiper-icons !important;
    /* Swiper's internal font */
}

.slider-controls-simple .swiper-button-prev:hover,
.slider-controls-simple .swiper-button-next:hover {
    background: #0063a8 !important;
    color: #fff !important;
}

/* Dark Card (Articles) Adjustments */
.dark-card .slider-controls-simple .swiper-button-prev,
.dark-card .slider-controls-simple .swiper-button-next {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.dark-card .slider-controls-simple .swiper-button-prev:hover,
.dark-card .slider-controls-simple .swiper-button-next:hover {
    background: #ffffff !important;
    color: #000 !important;
    border-color: #ffffff !important;
}

/* ========================================================================== 
   NEW FOOTER REDESIGN STYLES
   ========================================================================== */
.footer-new-locations-grid {
    margin-bottom: 20px;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 columns as requested */
    gap: 20px;
    width: 100%;
}

/* Ensure Swiper doesn't break desktop grid */
@media (min-width: 769px) {
    .footer-new-locations-grid.swiper-wrapper {
        display: grid !important;
        transform: none !important;
        width: 100% !important;
    }

    .footer-new-location-card.swiper-slide {
        width: auto !important;
        margin: 0 !important;
    }

    .footer-offices-pagination {
        display: none !important;
    }
}

.footer-new-location-card {
    background: rgba(255, 255, 255, 0.05);
    /* Semi-transparent white to blend with navy */
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-new-location-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #2E8EFF;
    /* Blue brand border on hover */
    transform: translateY(-5px);
}

.footer-address-text {
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.6;
    font-weight: var(--font-weight-text);
    margin: 0;
    opacity: 0.85;
}

.footer-row-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-new-top-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.footer-new-brand {
    max-width: 300px;
    /* Fixed width for logo part */
}

.footer-new-nav-grid {
    flex: 1;
    /* Take remaining space */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1199px) {
    .footer-new-top-content {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .footer-new-locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .footer-new-top-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-new-brand {
        max-width: 100%;
    }

    .footer-new-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer-new-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 0 0;
    }

    .footer-new-social {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-new-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        text-align: left;
    }

    .footer-new-locations-grid {
        display: flex;
        /* Override grid for Swiper */
        gap: 0;
    }

    .footer-row-title {
        margin-bottom: 0 !important;
    }

    .footer-new-nav-column {
        min-width: auto;
    }

    .footer-offices-slider {
        padding-bottom: 40px !important;
    }

    .footer-offices-pagination {
        bottom: 0 !important;
    }

    .footer-offices-pagination .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.3;
    }

    .footer-offices-pagination .swiper-pagination-bullet-active {
        background: #2E8EFF;
        opacity: 1;
    }
}

.footer-new-bottom {
    background: #000a1a !important;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-new-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-new-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-new-bottom-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-new-copyright {
        width: 100%;
        order: 2;
    }

    .footer-new-bottom-links {
        width: 100%;
        order: 1;
        margin-bottom: 10px;
    }
}

/* --- GLOBAL CONTACT FORM STYLES (Standardized) --- */
.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    margin-bottom: 20px;
    width: 100%;
}

.form-field-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-lg-column {
    grid-column: span 2;
}

.floating-input-text {
    border: none;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    width: 100%;
    outline: none;
    background: transparent !important;
    transition: border-color 0.3s ease;
}

.floating-input-text:focus {
    border-bottom-color: #2E8EFF;
}

.floating-input-label {
    position: absolute;
    top: 0;
    left: 0;
    color: #888886;
    font-size: 16px;
    font-weight: 500;
    pointer-events: none;
    transition: 0.3s ease all;
}

.floating-input-text:focus~.floating-input-label,
.floating-input-text:not(:placeholder-shown)~.floating-input-label {
    top: -22px;
    font-size: 13px;
    color: #2E8EFF;
    font-weight: 600;
}

/* Fix for Select elements with floating labels */
select.floating-input-text {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.auto-grow-textarea {
    min-height: 28px;
    resize: vertical;
}

/* Ensure the dark panel forms use white text */
.form_hm_panel .floating-input-text,
.labs-contact-form-wrap .floating-input-text {
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

.form_hm_panel .floating-input-label,
.labs-contact-form-wrap .floating-input-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form_hm_panel .floating-input-text:focus,
.labs-contact-form-wrap .floating-input-text:focus {
    border-bottom-color: #2E8EFF !important;
}

/* Specific fix for select in dark panels */
.form_hm_panel select.floating-input-text,
.labs-contact-form-wrap select.floating-input-text {
    background: transparent !important;
    color: #fff !important;
}

.form_hm_panel select.floating-input-text option,
.labs-contact-form-wrap select.floating-input-text option {
    background: #0e0e1c !important;
    color: #fff !important;
}

.form_hm_panel .common__btn,
.labs-contact-form-wrap .common__btn {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .form-fields-grid {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }

    .form-lg-column {
        grid-column: auto;
    }
}

/* Slider Controls Simple (Press/Articles) */
.slider-controls-simple {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.slider-controls-simple .prev-arrow,
.slider-controls-simple .next-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #092EA0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    position: relative !important;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
}

.slider-controls-simple .prev-arrow::after,
.slider-controls-simple .next-arrow::after {
    display: none !important;
    /* Remove Swiper default arrows */
}

.slider-controls-simple .prev-arrow i,
.slider-controls-simple .next-arrow i {
    font-size: 18px;
    color: #092EA0;
    transition: color 0.3s ease;
}

.slider-controls-simple .next-arrow.active,
.slider-controls-simple .prev-arrow:hover,
.slider-controls-simple .next-arrow:hover {
    background: #092EA0;
    border-color: #092EA0;
}

.slider-controls-simple .next-arrow.active i,
.slider-controls-simple .prev-arrow:hover i,
.slider-controls-simple .next-arrow:hover i {
    color: #fff;
}

/* Specific styling for the press releases section */
.press_releases_section .slider-controls-simple {
    padding-left: 0;
}

/* Dark version of slider controls */
.slider-controls-simple .prev-arrow.dark,
.slider-controls-simple .next-arrow.dark {
    border-color: rgba(255, 255, 255, 0.3);
}

.slider-controls-simple .prev-arrow.dark i,
.slider-controls-simple .next-arrow.dark i {
    color: #fff;
}

.slider-controls-simple .prev-arrow.dark:hover,
.slider-controls-simple .next-arrow.dark.active,
.slider-controls-simple .next-arrow.dark:hover {
    background: #fff;
    border-color: #fff;
}

.slider-controls-simple .prev-arrow.dark:hover i,
.slider-controls-simple .next-arrow.dark.active i,
.slider-controls-simple .next-arrow.dark:hover i {
    color: #1A1A1A;
}

/* SVG Arrows styling */
.slider-controls-simple .prev-arrow svg,
.slider-controls-simple .next-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #092EA0;
    transition: stroke 0.3s ease;
}

.slider-controls-simple .prev-arrow:hover svg,
.slider-controls-simple .next-arrow.active svg,
.slider-controls-simple .next-arrow:hover svg {}

.slider-controls-simple .prev-arrow.dark svg,
.slider-controls-simple .next-arrow.dark svg {
    stroke: #fff;
}

.slider-controls-simple .prev-arrow.dark:hover svg,
.slider-controls-simple .next-arrow.dark.active svg,
.slider-controls-simple .next-arrow.dark:hover svg {
    stroke: #1A1A1A;
}