/* 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    TABLE OF CONTENTS:
    1. Fonts & Typography
    2. Global Variables (:root)
    3. Global Resets
    4. Main Header & Navigation
    5. Dropdown & Megamenu Styles
    6. Hero Banner Section
    7. Home: Operationalise Section
    8. Home: AI CoE Section
    9. Home: Key Focus Areas (Orbit UI)
    10. Home: CoE Advantages Section
    11. Home: Portfolio Section
    12. Home: Industry Intelligence Section
    13. Home: Sanjeevani of AI Section
    14. Main Footer Section
    15. Side Interaction & UI Components
    16. About Us Page Styles
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/

/* 1. Fonts & Typography */
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica-Bold';
    src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.hero-title,
.section-title {
    font-family: var(--font-bold);
    color: var(--dark-bg);
}

/* Global Section Heading Component */
.section-heading-wrap {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 2rem;
}

.section-title-bar {
    width: 60px;
    height: 8px;
    background: var(--section-gradient);
    border-radius: 4px;
    flex-shrink: 0;
}

.section-title-main {
    font-size: var(--fs-section-title);
    font-weight: 800;
    margin: 0;
}


/* 2. Global Variables (:root) */
:root {
    /* Colors */
    --primary-blue: #00eafe;
    --primary-purple: #43268e;
    --header-bg: #0c1e35;
    --dark-bg: #00040f;
    --white: #ffffff;
    --black: #000000;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --section-gradient: linear-gradient(100deg, #00eafe 0%, #43268e 100%);
    --color-body: #444444;
    --color-dark: #333333;
    --color-gray-light: #f8f9fa;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-main: 'Helvetica', Arial, sans-serif;
    --font-bold: 'Helvetica-Bold', Arial, sans-serif;

    /* Fluid Font Sizes */
    --fs-hero-title: clamp(26px, 8vw, 45px);
    --fs-hero-subtitle: clamp(15px, 2vw, 19px);
    --fs-section-title: clamp(20px, 6vw, 35px);
    --fs-section-desc: clamp(14px, 1.5vw, 16px);
    --fs-nav-link: clamp(14px, 1.2vw, 18px);
    --fs-card-title: clamp(22px, 4vw, 32px);
    --fs-subcard-title: clamp(18px, 2.5vw, 24px);
    --fs-tag-pill: clamp(14px, 1.8vw, 18px);

    /* Fixed Font Sizes */
    --fs-h1: 3rem;
    --fs-h2: 2.25rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1rem;
    --fs-p: 1.1rem;
    --fs-sm: 0.9rem;
    --fs-xs: 0.8rem;

    /* UI Config */
    --coe-grid-gap: 24px;
    --coe-card-gap: 22px;
    --coe-card-radius: 100px;
    --coe-icon-width: 100px;
    --coe-orbit-size: 350px;
    --coe-card-padding: 22px 22px 22px 28px;
    --coe-card-padding-rev: 22px 28px 22px 22px;
    --coe-shadow: 0 8px 32px rgba(100, 120, 180, .14);
    --section-padding: clamp(30px, 8vw, 30px) 0;
    /* Standardized Medium Section Gap */
    --element-gap: clamp(20px, 4vw, 40px);
    --border-white-trans: rgba(255, 255, 255, 0.1);
    --overlay-black: rgba(0, 0, 0, 0.4);
    --shadow-black: rgba(0, 0, 0, 0.2);
    --shadow-blue: rgba(0, 180, 255, 0.4);
}

/* 3. Global Resets */
body {
    background-color: var(--white);
    color: var(--dark-bg);
    font-family: var(--font-main);
    overflow-x: hidden;
    margin: 0;
    padding-top: 110px;
    /* Combined height of ticker + header */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

.section-spacing {
    padding: var(--section-padding);
}

.top-ticker-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* Above header but below offcanvas */
    height: 38px;
    background: #000;
    overflow: hidden;
}

/* 4. Main Header & Navigation */
.main-header {
    background: var(--header-bg);
    padding: 5px 0;
    position: fixed;
    top: 35px;
    /* Height of ticker tape */
    width: 100%;
    z-index: 1040;
    border-bottom: 1px solid var(--border-white-trans);
}

.filter-sidebar {
    position: relative;
    z-index: 100;
}

.header-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 20px;
    font-size: var(--fs-nav-link);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-item.dropdown:hover .nav-link {
    color: var(--primary-blue) !important;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    box-shadow: 0 0 10px rgba(0, 234, 254, 0.3);
}

.line-1 {
    width: 100%;
}

.line-2 {
    width: 60%;
}

.line-3 {
    width: 85%;
}

.navbar-toggler:hover .line-2 {
    width: 100%;
}

.navbar-toggler:hover .line-3 {
    width: 100%;
}

