Folder highlights
Stylesheet defines extensive site styling including custom CSS variables and responsive header navigation elements for a modern web design.
/* ============================================
   Font Family
============================================== */
/* Open Sans Regular – 400 */
@font-face {
    font-family: "Inter", sans-serif;
    src: url("../font/inter/Inter_18pt-Black.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* Inter Thin – 100 */
@font-face {
    font-family: "Inter", sans-serif;
    src: url("../font/inter/Inter_18pt-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

/* Inter Regular – 400 */
@font-face {
    font-family: "Inter", sans-serif;
    src: url("../font/inter/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* Inter Medium – 500 */
@font-face {
    font-family: "Inter", sans-serif;
    src: url("../font/inter/Inter_18pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

/* Inter SemiBold – 600 */
@font-face {
    font-family: "Inter", sans-serif;
    src: url("../font/inter/Inter_18pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

/* Inter Bold – 700 */
@font-face {
    font-family: "Inter", sans-serif;
    src: url("../font/inter/Inter_18pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/* Inter ExtraBold – 800 */
@font-face {
    font-family: "Inter", sans-serif;
    src: url("../font/inter/Inter_18pt-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

/* Add italic variations only if needed */

/* ============================================
   CSS Variables & Reset
============================================ */
.breadcrumb {
    align-items: baseline;
    display: flex;
    margin-bottom: 0;
}

:root {
    --primary: #3ec5aa;
    --primary-light: #f1fcf8;
    --primary-dark: #6d28d9;
    --secondary: #3ec573;
    --accent: #3b82f6;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #10b981;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --bg1: #f5f8f7;
    --blue: #3498db;
    --green: #2ecc71;
    --purple: #9b59b6;
    --white: #ffff;
    --sub-text: #444;
    --dark-gray: #1a1a1a;
    --dark-gray-soft: #666666;
    --light-gray-bg: #f5f5f5;
    --pure-white: #ffffff;
    --white-70: rgba(255, 255, 255, 0.7);
    --accent-red-dot: #cc0000;
    --dark-section: #181818;
    --light-section: #f0f0f0;
    --black-lighter: #2a2a2a;
    --line-color: #e0e0e0;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: "Chivo", sans-serif !important;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.5s;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    outline: none;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* ============================================
   Global Styles
============================================ */

body {
    font-size: clamp(0.9rem, 1vw, 1.2rem);
    font-family: "Chivo", sans-serif !important;
    color: var(--sub-text);
    line-height: 1.6;
    background-color: #f9fafb;
    overflow-x: hidden;
    font-family: "Chivo", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-family: "Poppins", "Inter", "Montserrat", sans-serif;
}



.btn-highlight {
    display: inline-block;
    padding: 14px 38px;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 600;
    border-radius: 14px;
    color: #000;
    background: linear-gradient(90deg, #ffe39c, #ffc247, #ffb326);
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 22px rgba(255, 182, 72, 0.35);
    position: relative;
    overflow: hidden;
}

    .btn-highlight:hover {
        transform: translateY(-3px);
        background: linear-gradient(90deg, #fff0c9, #ffd67c, #ffbe42);
        box-shadow: 0 10px 28px rgba(255, 185, 60, 0.45);
    }

    .btn-highlight:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(255, 185, 60, 0.3);
    }



.container {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading Sizes */
/* =========================
   BASE (Mobile First)
========================= */
.hero-section .title {
    color: var(--dark);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}

.heading-h1 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--dark);
}

.heading-h2 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark);
}

.heading-h3 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--dark);
}

.heading-h4 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--dark);
}

.heading-h5 {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--dark);
}

.heading-h6 {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--dark);
}


/* =========================
   SMALL DEVICES ≥576px
========================= */
@media (min-width: 576px) {
    .hero-section .title {
        color: var(--dark);
        font-size: 32px;
        line-height: 1.23;
        font-weight: 700;
    }

    .heading-h1 {
        font-size: 32px;
        line-height: 1.23;
    }

    .heading-h2 {
        font-size: 26px;
        line-height: 1.28;
    }

    .heading-h3 {
        font-size: 22px;
        line-height: 1.32;
    }
}


/* =========================
   TABLET ≥768px
========================= */
@media (min-width: 768px) {
    .hero-section .title {
        color: var(--dark);
        font-size: 36px;
        line-height: 1.2;
        font-weight: 700;
    }

    .heading-h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .heading-h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .heading-h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .heading-h4 {
        font-size: 20px;
        line-height: 1.35;
    }
}


/* =========================
   LAPTOP ≥992px
========================= */
@media (min-width: 992px) {
    .hero-section .title {
        color: var(--dark);
        font-size: 42px;
        line-height: 1.18;
        font-weight: 700;
    }

    .heading-h1 {
        font-size: 42px;
        line-height: 1.18;
    }

    .heading-h2 {
        font-size: 34px;
        line-height: 1.22;
    }

    .heading-h3 {
        font-size: 28px;
        line-height: 1.28;
    }

    .heading-h4 {
        font-size: 22px;
        line-height: 1.32;
    }

    .heading-h5 {
        font-size: 18px;
        line-height: 1.38;
    }
}


/* =========================
   DESKTOP ≥1200px
========================= */
@media (min-width: 1200px) {
    .hero-section .title {
        color: var(--dark);
        font-size: 48px;
        line-height: 1.15;
        font-weight: 700;
    }

    .heading-h1 {
        font-size: 48px;
        line-height: 1.15;
    }

    .heading-h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .heading-h3 {
        font-size: 32px;
        line-height: 1.25;
    }

    .heading-h4 {
        font-size: 24px;
        line-height: 1.3;
    }

    .heading-h5 {
        font-size: 20px;
        line-height: 1.35;
    }

    .heading-h6 {
        font-size: 16px;
        font-size: 16px;
        line-height: 1.4;
    }
}

/* Common Components */
.heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(20px, 5vw, 50px);
}

.dropdown-toggle::after {
    display: none;
}

/* 🌐 Responsive Section Padding */
.section-padding {
    padding-block: clamp(40px, 8vw, 80px); /* top & bottom */
}

.custom-btn {
    position: relative;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .custom-btn:before {
        content: "";
        position: absolute;
        top: 7%;
        left: 0;
        display: block;
        border-radius: 50px;
        background: #6bddc3;
        width: 45px;
        color: var(--white);
        height: 45px;
        transition: all 0.3s ease;
        z-index: 0;
    }

    .custom-btn span {
        position: relative;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: var();
        z-index: 1;
    }

    .custom-btn svg {
        position: relative;
        top: 0;
        margin-left: 10px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: #234567;
        stroke-width: 2;
        transform: translateX(-5px);
        transition: all 0.3s ease;
        z-index: 1;
    }

    .custom-btn:hover:before {
        width: 100%;
        background: var(--primary);
    }

    .custom-btn:hover svg {
        transform: translateX(0);
    }

    .custom-btn:active {
        transform: scale(0.95);
    }

.text-outline {
    color: var(--primary);
}

    .text-outline:hover {
        background-position: 100% center;
        filter: drop-shadow(0 0 8px rgba(0, 122, 255, 0.3));
        transform: scale(1.05);
    }

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: -2px 0 #ff00c1, 2px 0 #00fff0;
    }

    25% {
        transform: translate(-2px, 2px);
        text-shadow: -2px 0 #ff00c1, 2px 0 #00fff0;
    }

    50% {
        transform: translate(2px, -2px);
        text-shadow: 2px 0 #ff00c1, -2px 0 #00fff0;
    }

    100% {
        transform: translate(0);
        text-shadow: none;
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: -2px 0 #ff00c1, 2px 0 #00fff0;
    }

    25% {
        transform: translate(-2px, 2px);
        text-shadow: -2px 0 #ff00c1, 2px 0 #00fff0;
    }

    50% {
        transform: translate(2px, -2px);
        text-shadow: 2px 0 #ff00c1, -2px 0 #00fff0;
    }

    100% {
        transform: translate(0);
        text-shadow: none;
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.main-heading:hover .text-outline::after {
    width: 100%;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ============================================
   Header Section
============================================ */

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .header-container.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

/* Top Bar */
.top-bar {
    background: var(--gradient);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.header-container.scrolled .top-bar {
    padding: 0;
    max-height: 0;
    overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.2), transparent );
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

.top-bar-content {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.top-bar-actions {
    display: flex;
    gap: 20px;
}

/* Main Header */
.main-header {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header-container.scrolled .main-header {
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
}

.logo-img {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    background: var(--gradient);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
}

.header-container.scrolled .logo-img {
    height: 40px;
    width: 160px;
    font-size: 18px;
}


.quote-btn i {
    font-size: 12px;
    color: var(--dark);
    transition: transform 0.3s ease;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    background: rgba(62, 197, 170, 0.1);
    padding: 5px;
    border-radius: 12px;
    position: relative;
}

    .nav-menu::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient( 45deg, var(--primary), transparent, var(--primary) );
        border-radius: 14px;
        z-index: -1;
        animation: border-animate 3s linear infinite;
    }

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

    .nav-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        opacity: 0;
        transition: opacity 0.3s;
        z-index: -1;
    }

    .nav-link:hover {
        color: white;
        transform: translateY(-2px);
    }

        .nav-link:hover::before {
            opacity: 1;
        }

    .nav-link i {
        font-size: 16px;
        transition: transform 0.3s;
    }

    .nav-link:hover i {
        transform: translateY(-3px);
    }

/* Dropdown Menus */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: fit-content;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s;
    z-index: 100;
    border: none;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
    z-index: 1010;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

    .dropdown-item:hover {
        background: var(--primary);
        color: white;
        padding-left: 25px;
    }

    .dropdown-item i {
        width: 20px;
        text-align: center;
    }

/* Nested Dropdown */
.nested-dropdown {
    position: relative;
    pointer-events: auto;
}

    .nested-dropdown .dropdown-item {
        justify-content: space-between;
    }

.nested-dropdown-menu {
    position: absolute;
    left: 15%;
    background: white;
    width: fit-content;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s;
    z-index: 101;
}

.nested-dropdown:hover .nested-dropdown-menu,
.nested-dropdown.active .nested-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1020;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
}

/* 🌍 White Modern Country Selector */
.country-selector-white {
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;
}

/* Main Button */
.country-btn-white {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .country-btn-white i {
        color: #fff !important;
        font-size: 18px !important;
    }

    .country-btn-white::after {
        content: "";
        margin: 0 20px;
        height: 15px;
        border: 0.5px solid #fff;
    }

        .country-btn-white::after:last-child {
            border: none !important;
            margin: 0 !important;
        }

    .country-btn-white img {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        object-fit: cover;
    }

    .country-btn-white i {
        font-size: 10px;
        color: #666;
        transition: transform 0.3s ease;
    }

    .country-btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        color: var(--dark);
    }

        .country-btn-white:hover i {
            color: var(--dark) !important;
        }
/* Dropdown Menu */
.country-dropdown-white {
    display: block;
    position: absolute;
    top: 10 0%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 200px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}








/* sign-in start */
/* 🌟 Sign In Dropdown Wrapper */
.signin-dropdown {
    position: relative;
    display: inline-block;
}

/* Button Style */
.sign-btn {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.country-btn i {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.country-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Dropdown Menu (Hidden by Default) */
/* Dropdown Menu (Hidden by Default) */
.signin-menu {
    font-size: 16px;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    min-width: 300px;
    z-index: 1000;
}

/* Show Dropdown on Hover */
.signin-dropdown:hover .signin-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.signin-dropdown:hover .country-btn i {
    transform: rotate(180deg);
}

/* Dropdown Items */
.signin-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .signin-menu li a:hover {
        background: var(--primary);
        color: white;
    }

/* Responsive */
@media (max-width: 768px) {
    .country-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Dropdown visible on active */
.country-selector-white.active .country-dropdown-white {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.country-selector-white.active .country-btn-white i {
    transform: rotate(180deg);
}

/* Dropdown Items */
.country-dropdown-white li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.country-dropdown-white li,
.country-dropdown-white a {
    display: flex;
    gap: 10px;
}

    .country-dropdown-white li img,
    .country-dropdown-white a img {
        width: 22px;
        height: 22px;
        border-radius: 50%;
    }

    .country-dropdown-white li:hover,
    .country-dropdown-white a:hover {
        background: var(--primary);
        color: white;
    }

/* Responsive */
@media (max-width: 768px) {
    .country-btn-white {
        font-size: 14px;
    }

        .country-btn-white::after {
            content: "";
            margin: 0 10px;
            height: 15px;
            border: 0.5px solid #fff;
        }
}

.action-btn-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}


.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .action-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( 45deg, transparent, rgba(255, 255, 255, 0.3), transparent );
        transform: translateX(-100%);
        transition: transform 0.6s;
    }

    .action-btn:hover::before {
        transform: translateX(100%);
    }



.quote-btn:hover {
    background: linear-gradient(90deg, #ffe39c, #ffc247, #ffb326);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(62, 197, 170, 0.3);
}

.demo-btn {
    background: var(--gradient-accent);
    color: white;
}

    .demo-btn:hover {
        background: var(--accent-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 107, 139, 0.3);
    }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .mobile-toggle:hover {
        background: var(--primary);
        color: white;
    }

.mobile-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 5000; /* Highest */
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none; /* default — hide */
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.nav-menu.active + .mobile-close-btn {
    display: flex;
}

/* ============================================  Hero Section ============================================ */

.hero-section {
    padding-top: clamp(120px, 16vw, 250px);
    background-color: var(--primary-light);
}


    .hero-section p {
        width: fit-content;
        font-size: clamp(16px, 4vw, 20px);
        padding-bottom: 10px;
        border-bottom: 2px solid var(--dark);
    }

.band {
    background-color: var(--dark);
    color: wheat;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: #f6f9fb;
    border-radius: 999px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.icon-wrap {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    color: var(--primary);
}

/* === Seamless Scrolling Band === */
.scroll-band {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #0b0b0b, #111827);
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trusted-wrap {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

    .avatar-stack img,
    .avatar-more {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 3px solid #ffffff;
        margin-left: -14px;
        background: #e5e7eb;
    }

        .avatar-stack img:first-child {
            margin-left: 0;
        }

    .avatar-stack img {
        object-fit: cover;
    }

.avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
}

.trusted-text {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.hero-canvas-wrapper {
    height: 550px;
    background: radial-gradient( circle at center, rgba(45, 206, 154, 0.05) 0%, transparent 70% );
    overflow: visible !important;
}

#neuralCanvas {
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.ai-interaction-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none; /* Mouse canvas tak pahunche */
}

.glass-orb {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #2dce9a;
    box-shadow: 0 0 40px rgba(45, 206, 154, 0.3);
    animation: pulseOrb 4s infinite ease-in-out;
}

@keyframes pulseOrb {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(45, 206, 154, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 80px rgba(45, 206, 154, 0.6);
    }
}

.typing-container {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-family: "Monaco", monospace;
    font-size: 14px;
    border-left: 4px solid #2dce9a;
}

#dynamic-medical-text {
    color: #2dce9a;
}

/* Track Container */
.scroll-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    animation: continuousScroll 25s linear infinite;
}

    /* Text Span */
    .scroll-track span {
        color: #ffffff;
        font-size: clamp(16px, 1.4vw, 22px);
        font-weight: 600;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        display: inline-block;
        animation: glowPulse 2s ease-in-out infinite alternate;
    }

/* Subtle glow breathing animation */

/* Perfect continuous scroll */
@keyframes continuousScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
    }
}

/* Pause on Hover */
.scroll-band:hover .scroll-track {
    animation-play-state: paused;
}

/* Responsive Tuning */
@media (max-width: 768px) {
    .scroll-track span {
        font-size: 14px;
        padding-right: 2rem;
    }

    .scroll-track {
        animation-duration: 30s;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    /* Base gradient (VERY IMPORTANT) */
    background: radial-gradient( circle at 70% 40%, rgba(45, 206, 154, 0.12), transparent 55% ), linear-gradient(120deg, #ffffff 0%, #f4fbf9 45%, #e9f7f3 70%, #def3ee 100%);
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: radial-gradient(circle at 65% 45%, black 40%, transparent 75%);
        pointer-events: none;
        z-index: 0;
    }

    .hero-section > * {
        position: relative;
        z-index: 1;
    }

@media (max-width: 768px) {
    .hero-section::before {
        opacity: 0.4;
    }
}

/* ============================================
   After Banner Section
============================================ */

.after-banner {
    width: 100%;
    height: auto;
}

    .after-banner .feature-items-1 {
        position: relative;
        background: white;
        padding: clamp(30px, 5vw, 50px);
        height: 100%;
        border-radius: 30px;
        z-index: 99;
    }

        .after-banner .feature-items-1 .ht-shape-btn svg path {
            fill: var(--themeht-light-color) !important;
        }

.featured-number span {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: bold;
    color: var(--themeht-text-color);
}

.feature-items-1 .featured-icon {
    display: inline-block;
    position: absolute;
    right: 50px;
    bottom: 50px;
}

.feature-items-1 .ht-shape-btn svg {
    fill: #f9fafb;
    position: absolute;
    top: 0;
    right: 0;
}

.feature-items-1 .featured-number {
    width: clamp(55px, 8vw, 70px);
    height: clamp(55px, 8vw, 70px);
    position: absolute;
    top: -20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--light);
    right: -20px;
}

.feature-items-1 .featured-title {
    font-size: clamp(22px, 3vw, 32px);
    border-bottom: 1px solid var(--gray);
    margin-bottom: clamp(15px, 4vw, 30px);
    padding-bottom: clamp(15px, 4vw, 30px);
}

    .feature-items-1 .featured-title h2 {
        margin-bottom: 0;
        text-transform: capitalize;
    }

/* ============================================
   About Us Section
============================================ */

.about-us p {
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 20px;
}

    .about-us p:last-child {
        border-bottom: none;
    }

.parallax-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 254 242"><path d="M109.727 0.5H225.143C229.524 0.500169 233.337 3.49618 234.373 7.75293L248.004 63.7529C249.46 69.7344 244.93 75.5 238.773 75.5H123.357C118.976 75.4998 115.163 72.5038 114.127 68.2471L100.496 12.2471C99.0401 6.2656 103.57 0.5 109.727 0.5Z" fill="white"/><path d="M111.727 241.5H227.143C231.524 241.5 235.337 238.504 236.373 234.247L250.004 178.247C251.46 172.266 246.93 166.5 240.773 166.5H125.357C120.976 166.5 117.163 169.496 116.127 173.753L102.496 229.753C101.04 235.734 105.57 241.5 111.727 241.5Z" fill="white"/><rect x="116.5" y="83.5" width="137" height="75" rx="9.5" fill="white"/><path d="M9.97461 0.5C25.6687 0.500081 56.9041 0.500189 81.8008 0.5C85.8906 0.500058 89.5282 3.12714 90.751 7.02148C121.41 104.667 109.279 193.555 91.1211 236.147C89.7066 239.465 86.3946 241.5 82.7559 241.5H10C4.75331 241.5 0.5 237.247 0.5 232V10C0.500043 4.75175 4.72967 0.500116 9.97461 0.5Z" fill="white"/></svg>');
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 254 242"><path d="M109.727 0.5H225.143C229.524 0.500169 233.337 3.49618 234.373 7.75293L248.004 63.7529C249.46 69.7344 244.93 75.5 238.773 75.5H123.357C118.976 75.4998 115.163 72.5038 114.127 68.2471L100.496 12.2471C99.0401 6.2656 103.57 0.5 109.727 0.5Z" fill="white"/><path d="M111.727 241.5H227.143C231.524 241.5 235.337 238.504 236.373 234.247L250.004 178.247C251.46 172.266 246.93 166.5 240.773 166.5H125.357C120.976 166.5 117.163 169.496 116.127 173.753L102.496 229.753C101.04 235.734 105.57 241.5 111.727 241.5Z" fill="white"/><rect x="116.5" y="83.5" width="137" height="75" rx="9.5" fill="white"/><path d="M9.97461 0.5C25.6687 0.500081 56.9041 0.500189 81.8008 0.5C85.8906 0.500058 89.5282 3.12714 90.751 7.02148C121.41 104.667 109.279 193.555 91.1211 236.147C89.7066 239.465 86.3946 241.5 82.7559 241.5H10C4.75331 241.5 0.5 237.247 0.5 232V10C0.500043 4.75175 4.72967 0.500116 9.97461 0.5Z" fill="white"/></svg>');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    overflow: hidden;
}

.parallax-image {
    width: 100%;
    height: 200%;
    background-image: url("../../../assets/new/images/full-shot-doctors-discussing-work.webp");
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    transition: transform 0.05s linear;
}

/* =============================================
   Servises section
================================================ */
/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: clamp(20px, 5vw, 50px);
    background: white;
    border-radius: 30px;
}

.service-item {
    border-bottom: 1px solid var(--gray);
    padding: clamp(20px, 5vw, 50px) clamp(10px, 3vw, 20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

    .service-item:last-child {
        border-bottom: none;
    }

    .service-item img {
        z-index: 9999;
        position: absolute;
        top: -30%;
        left: 50%;
    }

    .service-item:hover {
        transform: translateY(-5px);
    }

.service-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-image {
    width: 300px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    margin-left: clamp(10px, 3vw, 30px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(20px);
}

.service-item:hover .service-image {
    opacity: 1;
    transform: translateX(0);
}

.service-item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::after {
    opacity: 1;
}

/* ============================================
   How It Works Section
============================================ */
.infoGraphic .step-item {
    overflow: hidden;
    position: relative;
    /* background: var(--bg1); */
    background-color: var(--dark);
    border-radius: 0.5em;
    padding: clamp(0.3em, 1vw, 0.5em);
    z-index: 1;
    transition: all 0.2s;
    height: 100%;
    margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
}

.numberWrap {
    position: relative;
}

.number {
    font-size: 12em;
    font-weight: 900;
    width: 0.9em;
    text-align: center;
}

.fontColor1 {
    /* color: var(--blue); */
    color: var(--primary);
}

.fontColor2 {
    /* color: var(--green); */
    color: var(--primary);
}

.fontColor3 {
    /* color: var(--purple); */
    color: var(--primary);
}

.coverWrap {
    transform: rotate(130deg);
    position: absolute;
    width: 18em;
    height: 15em;
    left: -3em;
    top: 2em;
}

.numberCover {
    position: absolute;
    background: var(--bg1);
    width: 18em;
    height: 6em;
    border-radius: 50% 50% 0 0;
    border-bottom: 3px solid var(--dark);
    transition: all 0.4s;
}

    .numberCover::before {
        position: absolute;
        content: "";
        bottom: 5px;
        left: 4em;
        right: 4em;
        top: 5em;
        box-shadow: 0 0 30px 17px #48668577;
        border-radius: 100px / 10px;
        z-index: -1;
    }

    .numberCover::after {
        position: absolute;
        bottom: 0;
        content: "";
        left: -10%;
        width: 120%;
        height: 150%;
        /* background: radial-gradient(
                at bottom,
                #48668533,
                transparent,
                transparent
            ); */
        background-color: var(--dark);
        z-index: 1;
    }

.infoGraphic .step-item:hover .coverWrap .numberCover {
    border-radius: 100%;
}

.content {
    margin: 8em 3em 1em 7em;
    position: relative;
}

    .content p {
        line-height: 1.5em;
        text-align: center;
    }

.icon {
    position: absolute;
    font-size: 2rem;
    text-align: center;
    top: -1.3em;
    left: 50%;
    transform: translatex(-50%);
    color: #666;
}

/* ============================================
   Testimonials Section
============================================ */

.testimonials {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, #fdf2ff 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    position: relative;
}

    .testimonial-card:before {
        content: '"';
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 80px;
        color: var(--primary);
        opacity: 0.1;
        font-family: serif;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.testimonial-content {
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

    .author-avatar:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        opacity: 0.1;
    }

.author-details h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.author-details p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Custom Colors */
.text-dark-blue {
    color: #0b2144;
}

.text-aqua {
    color: #66ced6;
}

.bg-light-gray-subtle {
    background-color: #f8f8f8;
}

.text-dark-blue-subtle {
    color: #364a63;
}

/* 1. Collage Container Setup (HEIGHT OPTIMIZED) */
.collage-container {
    width: 1200px;
    height: 700px; /* Reduced Height for better flow */
    max-width: 95%;
    margin-bottom: 100px;
    position: relative;
}

/* 2. Collage Item Base Styling */
.collage-item {
    position: absolute;
    min-height: 150px; /* Text Safety */
    background-color: white;
    border: 2px solid #66ced6;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    z-index: 5;
    box-shadow: 6px 6px 0px rgba(102, 206, 214, 0.5);
}

    .collage-item:hover {
        transform: translate(-3px, -3px);
        box-shadow: 10px 10px 0px rgba(102, 206, 214, 0.8), 0 0 15px rgba(11, 33, 68, 0.1);
        z-index: 10;
    }

/* 3. SHAPE VARIATIONS */
.square {
    border-radius: 10px;
}

.square-small {
    border-radius: 10px;
}

.pill {
    border-radius: 50px;
}

.rect-wide {
    border-radius: 5px;
}

.rect-tall {
    border-radius: 10px;
}

/* 4. ASYMMETRICAL POSITIONS, SIZES & ROTATIONS (CONTROLLED FLOW) */
/* The "top" values are carefully calculated for reduced height and organized overlap. */

/* Row 1 (Top Left/Right) */
.item-1 {
    width: 320px;
    min-height: 220px;
    top: 0%;
    left: 0%;
    transform: rotate(-2deg);
    z-index: 20;
}

.item-2 {
    width: 300px;
    min-height: 198px;
    top: 5%;
    right: 10%;
    transform: rotate(1deg);
    z-index: 15;
}

/* Row 2 (Middle Left/Right) */
.item-3 {
    width: 380px;
    min-height: 180px;
    top: 0%;
    left: 31%;
    border-radius: 50px;
    transform: rotate(4deg);
    z-index: 25;
}

.item-4 {
    width: 300px;
    min-height: 180px;
    top: 45%;
    right: 0%;
    transform: rotate(-1deg);
    z-index: 10;
}

/* Row 3 (Lower Middle Left/Right) */
.item-5 {
    width: 300px;
    min-height: 320px;
    top: 35%;
    left: 0%;
    transform: rotate(2deg);
    z-index: 30;
}

.item-6 {
    width: 250px;
    min-height: 180px;
    top: 55%;
    right: 25%;
    transform: rotate(-4deg);
    z-index: 5;
}

/* Row 4 (Bottom Left/Right, Final Elements) */
.item-7 {
    width: 400px;
    min-height: 150px;
    top: 30%;
    left: 30%;
    border-radius: 50px;
    transform: rotate(1deg);
    z-index: 15;
}

.item-8 {
    width: 250px;
    min-height: 200px;
    top: 55%;
    left: 28%;
    transform: rotate(-5deg);
    z-index: 20;
}

/* 5. The BOLD OVERLAP NUMBER */
.collage-number {
    position: absolute;
    font-size: 8vw;
    font-weight: 900;
    opacity: 0.1;
    z-index: 0;
    top: -10px;
    left: -10px;
    line-height: 1;
}

.item-5 .collage-number {
    top: -20px;
    left: -10px;
}

.item-3 .collage-number {
    top: 0px;
    left: 10px;
}

/* 6. Mobile Responsiveness (Ensures stacking) */
@media (max-width: 992px) {
    .collage-container {
        height: auto;
        padding: 0 10px;
    }

    .collage-item {
        position: relative;
        width: 100%;
        min-height: auto;
        height: auto;
        margin-bottom: 10px;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none;
        box-shadow: 4px 4px 0px rgba(102, 206, 214, 0.5);
        z-index: auto;
        border-radius: 10px;
    }

    .collage-number {
        font-size: 15vw;
        top: 0px;
        left: 10px;
        opacity: 0.05;
    }
}

/* ============================================
   CTA Section
============================================ */

.cta {
    position: relative;
    min-height: 600px;
    max-height: 700px;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    color: white;
}

.cta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../../assets/new/images/doctor-nurses-special-equipment.png");
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: translateZ(0);
}

.cta .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.cta .btn {
    background: white;
    color: #3ec5aa;
    font-weight: 700;
    padding: clamp(10px, 1.5vw, 18px) clamp(20px, 3vw, 40px);
    border-radius: clamp(25px, 5vw, 50px);
    box-shadow: 0 clamp(8px, 1vw, 15px) clamp(15px, 2vw, 30px) rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cta .btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.cta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* ============================================
    Footer Section
============================================ */

footer {
    background: var(--dark);
    color: white;
    position: relative;
}

.logo-footer {
    background-color: white;
    width: fit-content;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

    .logo-footer img {
        width: 100%;
        height: 40px;
    }

.footer-contact-row-box {
    background: #272e3f;
    border-radius: 10px;
    padding: 20px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-links a i {
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: white;
    }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .social-links a {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s;
        font-size: 1.2rem;
    }

        .social-links a:hover {
            background: var(--gradient); /* Assuming --gradient is defined */
            transform: translateY(-3px);
        }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ============================================
   Book a Demo Popup
============================================ */

.book-btn {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .book-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

#calendly-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

    #calendly-popup.active {
        display: flex;
        opacity: 1;
    }

.popup-content {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 75%;
    max-width: 800px;
    height: 70%;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    animation: popupIn 0.4s ease forwards;
}

@keyframes popupIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    font-size: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

    .close-btn:hover {
        background: rgba(255, 0, 70, 0.5);
        transform: rotate(90deg);
    }

.calendly-inline-widget {
    border-radius: 0 0 20px 20px;
    height: 100%;
}

/* ============================================
   Additional Styles
============================================ */

/* Demo Content */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

    .content h1 {
        color: var(--dark);
        margin-bottom: 20px;
    }

    .content p {
        margin-bottom: 15px;
        line-height: 1.6;
    }

/* Book a Demo Button Animation */
.book-demo {
    width: 300px;
    padding: 20px 20px;
    background: #000;
    color: #fff;
    font-family: monospace;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    overflow: hidden;
    animation: glow linear 2s infinite;
    position: relative;
}

    .book-demo::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        aspect-ratio: 1/1;
        width: 150%;
        height: auto;
        border-radius: 50%;
        background: conic-gradient(#fff 0%, #000 3%, #409 60%, #fff 100%);
        animation: spin linear 2s infinite;
        transform: translate(-50%, -50%);
    }

    .book-demo::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc(100% - var(--border));
        height: calc(100% - var(--border));
        background: #000d;
        transform: translate(-50%, -50%);
        border-radius: var(--radius);
        backdrop-filter: blur(10vh);
    }

    .book-demo span {
        display: block;
        width: 100%;
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: "Geo", monospace;
        font-size: 12.5vh;
        text-transform: uppercase;
    }

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes glow {
    0% {
        border: 0 transparent solid;
    }

    25% {
        border: 15px #4094 solid;
    }

    50% {
        border: 30px transparent solid;
    }

    100% {
        border: 0 transparent solid;
    }
}

/* ============================================
   Blog Section
============================================ */

.our-blog {
    width: 100%;
    height: auto;
}

.tr-blog-cards-wrap {
    margin: clamp(20px, 4vw, 50px) 0 0;
    z-index: 2;
    position: relative;
}

.blog-main-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.tr-content-inner {
    width: 100%;
    height: 100%;
    color: #fff;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transition: 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 30px;
}

.tr-content-front,
.tr-content-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 10px;
}

.tr-content-front {
    transform: rotateY(0deg);
    z-index: 2;
}

.tr-content-back {
    transform: rotateY(180deg);
    z-index: 1;
}

.tr-content-inner:hover .tr-content-front {
    transform: rotateY(-180deg);
}

.tr-content-inner:hover .tr-content-back {
    transform: rotateY(0deg);
}

.tr-content-inner > * {
    backface-visibility: hidden;
    transition: 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tr-content-inner .tr-content-front,
.tr-content-inner .tr-content-back {
    transform-style: preserve-3d;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 34px 0px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
}

.tr-content-front {
    display: block;
    background: url("../../../assets/new/images/portrait-female-pediatrician-work.jpg");
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}

.tr-content-back .tr-inner {
    align-items: stretch;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translateZ(95px) scale(0.81);
    text-align: center;
    position: relative;
    z-index: 2;
}

.tr-content-inner .tr-content-back {
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .tr-content-inner .tr-content-back .tr-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: column;
    }

.tr-content-inner .tr-inner-top-wrapper {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.tr-content-inner .tr-inner-bottom-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.tr-content-inner figure {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tr-content-inner figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

.tr-content-inner .tr-inner-top-wrapper span {
    padding: 15px;
    background-color: var(--light);
    border-radius: 100%;
}

.tr-content-inner .tr-cf-inner {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    width: 100%;
    padding: 20px 20px;
    position: relative;
    background: white;
    border-radius: 30px;
    background-color: var(--light);
}

.blog-text-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.2em;
    line-height: 1.6em;
}

.tr-content-inner .tr-cf-inner .ht-shape-btn svg {
    border-radius: 20px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    fill: var(--primary);
    position: absolute;
    top: 0;
    right: 0;
}

.tr-content-inner .tr-cf-inner .featured-number {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--light);
    right: -20px;
}

.tr-content-inner .tr-cf-inner .tr-fs-wrapper {
    border-radius: 10px;
}

.tr-content-inner .tr-cf-inner .tr-inner {
    align-items: stretch;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translateZ(95px) scale(0.81);
    text-align: center;
    position: relative;
    z-index: 2;
}

.tr-content-inner .tr-cf-inner .blog-icon-wrapper {
    color: #000;
    margin-top: 25px;
}

.tr-content-inner .tr-cf-inner .tr-inner p {
    color: #fff;
    text-align: center;
}

.tr-content-back:after {
    position: absolute;
    content: "\25CF\25CF\25CF";
    width: 50px;
    left: 50%;
    bottom: 30px;
    margin-left: -25px;
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--light);
}

.tr-content-inner .tr-cf-inner .tr-inner h3 {
    position: relative;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    margin-bottom: 0;
}

.tr-content-inner .tr-cf-inner .tr-inner h2:after {
    content: "";
    position: absolute;
    top: -20px;
    margin-left: -25px;
    left: 50%;
    width: 50px;
    height: 1px;
    background: var(--main-color);
}

.tr-content-inner .tr-content-front h4 {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 4px;
}

.tr-single-slider-wrap img {
    width: 100%;
    height: auto;
}

.tr-content-inner .tr-content-front .tr-section-separator:before,
.tr-content-inner .tr-content-front .tr-section-separator:after {
    background: rgba(255, 255, 255, 0.3);
}

.tr-wide-section {
    z-index: 4;
}

/* ============================================   Inner Page Hero Section ============================================ */
.creative-hero-section {
    margin-top: clamp(0px, 10vw, 140px);
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #3ec5aa 0%, #29a88c 50%, #153e47 100%);
    display: flex;
    align-items: center;
    padding: 50px 0;
    overflow: hidden;
}

.hero-image-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 30% 100%);
}

    .hero-image-corner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
    }

.hero-content-box {
    position: relative;
    z-index: 10;
    max-widh: 600px;
    width: fit-content !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 60px;
    color: white;
    /*width: fit-content;*/
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transform: skewX(-5deg);
}

    .hero-content-box > * {
        transform: skewX(5deg);
    }

    .hero-content-box h1 {
        color: var(--white);
        font-size: clamp(30px, 6vw, 44px);
        font-weight: 700;
        letter-spacing: 2px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        margin-bottom: 5px;
        margin-bottom: 20px;
        word-wrap: break-word;
        line-height: 1.1;
        max-width: 100%;
    }



    .hero-content-box .heading-span {
        color: var(--white);
        font-size: clamp(30px, 6vw, 44px);
        font-weight: 700;
        letter-spacing: 2px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        margin-bottom: 5px;
        margin-bottom: 20px;
        word-wrap: break-word;
        line-height: 1.1;
        max-width: 100%;
    }

.custom-breadcrumb {
    --bs-breadcrumb-divider: "—";
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    color: white;
    width: fit-content !important;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3), 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: skewX(-5deg);
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .custom-breadcrumb .breadcrumb-item {
        position: relative;
        color: #ffffff;
        transition: all 0.3s ease;
    }

        .custom-breadcrumb .breadcrumb-item a {
            color: inherit;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }

            .custom-breadcrumb .breadcrumb-item a:hover {
                color: #ffcc00;
            }

        .custom-breadcrumb .breadcrumb-item.active {
            color: #ffffff;
            font-weight: 600;
            font-size: 18px;
        }

        .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            margin: 0 8px;
            color: #ffffff80;
            transition: all 0.3s ease;
        }

.breadcrumb {
    margin-bottom: 0;
}

.custom-breadcrumb .breadcrumb-item:hover::before {
    color: #ffcc00;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .creative-hero-section {
        margin-top: 100px;
    }
    /* tablets */
    .custom-breadcrumb {
        padding: 8px 16px;
        font-size: 1.1rem;
        gap: 8px;
    }

        .custom-breadcrumb .breadcrumb-item a {
            font-size: 1.1rem;
            padding: 5px 8px;
        }

        .custom-breadcrumb .breadcrumb-item.active {
            font-size: 1.2rem;
        }
}

@media (max-width: 768px) {
    .creative-hero-section {
        margin-top: 130px;
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    .creative-hero-section {
        margin-top: 100px;
    }


    .hero-content-box {
        padding: 20px 30px;
    }

    .custom-breadcrumb .breadcrumb-item a {
        color: inherit;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 10px;
        transition: all 0.3s ease;
    }

    .custom-breadcrumb .breadcrumb-item.active {
        color: #ffffff;
        font-weight: 600;
        font-size: 10px;
    }

    .custom-breadcrumb {
        padding: 6px 12px;
        font-size: 1rem;
        gap: 6px;
        transform: skewX(0deg); /* remove skew on small screens for clarity */
        width: 100%;
    }

        .custom-breadcrumb .breadcrumb-item a {
            font-size: 10px;
            padding: 4px 6px;
        }



        .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            margin: 0 4px;
        }
}


/* ============================================
             About Us Page
============================================ */

.glitch-image-box {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    transform: rotate(-3deg) translateY(20px);
    box-shadow: 15px 15px 0px var(--dark);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

    .glitch-image-box:hover {
        transform: rotate(-2deg) translateY(15px);
        box-shadow: 10px 10px 0px var(--dark);
    }

    .glitch-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.glitch-statement-block {
    position: relative;
    z-index: 10; /* Ensure it overlaps the image */
    background-color: #ffffff;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 10px;
    border: 2px solid var(--dark); /* Red/Error border for high contrast */
    box-shadow: -10px -10px 0px var(--dark); /* Offset blue shadow */
    /* Key Abstract Styling */
    transform: rotate(2deg) translateX(-10px); /* Rotate slightly clockwise, offset left */
    margin-top: clamp(-80px, -10vw, -150px);
    transition: all 0.4s ease-in-out;
}

    .glitch-statement-block:hover {
        transform: rotate(1deg) translateX(-5px);
        box-shadow: -5px -5px 0px var(--dark);
    }

    .glitch-statement-block p {
        font-weight: 300;
        line-height: 1.6;
    }

.glitch-feature-item {
    padding: 20px 0;
    border-bottom: 1px dashed #040404; /* Dashed separator */
}

    .glitch-feature-item:last-child {
        border-bottom: none;
    }

.glitch-list-block {
    padding-top: clamp(60px, 8vw, 100px);
    padding-left: clamp(20px, 5vw, 50px);
    border-left: 3px solid var(--dark);
}

/* ============================================
             Contact us Page
============================================ */
.contact-us-container {
    max-width: 900px;
    position: sticky;
    top: 100px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 8px 16px rgba(0, 0, 0, 0.04), 0 24px 48px rgba(34, 139, 114, 0.08);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
    border: 1px solid rgba(34, 139, 114, 0.08);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Header Section */
.contact-us-header {
    background-color: var(--primary);
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contact-us-header::before,
    .contact-us-header::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        animation: float 6s ease-in-out infinite;
    }

    .contact-us-header::before {
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
    }

    .contact-us-header::after {
        bottom: -30%;
        left: -5%;
        width: 200px;
        height: 200px;
        animation-delay: 1s;
    }

    .contact-us-header h2 {
        color: white;
    }

    .contact-us-header p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.05rem;
        position: relative;
        z-index: 1;
    }

/* Form Content */
.form-content {
    padding: 2.5rem;
}

/* Progress Bar */
.progress-bar {
    height: 4px;
    background: #e8f3ef;
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #228b72 0%, #34a889 100%);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* Form Sections */
.form-section {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 0.2s;
}

.form-group {
    margin-bottom: 1.75rem;
}

/* Labels */
label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2e27;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.required {
    color: #228b72;
    margin-left: 2px;
}

/* Form Inputs */
input,
select,
textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 2px solid #dae8e3;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fdfb;
    color: #1a2e27;
}

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: var(--primary);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(34, 139, 114, 0.1), 0 2px 8px rgba(34, 139, 114, 0.08);
        transform: translateY(-1px);
    }

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #228b72 0%, #1a7560 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    box-shadow: 0 4px 12px rgba(34, 139, 114, 0.3);
    margin-top: 1rem;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 139, 114, 0.4);
    }

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.6s ease-out;
}

    .success-message.active {
        display: block;
    }

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #228b72 0%, #34a889 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

    .success-icon::after {
        content: "✓";
        font-size: 2.5rem;
        color: #fff;
    }

.success-message h2 {
    font-family: "Fraunces", serif;
    font-size: 2rem;
    color: #1a2e27;
    margin-bottom: 0.75rem;
}

.success-message p {
    color: #2d5a4d;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Dropdown Styling */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
}

/* Responsive Design */
@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-group {
        margin-bottom: 10px;
    }
}

/* ============================================
             Get a Qoute Page
============================================ */
.quote-section {
    width: 100%;
    height: auto;
}

.quote-form-container-wrapper {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04), 0 24px 48px rgba(34, 139, 114, 0.08);
    overflow: hidden;
    border: 1px solid rgba(34, 139, 114, 0.08);
    height: 100%;
}

.main-quote-row {
    min-height: 700px;
}

.promotional-graphic-side {
    position: sticky;
    top: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04), 0 24px 48px rgba(34, 139, 114, 0.08);
    background-color: var(--dark);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 24px;
    height: fit-content;
}

    .promotional-graphic-side h3 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        font-weight: 700;
    }

    .promotional-graphic-side p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .promotional-graphic-side ul {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
        text-align: left;
        width: 100%;
        max-width: 300px;
    }

        .promotional-graphic-side ul li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1rem;
            opacity: 0.9;
        }

            .promotional-graphic-side ul li i {
                color: #ffe66d;
                margin-right: 15px;
                font-size: 1.2rem;
            }