.navbar-toggler {
    border: none !important;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* Offcanvas Styles */
.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.offcanvas-body {
    padding: 30px 20px;
}

.btn-close {
    background-color: var(--primary-blue);
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
    background-size: 10px;
}

/* 5. Dropdown & Megamenu Styles */
.has-megamenu {
    position: static !important;
}

.megamenu {
    left: 0;
    right: 0;
    width: 100%;
    top: 100%;
    background: var(--header-bg);
    border-top: 2px solid var(--primary-blue);
    padding: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: all 0.3s ease;
}

.nav-item:hover .megamenu {
    opacity: 1;
    visibility: visible;
}

.col-megamenu .title {
    color: var(--primary-blue);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.col-megamenu .title a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.col-megamenu .title a:hover {
    color: var(--white);
}

.col-megamenu ul li {
    margin-bottom: 12px;
}

.col-megamenu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.col-megamenu ul li a:hover {
    color: var(--primary-blue);
    opacity: 1;
    padding-left: 5px;
}

.standard-dropdown {
    background: var(--header-bg);
    border: none;
    border-radius: 0;
    border-top: 2px solid var(--primary-blue);
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    min-width: 260px;
    top: 100% !important;
}

.standard-dropdown .dropdown-item {
    color: var(--white);
    font-size: 15px;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.standard-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-blue);
    padding-left: 30px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    background: var(--header-bg);
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-submenu .dropdown-toggle::after {
    transform: rotate(358deg);
    margin-left: 10px;
}

/* 6. Hero Banner Section */
.hero-banner {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#bannerVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-black);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.hero-title {
    font-size: var(--fs-hero-title);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: var(--fs-hero-subtitle);
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* 7. Home: Operationalise Section */
.operationalise-section {
    background: url(../images/home/home-operationalize-bg.png) no-repeat;
    background-size: cover;
    padding: 7rem 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: -100px;
    margin-bottom: 3rem;
}

.section-title {
    font-size: var(--fs-section-title);
    font-style: italic;
    line-height: 1.05;
    margin-bottom: 0;
    color: var(--white);
}

.section-desc {
    font-size: var(--fs-section-desc);
    line-height: 1.7;
    color: var(--text-white);
    opacity: 0.9;
    max-width: 85%;
}

/* 8. Home: AI CoE Section */
.ai-coe-section {
    background-color: var(--white);
    color: #333333;
}

.coe-main-title {
    font-size: clamp(22px, 5vw, 34px);
    color: #0c1e35;
    position: relative;
    padding-left: 70px;
    display: inline-block;
    line-height: 1.2;
}

.coe-main-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 55px;
    height: 10px;
    background: var(--section-gradient);
    border-radius: 5px;
}

/* 9. Home: Key Focus Areas (Orbit UI) */
#key-focus .coe-grid {
    display: grid;
    grid-template-columns: 1fr var(--coe-orbit-size) 1fr;
    gap: 0 var(--coe-grid-gap);
    align-items: center;
}

#key-focus .card-col {
    display: flex;
    flex-direction: column;
    gap: var(--coe-card-gap);
}

#key-focus .focus-card {
    position: relative;
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1.5px solid rgba(100, 120, 200, 0.2);
    overflow: hidden;
    transition: all .32s ease;
    cursor: default;
    border-radius: var(--coe-card-radius);
}

#key-focus .card-col.left .focus-card {
    flex-direction: row;
}

#key-focus .card-col.right .focus-card {
    flex-direction: row-reverse;
}

#key-focus .focus-card:hover {
    transform: translateY(-4px);
}

#key-focus .card-text {
    flex: 1;
    padding: var(--coe-card-padding);
}

#key-focus .card-col.right .card-text {
    padding: var(--coe-card-padding-rev);
    text-align: right;
}

#key-focus .card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-purple);
    line-height: 20px;
    margin-bottom: 8px;
}

#key-focus .card-body-txt {
    font-size: 12px;
    color: #666666;
    line-height: 16px;
}

#key-focus .card-icon {
    width: var(--coe-icon-width);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-gradient);
}

#key-focus .card-icon picture {
    width: 65px;
    height: 65px;
    filter: brightness(0) invert(1);
    display: block;
}

#key-focus .card-icon picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

#key-focus .orbit-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

#key-focus .orbit-wrap {
    position: relative;
    width: var(--coe-orbit-size);
    height: var(--coe-orbit-size);
}

#key-focus .orbit-centre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58%;
    height: 58%;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: inset 0 0 0 6px #e8eaf0, var(--coe-shadow);
}

#key-focus .orbit-centre-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-purple);
}

#key-focus .coe-tagline {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    background: var(--section-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 40px auto 20px;
    max-width: 900px;
}

/* 10. Home: CoE Advantages Section */
.coe-advantages-section {
    background-color: var(--white);
    overflow: hidden;
}

.coe-advantages-slider {
    padding: 20px 0 50px;
}

.advantage-card {
    background: url('../images/home/home-coe-advantage-wrapper-bg.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 10px 50px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-card-title {
    font-size: var(--fs-card-title);
    background: var(--section-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    display: inline-block;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    margin-right: 25px;
}

.advantage-text {
    font-size: 0.825rem;
    color: #2D3192;
    font-weight: 600;
    letter-spacing: 1px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #00eafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 234, 254, 0.4);
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: #43268e;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev-custom {
    left: -70px;
}

.swiper-button-next-custom {
    right: -70px;
}

.coe-advantages-slider .swiper-pagination {
    bottom: 0;
    display: none;
}

.coe-advantages-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #43268e;
    opacity: 0.3;
}

.coe-advantages-slider .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    background: #00eafe;
    opacity: 1;
}

/* 11. Home: Portfolio Section */
.portfolio-section {
    background-color: var(--white);
}

.portfolio-card {
    background: #f1f3f7;
    padding: 50px 40px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary-blue);
}

.portfolio-card-title {
    font-size: var(--fs-subcard-title);
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.portfolio-card-text {
    font-size: var(--fs-section-desc);
    color: #333333;
    line-height: 1.6;
}

/* 12. Home: Industry Intelligence Section */
.industry-section {
    background-color: #eceef4;
    padding: 80px 0;
}

.industry-subtitle {
    font-size: var(--fs-card-title);
    color: #333333;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tag-pill {
    padding: 12px 35px;
    border-radius: 50px;
    font-size: var(--fs-tag-pill);
    color: var(--primary-purple);
    font-weight: 500;
    background: #eceef4;
    border: 1.5px solid transparent;
    background-image: linear-gradient(#eceef4, #eceef4), var(--section-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

.tag-pill:hover {
    transform: translateY(-5px);
    background: var(--white);
    background-image: linear-gradient(var(--white), var(--white)), var(--section-gradient);
}

/* 13. Home: Sanjeevani of AI Section */
.sanjeevani-section {
    background: var(--section-gradient);
    color: var(--white);
    padding: 80px 0;
}

.sanjeevani-title {
    font-size: var(--fs-section-title);
    color: var(--white);
    margin-bottom: 20px;
}

.sanjeevani-desc {
    font-size: var(--fs-section-desc);
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

.sanjeevani-motto {
    font-size: 22px;
    font-weight: 600;
}

.btn-primary-blue {
    background: var(--primary-blue);
    color: var(--primary-purple);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-blue:hover {
    background: var(--white);
    color: var(--primary-purple);
    transform: translateY(-3px);
}

/* 14. Main Footer Section */
.main-footer {
    background-color: #1a1a1a;
    padding: 80px 0 40px;
    color: var(--white);
    position: relative;
}

.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 180px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
}

.footer-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.newsletter-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    display: block;
}

.newsletter-form {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    display: flex;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 14px;
    width: 100%;
    padding: 10px 0;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn-enquire {
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
}

.footer-bottom {
    padding-top: 30px;
}

.bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: var(--section-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.8);
    text-decoration: none;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: pulseGlow 2s infinite;
}

.back-to-top i {
    font-size: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.back-to-top:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 234, 254, 0.5);
    color: var(--white);
}

.back-to-top:hover i {
    animation: arrowUpMove 0.8s infinite;
}

@keyframes arrowUpMove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 234, 254, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 234, 254, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 234, 254, 0);
    }
}

/* 15. Side Interaction & UI Components */
.side-enquire-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    background: linear-gradient(to bottom, #007bff, #00eafe);
    color: var(--white);
    padding: 30px 12px;
    border-radius: 20px 0 0 20px;
    font-weight: 600;
    z-index: 1001;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.side-enquire-btn:hover {
    padding-right: 20px;
}

.hero-cta-btn {
    background: var(--white);
    color: var(--black);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.hero-cta-btn:hover {
    background: transparent;
    color: var(--white);
}

/* 16. About Us Page Styles */
.about-banner-img {
    width: 100%;
}

.about-banner-img img {
    display: block;
    width: 100%;
    height: auto;
}

.about-intro {
    background-color: var(--white);
}

.about-intro strong {
    color: #2780cc;
}

.text-blue {
    color: #2780cc;
}

/* About Purpose Section */
.about-purpose-section {
    padding: 150px 0 100px;
    background: url('../images/about-us/our existence-bg.png') no-repeat;
    background-size: cover;
    position: relative;
    color: var(--white);
}

.purpose-card {
    position: relative;
    z-index: 2;
}

.purpose-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.purpose-content {
    position: relative;
    z-index: 2;
}

.purpose-lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.95;
}

.purpose-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
}

/* About What We Do / Vision Section */
.about-vision-section {
    background: linear-gradient(to bottom, #f4f4f4 0%, #f4f4f4 80%, #ffffff 80%, #ffffff 100%);
    padding: 100px 0;
    color: #333333;
}

.section-tag-line {
    display: flex;
    align-items: center;
}

.tag-bar {
    width: 45px;
    height: 8px;
    background: linear-gradient(to right, #00eafe, #43268e);
    border-radius: 4px;
    display: block;
}

.vision-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.vision-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
}

.vision-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
}

.vision-img {
    border-radius: 40px;
    /* Base radius, the image might have its own shape */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* About Strategy Section & Flip Boxes */
.about-strategy-section {
    background-color: var(--white);
}

.strategy-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.strategy-intro .lead-txt {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark-bg);
}