.hero-banner-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

    .hero-banner-text .red-text {
        color: var(--red-accent);
    }

.tat-selection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

    .tat-selection label {
        margin: 0;
    }

    .tat-selection input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .tat-selection .tat-button {
        display: block;
        text-align: center;
        padding: 10px 5px;
        border: 2px solid #dae8e3;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        color: var(--dark);
    }

    .tat-selection input[type="radio"]:checked + .tat-button {
        border-color: var(--primary);
        background-color: var(--primary);
        color: white;
        box-shadow: 0 4px 8px rgba(34, 139, 114, 0.2);
    }

.toggle-options {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.toggle-item {
    display: flex;
    align-items: flex-start;
    flex-grow: 1;
}

    .toggle-item .toggle-label {
        margin-left: 15px;
        line-height: 1.4;
        color: var(--dark);
        font-weight: 400;
        font-size: 0.95rem;
    }

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-quote-row {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .promotional-graphic-side {
        border-radius: 24px 24px 0 0;
        min-height: 300px;
    }

    .quote-form-container-wrapper {
        border-radius: 0 0 24px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

        .form-row.mobile-input {
            display: grid;
            grid-template-columns: 120px 1fr;
        }

    .tat-selection {
        grid-template-columns: repeat(2, 1fr);
    }

    .toggle-options {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .form-content {
        padding: 1.5rem;
    }

    .form-row.mobile-input {
        grid-template-columns: 1fr;
    }

        .form-row.mobile-input select {
            margin-bottom: 0.5rem;
            width: 100%;
        }

    .tat-selection {
        grid-template-columns: 1fr;
    }

    .promotional-graphic-side {
        padding: 2rem;
    }

        .promotional-graphic-side h3 {
            font-size: 2rem;
        }
}

/* ============================================
             Blog us Page
============================================ */
.blog-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sidebar-pearl {
    position: sticky;
    top: 150px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.sidebar-heading-pearl {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

/* 1. Search Design: Soft Input (unchanged) */
.search-input-pearl {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.75rem;
    background-color: white;
    color: var(--main-color);
}

.search-btn-pearl {
    background-color: var(--accent-color);
    color: white;
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    width: 100%;
    margin-top: 10px;
    font-weight: 600;
    transition: opacity 0.2s;
}

    .search-btn-pearl:hover {
        opacity: 0.85;
    }

/* 2. Categories Design: Pearl Buttons (unchanged) */
.category-list-pearl {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.category-link-pearl {
    background-color: var(--white);
    color: var(--main-color);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .category-link-pearl:hover {
        background-color: var(--primary);
        color: var(--dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(247, 160, 179, 0.4);
    }

/* 3. Recent Posts Design: Floating Cards (unchanged) */
.recent-list-floating {
    list-style: none;
    padding: 0;
}

.recent-item-floating {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-left: 5px solid transparent;
}

    .recent-item-floating:hover {
        background-color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-left-color: var(--accent-color);
    }

.recent-link-floating {
    color: var(--main-color);
    text-decoration: none;
    display: block;
}

.recent-title-floating {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.recent-date-floating {
    font-size: 0.8rem;
    color: var(--light-text);
    display: block;
    margin-top: 3px;
}

.search-container-mag {
    background-color: #f8f9fa;
    padding: 1rem;
    border: 1px solid #eee;
    margin-bottom: 3rem;
}

.search-input-mag {
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 0.5rem;
}

.search-btn-mag {
    background-color: var(--primary);
    color: white;
    border-radius: 0;
    transition: background-color 0.2s;
    width: fit-content;
    height: 100%;
}

    .search-btn-mag:hover {
        background-color: var(--accent-color);
    }

/* 5. LIQUID PEARL PAGINATION STYLES (NEW) */
.pagination-pearl .page-item {
    margin: 0 4px;
}

.pagination-pearl .page-link {
    border: 1px solid #ddd;
    border-radius: 50px;
    color: var(--main-color);
    font-weight: 500;
    transition: all 0.3s;
    padding: 10px 15px;
}

.pagination-pearl .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.pagination-pearl .page-link:hover:not(.active) {
    background-color: rgba(247, 160, 179, 0.2);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* ===============================
           opththalmology Transcription start
           =============================== */

.text-accent-gold {
    color: var(--primary) !important;
}

.text-accent-teal {
    color: var(--primary) !important;
}

.text-accent-red-dot {
    color: var(--accent-red-dot);
}

.text-dark-section {
    color: var(--dark-section);
}

.text-dark-base {
    color: var(--dark-base);
}

.text-dark-base-soft {
    color: var(--dark-base-soft);
}

.letter-spacing-wide {
    letter-spacing: 2px;
}

.text-block {
    display: block;
    transition: color 0.3s;
}

    .text-block:hover {
        color: var(--primary);
    }

.line-divider {
    width: 60px;
    height: 1px;
    background-color: var(--dark-gray);
    margin: 10px auto 0;
}

/* ===============================
           Geometric Section
           =============================== */
.section-bg,
.geometric-shape-bg {
    background: linear-gradient( 135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 255, 255, 0) 70% );
    clip-path: polygon(0 0, 70% 0, 40% 100%, 0% 100%);
}

.geometric-shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
}

#itranscript-geometric .container {
    position: relative;
    z-index: 1;
}

.data-point-geometric {
    padding: 15px 0 15px 15px;
    border-left: 5px solid var(--dark-gray);
    margin-bottom: 10px;
}

/* ===============================
           Artistic Section
           =============================== */
#ophthalmology-artistic {
    background-color: var(--light-section);
    font-family: "Georgia", serif;
}

.bg-dark-section {
    background-color: var(--dark-section);
}

.bg-light-section {
    background-color: var(--light-section);
}

.bg-black-lighter {
    background-color: var(--black-lighter);
}

.vertical-text {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: 0 0;
    letter-spacing: 5px;
    font-size: 0.9rem;
    opacity: 0.3;
}

.report-list-artistic li {
    padding: 6px 0;
    border-bottom: 1px dotted #ccc;
    font-size: 1.05rem;
    transition: color 0.3s;
}

    .report-list-artistic li:hover {
        color: var(--primary);
    }

.compliance-box-artistic {
    background-color: var(--dark-section);
    color: var(--light-section);
    border: 2px solid var(--primary);
    letter-spacing: 1px;
}

/* ===============================
           Minimalist Section
           =============================== */
.blockquote-minimal {
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 10px;
}

.detail-section {
    border-bottom: 1px solid var(--line-color);
}

.report-item-minimal {
    background-color: #fff;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
    color: var(--dark-gray);
    border-bottom: 1px solid var(--line-color);
    transition: background-color 0.3s, color 0.3s;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

    .report-item-minimal:hover {
        background-color: #fafafa;
        color: var(--accent-red-dot);
        cursor: pointer;
    }

.text-vertical-accent {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.3em;
    position: relative;
    left: 20px;
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
}

/* ===============================
           Split Gallery Section
           =============================== */
#transcription-split-gallery {
    background-color: var(--light);
    font-family: "Poppins", sans-serif;
}

.bg-ai-light {
    background-color: var(--ai-light);
}

.bg-ai-light-dark {
    background-color: var(--light);
}

.bg-manual-dark {
    background-color: var(--manual-dark);
}

.bg-manual-dark-light {
    background-color: var(--manual-dark-light);
}

.text-ai-teal {
    color: var(--primary) !important;
}

.text-manual-yellow {
    color: var(--manual-yellow) !important;
}

.border-ai-teal {
    border-color: var(--primary) !important;
}

.border-manual-yellow {
    border-color: var(--manual-yellow) !important;
}

.split-gallery-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-list-ai li,
.process-list-manual li {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.4;
    color: white;
}

.step-icon {
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.split-gallery-container:hover .split-ai {
    transform: translateX(-5px);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);
}

.split-gallery-container:hover .split-manual {
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}

/* ===============================
           Accordion Section
           =============================== */
.process {
    padding: clamp(2rem, 5vw, 4.375rem) 0;
}

.process__intro {
    margin-bottom: clamp(2rem, 5vw, 5rem);
}

.process__title {
    flex-shrink: 0;
}

.process__text {
    max-width: 18.25rem;
}

.accordions__list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.accordions__item {
    background-color: #f3f3f3;
    border-radius: 2.8rem;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
    box-shadow: 0 5px 0 #191a23;
    border: 1px solid #191a23;
}

.accordions__control {
    display: flex;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 3vw, 1.875rem);
    width: 100%;
    cursor: pointer;
    border: none;
    background: transparent;
    text-align: left;
}

.accordions__number {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 2.1875rem);
    padding-right: clamp(0.75rem, 1.5vw, 1.5625rem);
    font-weight: 500;
}

.accordions__title {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.875rem);
    font-weight: 500;
    text-transform: capitalize;
    flex: 1;
    line-height: 120%;
    text-align: left;
}

.accordions__icon {
    flex: 0 0 clamp(2rem, 3vw + 0.5rem, 3.625rem);
    width: clamp(2rem, 3vw + 0.5rem, 3.625rem);
    height: clamp(2rem, 3vw + 0.5rem, 3.625rem);
    background-color: #f3f3f3;
    border: 1px solid #191a23;
    border-radius: 50%;
    position: relative;
    transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
}

    .accordions__icon::before,
    .accordions__icon::after {
        content: "";
        width: clamp(0.9375rem, 1.5vw + 0.5rem, 1.5625rem);
        height: 0.3125rem;
        background-color: var(--primary);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .accordions__icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.accordions__content {
    padding: 0 clamp(1.25rem, 3vw, 3.75rem);
    max-height: 0;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.65, 0.2, 0.65, 1);
}

.open {
    background-color: #d0f7ec;
}

    .open .accordions__content {
        padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 3vw, 3.75rem) clamp(1.5rem, 3vw, 2.5rem);
    }

    .open .accordions__icon {
        transform: rotate(225deg);
    }

/* ===========================================
                   PMS PAGE
============================================= */

/* Base Section Styling */
.interactive-focus-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f8f9fa;
}

/* Feature Navigation List */
.feature-nav-list {
    border: none;
}

.list-group-item {
    text-align: left;
    font-size: 1.15rem;
    padding: 1.2rem 1.5rem;
    border: none;
    border-left: 5px solid transparent;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    color: #495057;
}

    .list-group-item:hover {
        background-color: #e9ecef;
        border-left-color: var(--primary);
        color: #000;
        transform: translateX(5px);
    }

    .list-group-item.active {
        background-color: #f1fcf8;
        border-left-color: var(--primary);
        color: var(--primary);
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
    }

.feature-icon {
    font-size: 1.5rem;
    vertical-align: middle;
    color: #adb5bd;
    transition: color 0.3s ease;
}

.list-group-item.active .feature-icon {
    color: var(--primary);
}

/* Feature Display Area */
.feature-display-area {
    min-height: 580px;
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    position: relative;
    overflow: hidden;
}

.feature-visual-wrapper {
    padding-top: 1rem;
}

.feature-image-animated {
    animation: fadeIn 0.5s ease-out;
    border: 1px solid #dee2e6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Dynamic Content Styling */
.dynamic-title {
    font-size: 1.8rem;
    color: #004d99;
    animation: slideInUp 0.4s ease-out;
}

.dynamic-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    animation: fadeIn 0.5s ease-out 0.1s backwards;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 991.98px) {
    .interactive-focus-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .feature-nav-list {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
        justify-content: start;
        flex-wrap: nowrap;
    }

    .list-group-item {
        flex: 0 0 auto;
        margin-right: 0.5rem;
        text-align: start;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .feature-display-area {
        min-height: 400px;
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .feature-display-area {
        min-height: 350px;
    }

    .dynamic-title {
        font-size: 1.5rem;
    }
}

/* Creative Section Styling */
.creative-section {
    font-family: "Poppins", sans-serif;
}

.left-panel {
    background-color: var(--dark);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

.right-panel {
    background-color: #f7f9fc;
}

.sticky-cta {
    position: sticky;
    top: 80vh;
    padding-bottom: 20px;
    z-index: 10;
}

.icon-lg {
    font-size: 1.8rem;
}

.feature-block {
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.feature-block-light {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

    .feature-block-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

/* Contact Section */
.z-index-1 {
    z-index: 10;
}

.z-index-2 {
    z-index: 20;
}

.transition-lift {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .transition-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25) !important;
    }

.minimalist-section {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.icon-xl {
    font-size: 3rem;
    transition: color 0.3s ease;
}

.feature-grid .col:hover .icon-xl {
    color: var(--bs-dark) !important;
}

.feature-grid .col:hover h4 {
    color: var(--bs-info);
}

.description-line {
    position: relative;
    padding-bottom: 20px;
}

    .description-line::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background-color: var(--bs-info);
    }

/* Media Queries */
@media (max-width: 991.98px) {
    .left-panel {
        min-height: auto;
    }

    .sticky-cta {
        position: relative;
        top: 0;
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .minimalist-stack-item {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
}

/* =========================================
     audio to text convertor
===========================================*/

.custom-steps .custom-list-item {
    padding: 1rem 1.5rem;
    margin-bottom: 10px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    position: relative;
}

    .custom-steps .custom-list-item:hover {
        background-color: var(--primary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
        border-color: var(--dark);
    }

    .custom-steps .custom-list-item.active {
        background-color: var(--primary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: var(--dark);
        color: var(--dark);
    }

.mobile-mockup {
    width: 300px;
    height: 600px;
    background-color: #000;
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 5px #ccc;
    position: sticky;
    top: 50px;
}

    .mobile-mockup::before {
        content: "";
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 8px;
        background-color: #333;
        border-radius: 5px;
        z-index: 10;
    }

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--dark);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-weight: bold;
}

.text-center.text-lg-start h2::after {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .text-center.text-lg-start h2::after {
        left: 0;
        transform: none;
    }
}

.mobile-container {
    position: relative;
}

    .mobile-container::before {
        content: "📱 iTranscript360";
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 10;
        white-space: nowrap;
    }

/* ===============================
           Responsive Design
           =============================== */
@media (max-width: 991.98px) {
    .split-gallery-container {
        border: none;
        box-shadow: none;
    }

    .nested-dropdown-menu {
        background-color: var(--bg1);
    }

    .split-ai,
    .split-manual {
        border-radius: 8px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }

    .split-gallery-container:hover .split-ai,
    .split-gallery-container:hover .split-manual {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .text-vertical-accent {
        writing-mode: horizontal-tb;
        position: static;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .geometric-shape-bg {
        width: 80%;
        clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
    }
}

@media (max-width: 767.98px) {
    .hero-image-corner {
        width: 100%;
        opacity: 0.3;
    }

    .data-point-geometric {
        border-left: none;
        border-bottom: 3px solid var(--primary);
        padding-left: 0;
        padding-bottom: 1rem;
        text-align: center;
    }

    .report-manifesto .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 479.98px) {
    .accordions__list {
        gap: 1.25rem;
    }

    .accordions__item {
        border-radius: 1.5rem;
    }
}

/* ===============================
           Accessibility Improvements
           =============================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===============================
      cardiology transcript servises
    =============================== */

.why-choose-cardology {
    background-color: var(--dark);
}

.feature-text-side:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(162, 197, 170, 0.4);
}

.feature-number-large {
    color: var(--primary);
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: -15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.icon-glow {
    color: var(--primary) !important;
    text-shadow: 0 0 15px rgba(162, 197, 170, 0.7);
}

feature-text-side p {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .feature-icon-side {
        margin-bottom: 20px;
    }

    .feature-number-large {
        color: var(--primary);
        font-size: 40px;
    }

    .feature-text-side {
        border-left: 5px solid var(--primary);
    }
}

/*===============================
Log in section
================================*/
/* --- Image Panel (Left Side) --- */
.image-panel {
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65) ), url("../../../assets/new/images/loginNew.webp") center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .image-panel {
        display: none;
    }
}

.vh-100 {
    height: 100vh;
}

/* --- Form Panel (Right Side) --- */
.form-panel {
    background-color: white;
    padding: clamp(1.5rem, 4vw, 4rem) clamp(1rem, 4vw, 3rem);
    height: 100vh;
    overflow-y: auto;
}

/* --- Gradient CTA Button --- */
.btn-gradient {
    background-color: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(72, 52, 212, 0.3);
        background-color: var(--dark);
    }*/
.simple-btn {
    width: 100%;
    max-width: 500px;
    padding: 18px 0;
    background-color: #43c6a4; /* green shade */
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* .simple-btn:hover {
        background-color: #3ab497;
    }*/
/* Input and Icon styling */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(72, 52, 212, 0.25);
}

.input-group-text {
    color: var(--primary);
}

/* --- CUSTOM CHECKBOX STYLING --- */
.form-check-input {
    border-radius: 4px;
    border: 2px solid #ccc;
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.2em;
}

    .form-check-input:checked {
        background-color: var(--primary);
        border-color: var(--primary);
        box-shadow: none;
    }

    .form-check-input:focus {
        box-shadow: 0 0 0 0.25rem rgba(72, 52, 212, 0.25);
    }

    .form-check-input:checked[type="checkbox"] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    }

/* ===============================
        Risponsive start
    =============================== */
/* Extra large devices (large desktops) */
@media (min-width: 1200px) and (max-width: 1399px) {
    /* CSS rules for extra large devices */
}

@media (min-width: 991px) and (max-width: 1200px) {
    .blog-main-wrap {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .parallax-image {
        width: 100%;
        height: 262%;
    }

    .hero-section {
        padding-top: 200px;
    }

    .item-6 {
        top: 80%;
        right: 25%;
    }
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
    .blog-main-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .hero-section {
        padding-top: 200px;
    }

    .parallax-image {
        width: 100%;
        height: 373%;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }



    .mobile-toggle {
        display: block;
    }

    .top-bar-actions {
        gap: 15px;
    }

    .nav-menu {
        z-index: 988;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #d8f3ee;
        flex-direction: column;
        padding: 80px 20px 20px;
        border-radius: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu::before {
            display: none;
        }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        border-radius: 8px;
        justify-content: flex-start;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        display: none;
        border-radius: 8px;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .nested-dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 5px;
        margin-left: 15px;
        display: none;
        background: var(--bg1);
    }

    .nested-dropdown.active .nested-dropdown-menu {
        display: block;
    }

    .header-actions {
        flex-wrap: wrap;
        display: flex;
        width: fit-content;
        justify-content: center;
    }

    .action-btn {
        width: fit-content;
        font-size: 14px;
    }

    .sign-btn {
        padding: 8px 14px;
        width: 115px;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .country-selector {
        width: 100%;
    }

    .country-btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid,
    .pricing-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .process-container {
        flex-direction: column;
        gap: 50px;
    }

    .process-line {
        display: none;
    }

    h1 {
        font-size: 3rem;
    }

    .service-item {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .service-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .service-item img {
        width: 100%;
        display: block;
        position: static;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .service-item .service-image {
        width: 100%;
        height: 350px;
        margin-left: 0;
        opacity: 1;
        transform: translateX(0px);
    }
}
/* Large devices (laptops/small desktops) */
@media (max-width: 768px) {
    .creative-hero-section {
        height: auto;
    }

    .hero-section {
        padding-top: 200px;
    }

    .blog-main-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .top-bar {
        font-size: 12px;
    }

    .parallax-image {
        width: 100%;
        height: 371%;
    }

    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--dark);
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--light);
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .offer-text {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-bar-actions {
        flex-direction: column;
        gap: 5px;
    }

    .logo-img {
        width: 150px;
        height: 40px;
        font-size: 16px;
    }

    .header-container.scrolled .logo-img {
        height: 35px;
        width: 140px;
        font-size: 16px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .features-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .doctor-item {
        flex-direction: column;
        text-align: center;
    }

    .doctor-image {
        margin: 20px 0 0 0;
        width: 150px;
        height: 150px;
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .service-item .service-image {
        width: 100%;
        height: 250px;
        margin-left: 0;
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Small devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767px) {
    .popup-content {
        width: 100%;
        height: 80%;
    }

    .parallax-image {
        height: 452%;
    }

    .service-item {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .service-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .service-item img {
        width: 100%;
        display: block;
        position: static;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .service-item .service-image {
        width: 100%;
        margin-left: 0;
        opacity: 1;
        transform: translateX(0px);
    }

    .after-banner-card-box
    .after-banner-card-box-inner
    .feature-items-1
    .featured-desc
    .featured-title {
        max-width: 300px;
    }
}

/* ============================================
   Responsive Styles
============================================ */

/* Extra small devices (portrait phones) */
@media (max-width: 575px) {
    .blog-main-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust-pill {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 18px;
        background: #f6f9fb;
        border-radius: 999px;
        font-weight: 600;
        color: #111827;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    .sign-btn {
        padding: 12px 20px;
        font-size: 8px;
        width: fit-content;
    }

    .action-btn {
        padding: 12px 20px;
        font-size: 8px;
        width: fit-content;
    }



    .country-btn-white img {
        width: 10px;
        height: 10px;
    }

    .signin-menu {
        right: -92px;
    }

    .blog-page-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .popup-content {
        width: 100%;
        height: 55%;
    }

    .parallax-wrapper {
        height: 350px;
    }

    .parallax-image {
        height: 647%;
    }

    .hero-section {
        padding-top: 200px;
    }

    .service-item {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .service-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .service-item img {
        width: 100%;
        display: block;
        position: static;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .service-item .service-image {
        width: 100%;
        margin-left: 0;
        opacity: 1;
        transform: translateX(0px);
    }

    .after-banner-card-box
    .after-banner-card-box-inner
    .feature-items-1
    .featured-desc
    .featured-title {
        max-width: 170px;
    }
}
/* Highlight White CTA */
.demo-white-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    /* highlight effect */
    box-shadow: 0 4px 14px rgba(0,0,0,0.08), 0 0 0 2px rgba(255,255,255,0.6);
    transition: all 0.25s ease;
}

    /* hover = strong highlight */
    .demo-white-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 0 3px rgba(255,255,255,0.9);
    }

    /* click feel */
    .demo-white-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