.strategy-intro .desc-txt {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Flip Box Styling */
.flip-card {
    background-color: transparent;
    height: 240px;
    perspective: 1200px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 40px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 40px;
}

.flip-card-front {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
        var(--section-gradient) border-box;
    border-radius: 40px;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
}

.flip-card-back {
    background: linear-gradient(135deg, #43268e 0%, #00eafe 100%);
    border: 2px solid transparent;
    color: var(--white);
    transform: rotateY(180deg);
    font-size: 1rem;
    line-height: 1.6;
    padding: 25px;
}

.strategy-conclusion p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* About Shareholder Value Section */
.bg-dark-custom {
    background-color: #1a1a1a;
}

.shareholder-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.custom-shareholder-tabs .nav-link {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 234, 254, 0.2);
    border-radius: 0;
    color: var(--white);
    text-align: left;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    opacity: 0.7;
    margin-left: 0;
}

.custom-shareholder-tabs .nav-link.active {
    background: transparent;
    opacity: 1;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #00eafe, #43268e) 1;
}

.custom-shareholder-tabs .nav-link.active .tab-text {
    background: linear-gradient(to right, #00eafe, #43268e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-shareholder-tabs .tab-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
    padding-right: 20px;
}

.custom-shareholder-tabs .tab-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-shareholder-tabs .nav-link.active .tab-icon {
    background: var(--primary-blue);
    color: var(--primary-purple);
    transform: translateX(5px);
}

/* Team Grid Section (Uses Global Heading) */
.team-grid-section {
    padding: var(--section-padding);
}


.member-img-wrap {
    /* border: 2px solid var(--primary-purple); */
    cursor: pointer;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.member-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.team-card:hover .member-img-wrap {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 234, 254, 0.2);
}

.team-card:hover .member-img {
    transform: scale(1.05);
}

.member-name {
    font-size: var(--fs-h4);
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.member-designation {
    font-size: var(--fs-sm);
    color: var(--color-body);
    line-height: 1.4;
}

/* Bio Modal Styles */
.bio-modal .modal-content {
    border-radius: 30px;
    overflow: hidden;
}

.modal-header-gradient {
    height: 150px;
    background: linear-gradient(135deg, #1e73be 0%, #43268e 100%);
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.btn-close-custom {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-close-custom:hover {
    background: var(--white);
    color: var(--primary-purple);
}

.modal-profile-wrap {
    width: 180px;
    height: 180px;
    margin: -90px auto 20px;
    position: relative;
    z-index: 2;
    border: 5px solid var(--white);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-name {
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--dark-bg);
}

.modal-title-badge {
    display: inline-block;
    background: linear-gradient(to right, #43268e, #00eafe);
    padding: 8px 25px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    font-size: var(--fs-sm);
}

.modal-bio-container {
    background: #f8f9fa;
    border-radius: 20px;
}

.modal-bio-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* Show More Button */
.btn-show-more {
    background: linear-gradient(to right, #43268e, #00eafe);
    border: none;
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-show-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 38, 142, 0.3);
}

.btn-show-more i {
    transition: transform 0.3s ease;
}

.btn-show-more.active i {
    transform: rotate(180deg);
}

/* Corporate Overview (Uses Global Heading) */
.corporate-overview-section {
    background: var(--white);
    padding: var(--section-padding);
}

.overview-content p {
    font-size: var(--fs-p);
    line-height: 1.7;
    color: var(--color-body);
    font-weight: 500;
}

.overview-content strong {
    font-weight: 500;
    color: var(--dark-bg);
}







.legal-page-section {
    background-color: var(--white);
    color: var(--color-dark);
    padding: var(--section-padding);
    padding-top: 150px !important;
}

.legal-content h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    color: var(--dark-bg);
}

.legal-content h4 {
    color: var(--dark-bg);
    margin-top: 40px;
}

.legal-content p,
.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-body);
    margin-bottom: 1.5rem;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 2rem;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.custom-shareholder-content .tab-pane {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.fs-xs {
    font-size: 8px;
    vertical-align: middle;
}

/* Mobile Accordion Styling */
.custom-shareholder-accordion .accordion-button {
    background: transparent;
    color: var(--white);
    border-bottom: 1px solid rgba(0, 234, 254, 0.2);
    padding: 20px 0;
    box-shadow: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.custom-shareholder-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(to right, #00eafe, #43268e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom-color: transparent;
    border-image: linear-gradient(to right, #00eafe, #43268e) 1;
}

/* Custom Plus/Minus for Shareholder Accordion */
.custom-shareholder-accordion .accordion-button::after {
    content: '+';
    background: none;
    width: auto;
    height: auto;
    font-family: var(--font-bold);
    font-size: 24px;
    line-height: 1;
    color: var(--white);
    transition: transform 0.3s ease;
    filter: none;
}

.custom-shareholder-accordion .accordion-button:not(.collapsed)::after {
    content: '-';
    background: linear-gradient(to right, #00eafe, #43268e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: none;
}

/* Contact Us Page */
.contact-hero-section {
    background: linear-gradient(to bottom, #f4f4f4 0%, #f4f4f4 100%, #ffffff 100%, #ffffff 100%);
    /* padding-top: 100px; */
}

.contact-card {
    padding: 80px 0;
    position: relative;
    margin-top: 0;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-bg);
}

.contact-form-wrapper .form-group {
    position: relative;
}

.contact-form-wrapper label {
    color: var(--dark-bg);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
}

.form-control-custom {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    color: var(--dark-bg);
    padding: 10px 0;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-bottom-color: var(--primary-blue);
    box-shadow: none;
}

select.form-control-custom option {
    background-color: var(--white);
    color: var(--dark-bg);
}

textarea.form-control-custom {
    resize: none;
}

.btn-submit {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 15px 60px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    background: var(--primary-blue) !important;
}

.wpcf7-spinner {
    display: none !important;
}

/* Contact Details Section */
.contact-details-section {
    background: url('../images/contact-us/contact-bg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.details-subtitle {
    font-size: 1.1rem;
    color: var(--white);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.info-content-wrap a {
    color: var(--white) !important;
    text-decoration: none;
}

.info-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--white);
}

.info-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
}

/* 17. Solutions Page Styles */
.solutions-hero {
    height: 60vh;
    min-height: 450px;
}

.solutions-hero .hero-content {
    padding-top: 0;
}

.solutions-hero .hero-title {
    margin-bottom: 0 !important;
    line-height: 1.2;
}

/* Solutions Intro Section */
.solutions-intro-section {
    background-color: var(--white);
    padding: var(--section-padding);
}

.intro-outcome {
    font-size: var(--fs-h5);
    font-weight: 600;
    color: var(--primary-purple);
    margin-top: var(--element-gap);
}

/* AI-Native Platforms Section */
.platforms-section {
    background-color: var(--black);
    padding: var(--section-padding);
    position: relative;
}

.section-subtitle {
    display: block;
    color: var(--white);
    font-size: var(--fs-xs);
    margin-top: 15px;
    margin-left: 65px;
    /* Aligned with title */
}

/* Flip Card Refined */
.flip-card {
    background-color: transparent;
    height: 160px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 35px;
    border: 1.5px solid transparent;
}

.flip-card-front {
    background: linear-gradient(var(--black), var(--black)) padding-box,
        linear-gradient(135deg, var(--primary-purple), var(--primary-blue)) border-box;
    color: var(--white);
}

.flip-card-front h3 {
    font-size: var(--fs-h6);
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    color: var(--white);
}

.flip-card-back {
    background: var(--section-gradient);
    color: var(--white);
    transform: rotateY(180deg);
}

.flip-card-back p {
    font-size: var(--fs-xs);
    line-height: 1.4;
    margin: 0;
}

/* Layers List Refined */
.layers-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.layer-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

.layer-name {
    font-size: var(--fs-h3);
    font-weight: 700;
    background: var(--section-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}


.platforms-footer {
    text-align: left;
    margin-top: var(--element-gap);
}

.platforms-footer p {
    font-size: var(--fs-h5);
    color: var(--white);
    margin: 0;
    text-align: left;
}

/* Our Offerings Section Styles */
.offering-portal-card {
    background-image: url('../images/solutions/main-page/our-offerings-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    padding: 60px 40px;
    border-radius: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
}


.offering-portal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offering-card-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.offering-card-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 80%;
}

.offering-portal-btn {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: #43268e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offering-portal-btn:hover {
    transform: scale(1.1);
    background: var(--primary-blue);
    color: var(--white);
}

.offering-card-btn {
    /* Alias for the first card if I used a different class name in HTML */
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: #43268e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* 18. Solution Inner Page Styles */
.solution-inner-hero {
    height: 70vh;
    min-height: 550px;
}

.solution-breadcrumb {
    display: inline-block;
}

.solution-breadcrumb .breadcrumb {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 600;
}

.solution-breadcrumb .breadcrumb-item a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-blue);
}

.solution-breadcrumb .breadcrumb-item.active {
    color: var(--primary-purple);
    opacity: 0.7;
}

.solution-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "-";
    color: var(--primary-purple);
    padding: 0 10px;
}

.solution-inner-hero .hero-title {
    font-size: var(--fs-hero-title);
    line-height: 1.2;
    margin-top: 10px;
    color: var(--white);
}

.solution-nav-section {
    background-color: var(--header-bg);
}

/* Solution Navigation Pills */
.solution-nav-pill {
    display: inline-block;
    padding: 20px 80px;
    border-radius: 50px;
    background: var(--section-gradient);
    color: var(--white) !important;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    min-width: 250px;
    margin-inline: 20px;
    text-align: center;
}

.solution-nav-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 234, 254, 0.2);
    filter: brightness(1.1);
}

/* Solution Overview Styles */
.solution-overview-section {
    color: var(--color-dark);
}

.overview-title {
    font-size: var(--fs-section-title);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
}

.overview-content p {
    font-size: var(--fs-p);
    line-height: 1.6;
    color: var(--color-body);
}

.lead-text {
    font-weight: 600;
    color: var(--color-dark);
}

.callout-text {
    font-size: var(--fs-h3);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
}

.gradient-text {
    background: var(--section-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
    .overview-callout {
        margin-top: var(--element-gap);
    }
}

/* Key Capabilities Styles */
.solution-capabilities-section {
    background-color: var(--white);
}

.capability-card {
    background-image: url(../images/solutions/main-page/ai-security-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 90%;
}

.capability-icon-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}



.capability-icon {
    width: 45px;
    height: 45px;
}

.capability-name {
    font-size: var(--fs-h6);
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
}





.capabilities-callout {
    padding-left: 30px;
}

/* Solution Comparison Styles */
.comparison-card {
    display: flex;
    border-radius: 60px;
    overflow: hidden;
    color: var(--white);
    background-color: #e0e0e0;
    /* Right side background */
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 90%;
}

.comparison-pane {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.pane-left {
    background-color: #272727;
    /* Fallback */
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.pane-right {
    color: var(--black);
}

.pane-title {
    font-size: var(--fs-h3);
    font-weight: 800;
    margin-bottom: 30px;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.comparison-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Arrow Divider */
.comparison-divider {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    z-index: 10;
}

.arrow-wrapper {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--white);
}

.comparison-arrow {
    width: 40px;
    height: 40px;
}

@media (max-width: 991px) {
    .comparison-card {
        flex-direction: column;
    }

    .comparison-divider {
        display: none;
    }
}

/* Detailed Capabilities Section Styles */
.capabilities-detail-section {
    background-image: url('../images/solutions/main-page/key-capabilities-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
    color: var(--white);
    padding: 100px 0;
}

.detail-title {
    font-size: var(--fs-h4);
    font-weight: 700;
    margin-bottom: 20px;
}

.gradient-cyan-text {
    background: linear-gradient(90deg, #00eafe 0%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00eafe;
    font-weight: bold;
}

.z-index-1 {
    z-index: 1;
}

@media (max-width: 991px) {
    .capability-detail-item {
        margin-bottom: 40px;
    }
}

/* Use Cases Section Styles */
.use-cases-section {
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.use-case-card {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.use-cases-slider .swiper-slide {
    height: auto;
}

.use-case-card:hover {
    transform: translateY(-10px);
}

.use-case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 100%;
}

.use-case-desc {
    font-size: 15px;

    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.use-case-desc.secondary-text {
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .use-case-card {
        height: auto;
        min-height: 350px;
        padding: 30px 25px;
    }
}

/* Why Us Section Styles */
.why-us-section {
    background-color: #e0e0e0;
    background-image: url('../images/solutions/main-page/why-us-bg.png');
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 150px 0 100px;
    /* Overlap with previous section for the folder shape */
    color: var(--white);
}

.why-us-card {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 99;
}

.why-us-card:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #00eafe 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.why-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.question-mark-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;

}

.question-mark-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -5px;
}



@media (max-width: 991px) {
    .why-us-section {
        background-size: cover;
        padding: 100px 0;
        margin-top: 0;
    }

    .why-us-card {
        padding: 30px;
    }
}

/* 17. Business Page Styles */
#business {
    /* padding: 80px 0; */
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#business::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 234, 254, 0.05) 0%, transparent 70%);
    z-index: 0;
}

#business .container {
    position: relative;
    z-index: 1;
}

#business .page-title {
    margin: 0;
}

/* No manual after/before here, it's handled by section-heading-wrap now */

/* ======================
   SIDEBAR TABS (DESKTOP)
====================== */
#business .tab-content>.active {
    opacity: 1;
}

#business .nav-pills .nav-link {
    padding: 12px 15px;
    font-family: var(--font-main);
    font-size: 15px;
    color: #444 !important;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.4;
    text-align: left;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    -webkit-text-fill-color: initial;
    text-fill-color: initial;
}

#business .nav-pills .nav-link:hover {
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

#business .nav-pills .nav-link.active {
    font-family: var(--font-bold);
    font-weight: 700;
    color: var(--primary-purple) !important;
    background: rgba(0, 234, 254, 0.08) !important;
    border: 1.5px solid var(--primary-purple);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(8px);
}

#business .nav-pills .nav-link.active::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    color: var(--primary-purple);
}

#business .nav-pills .nav-link.disabled {
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
    pointer-events: none;
}

/* ======================
   MOBILE TAB DROPDOWN
====================== */
#business .mobile-tab {
    display: none;
}

@media (max-width: 991px) {
    #business .tabs-box {
        display: none;
    }

    #business .mobile-tab {
        display: block;
        margin-bottom: 2rem;
    }
}

/* ======================
   CONTENT CARDS
====================== */
#business .doc-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    padding-bottom: 40px;
    /* Space for absolute date */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    height: 100%;
    line-height: 1.5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    position: relative;
}

#business .doc-title {
    font-weight: 500;
    font-size: 15px;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#business .doc-date {
    position: absolute;
    bottom: 12px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-purple);
    background: rgba(0, 234, 254, 0.1);
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#business .doc-date::before {
    content: "\f133";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 10px;
    color: var(--primary-blue);
}

#business .pdf-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#business .doc-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: var(--primary-blue);
}

#business .doc-card:hover .pdf-icon {
    transform: rotate(5deg) scale(1.1);
    background: rgba(0, 234, 254, 0.1);
}

/* ======================
   FORMS & FOCUS RESET
====================== */
#business select.form-select {
    min-height: 48px;
    border-radius: 10px;
    font-family: var(--font-main);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#business select:focus,
#business select:focus-visible,
#business button:focus,
#business button:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 234, 254, 0.1) !important;
    border-color: var(--primary-blue) !important;
}

#business .year-select {
    font-weight: 600;
    color: var(--primary-purple);
}

/* Quarterly Styles */
#business .quarter-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 2rem;
}

#business .quarter-title {
    padding: 14px 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
    color: var(--primary-purple);
}

#business .quarter-title small {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: 10px;
}

#business .quarter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#business .quarter-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#business .quarter-list li:last-child {
    border-bottom: none;
}

#business .quarter-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: #444;
    transition: background 0.2s ease;
}

#business .quarter-list a:hover {
    background: #f0f7ff;
    color: var(--primary-blue);
}

/* Accordion Styles */
#business .brand-accordion .accordion-item {
    border: 0;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#business .brand-accordion .accordion-button {
    background: var(--primary-purple);
    color: #fff;
    font-family: var(--font-bold);
    font-weight: 600;
    border-radius: 8px !important;
    padding: 18px 20px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

#business .brand-accordion .accordion-button:not(.collapsed) {
    background: #e8f4ff;
    color: var(--primary-purple);
}

#business .brand-accordion .accordion-button::after {
    display: none;
}

#business .brand-accordion .icon {
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
}

#business .brand-accordion .icon::before,
#business .brand-accordion .icon::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: all 0.3s ease;
}

#business .brand-accordion .accordion-button:not(.collapsed) .icon::before,
#business .brand-accordion .accordion-button:not(.collapsed) .icon::after {
    background: var(--primary-purple);
}

#business .brand-accordion .icon::before {
    width: 14px;
    height: 2px;
    top: 6px;
    left: 0;
}

#business .brand-accordion .icon::after {
    width: 2px;
    height: 14px;
    left: 6px;
    top: 0;
}

#business .brand-accordion .accordion-button:not(.collapsed) .icon::after {
    height: 0;
}

#business .brand-accordion .accordion-body {
    background: #fff;
    font-family: var(--font-main);
    color: #444;
    padding: 20px;
    line-height: 1.6;
}

/* Info Cards */
#business .info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s;
}

#business .info-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

#business .card-title-main {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-purple);
}

#business .company-name {
    color: #1b8f3a;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

#business .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

#business .info-item i,
#business .info-item .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-blue);
    margin-top: 2px;
}

#business .info-card .value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

#business .info-card .value a:hover {
    color: var(--primary-blue);
}

#business .label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px;
    color: #333;
}

#business .value {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

#business .value a {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 600;
}

#business .value a:hover {
    text-decoration: underline;
    color: var(--primary-blue);
}

/* CF7 Styles */
#business .wpcf7-form-control {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
}

#business .wpcf7-submit {
    background: var(--primary-purple);
    border: none;
    padding: 12px 40px;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

#business .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 234, 254, 0.3);
}

/* 18. Resources Detail Page Styles */
.resource-detail-page {
    background: #fff;
    color: #333;
}

.article-title {
    font-family: var(--font-bold);
    font-size: clamp(20px, 5vw, 35px);
    line-height: 1.2;
    color: var(--primary-purple);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.meta-divider {
    opacity: 0.3;
}

.featured-image-wrap img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content p:first-of-type {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.article-content h2 {
    font-family: var(--font-bold);
    color: var(--primary-purple);
    font-size: 26px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.article-content h3 {
    font-family: var(--font-bold);
    color: #1a1a1a;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.article-content ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
}

.article-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.ready-to-act {
    background: #f8faff !important;
    border: 1px solid rgba(0, 234, 254, 0.2) !important;
}

.ready-to-act h2 {
    color: var(--primary-purple);
    margin-top: 0 !important;
}

.text-purple {
    color: var(--primary-purple);
}

.related-resources .section-title-main {
    font-size: 28px;
}


/* 18. Resources Page Styles */
.resources-page {
    background: #fdfdfd;
}

.filter-sidebar {
    background: #ebebeb;
    padding: 25px;
    border-radius: 12px;
    position: sticky;
    top: 150px;
}

.filter-title {
    font-family: var(--font-bold);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.filter-sidebar .form-check-label {
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.filter-sidebar .form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-search {
    background: #dedede;
    border: none;
    color: #666;
    padding: 0 15px;
}

.search-box .form-control {
    background: #f2f2f2;
    border: none;
    border-radius: 20px 0 0 20px;
    padding: 10px 20px;
    font-size: 14px;
}

.search-box .btn-search {
    border-radius: 0 20px 20px 0;
}

/* Resource Cards Common */
.resource-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 234, 254, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.card-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.resource-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.resource-card .card-body-content {
    padding: 25px;
    background: #fff;
}

.category-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-purple);
    background: rgba(0, 234, 254, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.resource-card:hover .card-title {
    color: var(--primary-purple);
}

.read-more-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    backface-visibility: hidden;
}

.resource-card:hover .read-more-link {
    background: var(--section-gradient);
    color: #fff;
    transform: rotate(-45deg);
}

/* POV Card Unique */
.pov-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 234, 254, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: pointer;
}

.pov-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pov-header {
    display: flex;
    position: relative;
    height: 200px;
}



.pov-banner-box {
    width: 60%;
    background: var(--section-gradient);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.pov-banner-box.blue-grad {
    background: linear-gradient(135deg, #00eafe 0%, #0072ff 100%);
}

.banner-text {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
}

.person-name {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
}

.pov-card .card-body-content {
    padding: 25px;
}

.pov-card .card-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

/* Buttons */
.btn-show-more {
    background: var(--primary-purple);
    color: #fff;
    border-radius: 30px;
    padding: 10px 40px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid transparent;
    /* Prevents layout shift */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    will-change: transform, box-shadow;
}

.btn-show-more:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 234, 254, 0.3);
}


.btn-filter-mobile {
    background: var(--primary-purple);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-filter-mobile:hover,
.btn-filter-mobile:focus {
    color: #fff;
    opacity: 0.9;
}

.btn-filter-mobile .fas {
    transition: transform 0.3s ease;
}

.btn-filter-mobile:not(.collapsed) .fas {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    #filterCollapse.collapse:not(.show) {
        display: block;
    }
}


/* ======================
   MOBILE SPACING TIGHT
====================== */
@media (max-width: 576px) {
    #business .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #business .page-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    #business .doc-card {
        padding: 15px;
    }

    #business .mobile-tab {
        margin-bottom: 1.5rem;
    }
}

/* Search Suggestions */
.search-suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff !important;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 9999 !important;
    max-height: 350px;
    overflow-y: auto;
}

#resource-search:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0, 234, 254, 0.3);
    outline: none;
}

.suggestion-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
}

.cursor-default {
    cursor: default !important;
}

/* Legal Pages */
.legal-hero {
    background: #f8f9fa;
}

.legal-entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.legal-entry-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-entry-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
}

.legal-entry-content p {
    margin-bottom: 1.5rem;
}

.legal-entry-content ul,
.legal-entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-entry-content li {
    margin-bottom: 0.5rem;
}

/* Detail List Padding */
.detail-list-wrap ul {
    padding-left: 20px;
}

.detail-list-wrap ul li {
    line-height: normal;
    margin-bottom: 12px;
}

/* Use Case Desc Wrap */
.use-case-desc-wrap p {
    color: #ffffff;
}

.use-case-content br,
.use-case-desc-wrap p br {
    display: none !important;
}
/* 19. Floating Contact Sidebar */
.floating-contact-wrapper {
    position: relative;
    z-index: 9999;
}

.floating-contact-trigger {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--section-gradient);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: -5px 0 15px rgba(0, 234, 254, 0.3);
    transition: all 0.3s ease;
    z-index: 1050;
}

.floating-contact-trigger i {
    transform: rotate(90deg);
}

.floating-contact-trigger:hover {
    padding-right: 35px;
    box-shadow: -8px 0 20px rgba(0, 234, 254, 0.5);
}

.contact-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100vh;
    background: var(--header-bg);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    color: var(--white);
}

.contact-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-white-trans);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 24px;
    color: var(--primary-blue);
    font-family: var(--font-bold);
}

.close-sidebar {
    background: transparent;
    border: 1px solid var(--border-white-trans);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-sidebar:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: rotate(90deg);
}

.sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.sidebar-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.sidebar-footer {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border-white-trans);
}

.contact-mini-info a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.contact-mini-info a:hover {
    color: var(--primary-blue);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CF7 Modern Styling for Sidebar */
.sidebar-form-container .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 10px;
}

.sidebar-form-container p {
    margin-bottom: 10px;
}

.sidebar-form-container label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.sidebar-form-container br {
    display: none;
}

.sidebar-form-container input:not([type="submit"]),
.sidebar-form-container textarea,
.sidebar-form-container select {
 width: 100%;
 background: rgba(255, 255, 255, 0.05);
 border: 1px solid var(--border-white-trans);
 border-radius: 8px;
 padding: 12px 15px;
 color: var(--white);
 font-size: 14px;
 transition: all 0.3s ease;
}

.sidebar-form-container input:focus,
.sidebar-form-container textarea:focus {
 outline: none;
 border-color: var(--primary-blue);
 background: rgba(255, 255, 255, 0.08);
 box-shadow: 0 0 10px rgba(0, 234, 254, 0.2);
}

.sidebar-form-container textarea {
 height: 120px;
 resize: none;
}

.sidebar-form-container .wpcf7-submit {
 width: 100%;
 background: var(--section-gradient);
 color: var(--white);
 border: none;
 padding: 14px;
 border-radius: 8px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
 cursor: pointer;
 transition: all 0.3s ease;
 margin-top: 10px;
}

.sidebar-form-container .wpcf7-submit:hover {
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(0, 234, 254, 0.4);
}

.sidebar-form-container .wpcf7-spinner {
 position: absolute;
 bottom: 20px;
}

.sidebar-form-container .wpcf7-not-valid-tip {
 font-size: 12px;
 color: #ff4d4d;
 margin-top: 5px;
}

.sidebar-form-container .wpcf7-response-output {
 margin: 20px 0 0;
 padding: 10px 15px;
 border-radius: 8px;
 font-size: 13px;
 border: 1px solid transparent;
}

.sidebar-form-container .wpcf7-mail-sent-ok {
 border-color: #398f14;
 color: #398f14;
}

.sidebar-form-container .wpcf7-validation-errors {
 border-color: #ffb900;
 color: #ffb900;
}

@media (max-width: 480px) {
 .contact-sidebar {
 width: 100%;
 right: -100%;
 }
 
 .floating-contact-trigger span {
 display: none;
 }
 
 .floating-contact-trigger {
 transform: none;
 bottom: 20px;
 top: auto;
 right: 20px;
 border-radius: 50%;
 width: 55px;
 height: 55px;
 padding: 0;
 justify-content: center;
 }
 
 .floating-contact-trigger i {
 transform: none;
 font-size: 20px;
 }
}

