/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default !important;
}

:root {
    --primary-color: #0e415b;
    --primary-dark: #0a3547;
    --primary-light: #e8f3f7;
    --secondary-color: #e13732;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: darken;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.3rem 0.2rem;
    white-space: nowrap;
}

/* Animated sliding underline */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), rgba(14, 65, 91, 0.5));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(14, 65, 91, 0.5);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::before {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), rgba(14, 65, 91, 0.5));
    box-shadow: 0 0 8px rgba(14, 65, 91, 0.5);
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

/* Dropdown arrow on ::after */
.nav-item.dropdown>.nav-link::after {
    content: '▾';
    font-size: 0.8em;
    margin-left: 0.3rem;
    /* Changed from 3px to 0.3rem */
    display: inline-block;
    /* Required for transform */
    transition: transform 0.3s ease;
    /* Added transition for rotation */
    opacity: 0.6;
    /* Kept existing opacity */
}

.nav-item.dropdown:hover>.nav-link::after,
.nav-item.dropdown.active>.nav-link::after {
    opacity: 1;
    transform: rotate(180deg);
}

.nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
    padding: 0 !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.lang-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.8));
    border-color: rgba(20, 80, 110, 0.4);
    color: var(--primary-color);
    box-shadow:
        0 4px 12px -2px rgba(14, 65, 91, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lang-btn.active {
    background: linear-gradient(135deg, rgba(20, 80, 110, 0.9), rgba(12, 55, 75, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(14, 65, 91, 0.8);
    color: var(--white);
    box-shadow:
        0 6px 15px -3px rgba(14, 65, 91, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -3px 6px rgba(5, 20, 30, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* --- AGGRESSIVE GOOGLE TRANSLATE HIDING --- */
/* Force hide all Google Translate elements */
#google_translate_element,
#google_translate_element *,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-menu-frame,
.goog-te-gadget-icon,
.goog-te-gadget-simple,
.goog-logo-link,
#goog-gt-tt,
.goog-te-spinner-pos,
.goog-te-combo,
.goog-te-floating-pitch,
.goog-te-phrase-highlight,
.goog-te-tooltip,
.goog-te-translating,
.goog-te-bubble,
.goog-te-feedback,
.goog-te-button,
.goog-gt-interface,
.goog-gt-box,
.goog-gt-control,
.goog-te-spinner-frame,
.goog-te-spinner,
.VIpgJd-ZVi9d-ORXmqb-Bz112c-M1sUe,
[data-goog],
[class*="goog"],
[id*="goog"],
iframe[src*="translate.google.com"],
iframe[name*="goog"],
iframe[id*="goog"],
iframe[src*="translate_a"],
svg[id*="goog"],
svg[data-goog],
svg[class*="goog"],
div[class*="goog"],
span[class*="goog-te"],
a[class*="goog"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    z-index: -9999 !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
}

/* Disable animations/transitions only on Google Translate UI elements */
#google_translate_element,
#google_translate_element *,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-menu-frame,
.goog-te-gadget-icon,
.goog-te-gadget-simple,
.goog-logo-link,
#goog-gt-tt,
.goog-te-spinner-pos,
.goog-te-combo,
.goog-te-floating-pitch,
.goog-te-phrase-highlight,
.goog-te-tooltip,
.goog-te-translating,
.goog-te-bubble,
.goog-te-feedback,
.goog-te-button,
.goog-gt-interface,
.goog-gt-box,
.goog-gt-control,
.goog-te-spinner-frame,
.goog-te-spinner,
.VIpgJd-ZVi9d-ORXmqb-Bz112c-M1sUe,
[data-goog],
[class*="goog"],
[id*="goog"],
iframe[src*="translate.google.com"],
iframe[name*="goog"],
iframe[id*="goog"],
iframe[src*="translate_a"],
svg[id*="goog"],
svg[data-goog],
svg[class*="goog"],
div[class*="goog"],
span[class*="goog-te"],
a[class*="goog"] {
    animation: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    -webkit-transition: none !important;
}

/* This must come before any other CSS to ensure highest specificity */
html body * {
    --goog-display: none !important;
}

/* Hide Google Translate banner and all related elements */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-menu-frame,
.skiptranslate,
.goog-te-gadget-icon,
.goog-te-gadget-simple,
.goog-logo-link,
#goog-gt-tt,
.goog-te-spinner-pos,
.goog-te-combo,
#google_translate_element,
.goog-te-floating-pitch,
.goog-te-phrase-highlight,
.goog-te-tooltip,
[data-goog],
.goog-te-translating,
.translation-loading,
.goog-te,
.goog-te-bubble,
.goog-te-feedback,
.goog-te-button,
.goog-gte,
.goog-gt-interface,
.goog-gt-box,
.goog-gt-control,
.goog-te-spinner-frame,
.goog-te-spinner,
.VIpgJd-ZVi9d-ORXmqb-Bz112c-M1sUe,
[data-translated-lang],
.goog-gt-tt,
.skiptranslate div {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    z-index: -9999 !important;
}

/* Hide Google Translate iframes and SVG overlays */
iframe[src*="translate.google.com"],
iframe[name*="goog"],
iframe[id*="goog"],
iframe[src*="translate_a"],
.skiptranslate,
svg[id*="goog"],
svg[data-goog],
svg[class*="goog"],
div[class*="goog"],
div[id*="goog"],
div[data-goog],
span[class*="goog-te"],
span[id*="goog"],
a[class*="goog"],
a[id*="goog"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    z-index: -9999 !important;
}

/* Header specific - hide any Google elements that appear */
.header .goog-te-banner-frame,
.navbar .goog-te-gadget,
.nav-actions .goog-te-balloon-frame,
.header [class*="goog"],
.navbar [id*="goog"],
.header [data-goog],
.nav-actions [class*="goog"],
.nav-actions [id*="goog"],
.nav-actions [data-goog] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    z-index: -9999 !important;
}

/* Absolute position hiding for floating elements */
.goog-te-spinner-frame {
    position: fixed !important;
    top: -9999px !important;
    left: -9999px !important;
    display: none !important;
    visibility: hidden !important;
    z-index: -9999 !important;
}

/* Hide body scroll chaining */
body.skiptranslate {
    top: 0 !important;
}

/* Override any inline styles */
[style*="goog"],
[style*="translate"] {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Get Started Button - 3D Liquid Glass Blue (#0E415B) */
.get-started-btn {
    width: 140px;
    height: 42px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(14, 65, 91, 0.8);
    background: linear-gradient(135deg, rgba(20, 80, 110, 0.9), rgba(12, 55, 75, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 0.4s;
    overflow: hidden;
    box-shadow:
        0 4px 8px -2px rgba(14, 65, 91, 0.05),
        inset 0 4px 6px rgba(255, 255, 255, 0.4),
        inset 0 -6px 10px rgba(5, 20, 30, 0.7),
        inset 0 2px 15px rgba(255, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Inner glass highlight */
.get-started-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.get-started-btn .icon-container {
    position: absolute;
    left: -50px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    transition-duration: 0.4s;
}

.get-started-btn .icon-container svg {
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.get-started-btn .btn-text {
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 1;
    transition-duration: 0.4s;
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.get-started-btn:hover {
    background: linear-gradient(135deg, rgba(25, 90, 125, 0.95), rgba(14, 65, 91, 1));
    transform: translateY(-3px);
    box-shadow:
        0 8px 16px -3px rgba(14, 65, 91, 0.08),
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -6px 12px rgba(5, 20, 30, 0.7),
        inset 0 2px 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(14, 65, 91, 0.9);
}

.get-started-btn:hover::after {
    opacity: 0.8;
}

.get-started-btn:hover .icon-container {
    transform: translateX(58px);
    border-radius: 40px;
    transition-duration: 0.4s;
}

.get-started-btn:hover .btn-text {
    transform: translateX(13px);
    transition-duration: 0.4s;
}

.get-started-btn:active {
    transform: translateY(1px) scale(0.95);
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 3D Liquid Glass Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    /* More rounded for liquid feel */
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

/* Add an inner glowing top highlight for 3D glass effect on all buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Primary Button - 3D Liquid Glass Brand Blue */
.btn-primary {
    background: linear-gradient(135deg, rgba(20, 80, 110, 0.9), rgba(12, 55, 75, 0.95));
    /* Brand blue gradient */
    color: var(--white);
    box-shadow:
        0 15px 35px -5px rgba(14, 65, 91, 0.5),
        /* Deep drop shadow */
        0 6px 15px -2px rgba(14, 65, 91, 0.4),
        /* Mid drop shadow */
        inset 0 4px 6px rgba(255, 255, 255, 0.4),
        /* Top inner highlight */
        inset 0 -6px 10px rgba(5, 20, 30, 0.7),
        /* Bottom inner shadow for 3D depth */
        inset 0 2px 15px rgba(255, 255, 255, 0.2);
    /* General glass glow */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(14, 65, 91, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(25, 90, 125, 0.95), rgba(14, 65, 91, 1));
    box-shadow:
        0 20px 40px -5px rgba(14, 65, 91, 0.6),
        0 8px 20px -2px rgba(14, 65, 91, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -6px 12px rgba(5, 20, 30, 0.7),
        inset 0 2px 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(14, 65, 91, 0.9);
    color: var(--white);
    transform: translateY(-6px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Primary Light (Used for secondary actions) - 3D Liquid Glass White/Clear */
.btn-primary-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 245, 245, 0.4));
    color: var(--primary-color);
    box-shadow:
        0 15px 35px -5px rgba(14, 65, 91, 0.15),
        0 6px 15px -2px rgba(14, 65, 91, 0.1),
        inset 0 4px 6px rgba(255, 255, 255, 0.9),
        inset 0 -6px 10px rgba(14, 65, 91, 0.1),
        inset 0 2px 15px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(14, 65, 91, 0.2);
}

.btn-primary-light:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.6));
    box-shadow:
        0 20px 40px -5px rgba(14, 65, 91, 0.2),
        0 8px 20px -2px rgba(14, 65, 91, 0.15),
        inset 0 4px 8px rgba(255, 255, 255, 1),
        inset 0 -6px 12px rgba(14, 65, 91, 0.15),
        inset 0 2px 20px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 1);
    border-bottom-color: rgba(14, 65, 91, 0.3);
    color: var(--primary-color);
    transform: translateY(-6px) scale(1.02);
}

.btn-primary-light:active {
    transform: translateY(1px);
    box-shadow:
        0 4px 10px -2px rgba(14, 65, 91, 0.1),
        inset 0 2px 5px rgba(14, 65, 91, 0.1);
}

/* Primary Dark (Secondary color) - 3D Liquid Glass Red */
.btn-primary-dark {
    background: linear-gradient(135deg, rgba(235, 75, 70, 0.9), rgba(190, 30, 25, 0.95));
    color: var(--white);
    box-shadow:
        0 15px 35px -5px rgba(225, 55, 50, 0.5),
        /* Deep drop shadow */
        0 6px 15px -2px rgba(225, 55, 50, 0.4),
        /* Mid drop shadow */
        inset 0 4px 6px rgba(255, 255, 255, 0.5),
        /* Top inner highlight */
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        /* Bottom inner shadow for 3D depth */
        inset 0 2px 15px rgba(255, 255, 255, 0.2);
    /* General glass glow */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(225, 55, 50, 0.8);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-dark:hover {
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(135deg, rgba(245, 85, 80, 0.95), rgba(205, 45, 40, 1));
    box-shadow:
        0 20px 40px -5px rgba(225, 55, 50, 0.6),
        0 8px 20px -2px rgba(225, 55, 50, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.6),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(225, 55, 50, 0.9);
}

.btn-primary-dark:active {
    transform: translateY(1px);
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   GLOBAL LIQUID GLASS OVERRIDES
   Apply 3D liquid glass to ALL remaining button classes site-wide
   ============================================================ */

/* --- RED GLASS (btn-primary-dark style) --- */
/* "View Syllabus", "View Course", "Contact Us", CTA primaries */
.btn-intro,
.btn-enroll,
.faq-contact-btn,
.btn-cta-primary,
.btn-partner-red {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, rgba(235, 75, 70, 0.9), rgba(190, 30, 25, 0.95)) !important;
    color: #fff !important;
    box-shadow:
        0 15px 35px -5px rgba(225, 55, 50, 0.5),
        0 6px 15px -2px rgba(225, 55, 50, 0.4),
        inset 0 4px 6px rgba(255, 255, 255, 0.5),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 15px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-bottom-color: rgba(225, 55, 50, 0.8) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-intro::before,
.btn-enroll::before,
.faq-contact-btn::before,
.btn-cta-primary::before,
.btn-partner-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-intro:hover,
.btn-enroll:hover,
.faq-contact-btn:hover,
.btn-cta-primary:hover,
.btn-partner-red:hover {
    transform: translateY(-6px) scale(1.02) !important;
    background: linear-gradient(135deg, rgba(245, 85, 80, 0.95), rgba(205, 45, 40, 1)) !important;
    box-shadow:
        0 20px 40px -5px rgba(225, 55, 50, 0.6),
        0 8px 20px -2px rgba(225, 55, 50, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.6),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 20px rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-bottom-color: rgba(225, 55, 50, 0.9) !important;
}

.btn-intro:hover::before,
.btn-enroll:hover::before,
.faq-contact-btn:hover::before,
.btn-cta-primary:hover::before,
.btn-partner-red:hover::before {
    opacity: 0.8;
}

.btn-intro:active,
.btn-enroll:active,
.faq-contact-btn:active,
.btn-cta-primary:active,
.btn-partner-red:active {
    transform: translateY(1px);
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

/* --- BLUE GLASS (btn-primary style) --- */
/* "View All Blogs", CTA secondaries */
.btn-view-all,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, rgba(20, 80, 110, 0.9), rgba(12, 55, 75, 0.95)) !important;
    color: #fff !important;
    box-shadow:
        0 15px 35px -5px rgba(14, 65, 91, 0.5),
        0 6px 15px -2px rgba(14, 65, 91, 0.4),
        inset 0 4px 6px rgba(255, 255, 255, 0.4),
        inset 0 -6px 10px rgba(5, 20, 30, 0.7),
        inset 0 2px 15px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-bottom-color: rgba(14, 65, 91, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-view-all::before,
.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-view-all:hover,
.btn-cta-secondary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(25, 90, 125, 0.95), rgba(14, 65, 91, 1)) !important;
    box-shadow:
        0 20px 40px -5px rgba(14, 65, 91, 0.6),
        0 8px 20px -2px rgba(14, 65, 91, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -6px 12px rgba(5, 20, 30, 0.7),
        inset 0 2px 20px rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-bottom-color: rgba(14, 65, 91, 0.9) !important;
    color: #fff !important;
}

.btn-view-all:hover::before,
.btn-cta-secondary:hover::before {
    opacity: 0.8;
}

.btn-view-all:active,
.btn-cta-secondary:active {
    transform: translateY(1px);
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

/* --- WHITE/LIGHT GLASS (btn-primary-light style) --- */
/* Product page panel buttons */
.btn-green-panel {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 245, 245, 0.4)) !important;
    color: var(--primary-color) !important;
    box-shadow:
        0 15px 35px -5px rgba(14, 65, 91, 0.15),
        0 6px 15px -2px rgba(14, 65, 91, 0.1),
        inset 0 4px 6px rgba(255, 255, 255, 0.9),
        inset 0 -6px 10px rgba(14, 65, 91, 0.1),
        inset 0 2px 15px rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    border-bottom-color: rgba(14, 65, 91, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.btn-green-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-green-panel:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.6)) !important;
    box-shadow:
        0 20px 40px -5px rgba(14, 65, 91, 0.2),
        0 8px 20px -2px rgba(14, 65, 91, 0.15),
        inset 0 4px 8px rgba(255, 255, 255, 1),
        inset 0 -6px 12px rgba(14, 65, 91, 0.15),
        inset 0 2px 20px rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    border-bottom-color: rgba(14, 65, 91, 0.3) !important;
    transform: translateY(-3px);
}

.btn-green-panel:hover::before {
    opacity: 1;
}

/* --- Homepage CTA Button - RED GLASS --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(235, 75, 70, 0.9), rgba(190, 30, 25, 0.95)) !important;
    color: #fff !important;
    box-shadow:
        0 15px 35px -5px rgba(225, 55, 50, 0.5),
        0 6px 15px -2px rgba(225, 55, 50, 0.4),
        inset 0 4px 6px rgba(255, 255, 255, 0.5),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 15px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-bottom-color: rgba(225, 55, 50, 0.8) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(245, 85, 80, 0.95), rgba(205, 45, 40, 1)) !important;
    box-shadow:
        0 20px 40px -5px rgba(225, 55, 50, 0.6),
        0 8px 20px -2px rgba(225, 55, 50, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.6),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 20px rgba(255, 255, 255, 0.3) !important;
}

.cta-button:hover::before {
    opacity: 0.8;
}

/* --- "Explore all programs" - RED GLASS --- */
.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, rgba(235, 75, 70, 0.9), rgba(190, 30, 25, 0.95)) !important;
    color: #fff !important;
    box-shadow:
        0 15px 35px -5px rgba(225, 55, 50, 0.5),
        0 6px 15px -2px rgba(225, 55, 50, 0.4),
        inset 0 4px 6px rgba(255, 255, 255, 0.5),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 15px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-bottom-color: rgba(225, 55, 50, 0.8) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.explore-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.explore-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(245, 85, 80, 0.95), rgba(205, 45, 40, 1)) !important;
    box-shadow:
        0 20px 40px -5px rgba(225, 55, 50, 0.6),
        0 8px 20px -2px rgba(225, 55, 50, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.6),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 20px rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.explore-link:hover::before {
    opacity: 0.8;
}

/* --- "View All Blog Posts" - BLUE GLASS with shimmer animation --- */
@keyframes glass-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, rgba(20, 80, 110, 0.9), rgba(12, 55, 75, 0.95)) !important;
    color: #fff !important;
    box-shadow:
        0 15px 35px -5px rgba(14, 65, 91, 0.5),
        0 6px 15px -2px rgba(14, 65, 91, 0.4),
        inset 0 4px 6px rgba(255, 255, 255, 0.4),
        inset 0 -6px 10px rgba(5, 20, 30, 0.7),
        inset 0 2px 15px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-bottom-color: rgba(14, 65, 91, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.view-all-blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Shimmer overlay — only animates on hover */
.view-all-blogs::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    pointer-events: none;
    transition: none;
}

.view-all-blogs:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(25, 90, 125, 0.95), rgba(14, 65, 91, 1)) !important;
    box-shadow:
        0 20px 40px -5px rgba(14, 65, 91, 0.6),
        0 8px 20px -2px rgba(14, 65, 91, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -6px 12px rgba(5, 20, 30, 0.7),
        inset 0 2px 20px rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.view-all-blogs:hover::before {
    opacity: 0.9;
}

.view-all-blogs:hover::after {
    animation: glass-shimmer 0.8s ease forwards;
}

.btn:hover::before {
    opacity: 0.8;
}

.btn-primary-light:hover::before {
    opacity: 1;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Footer */
.footer {
    color: var(--text-dark);
    margin-top: 0;          /* changed from 4rem to 0 */
    position: relative;
    background: var(--white);
    padding: 4rem 0px 2rem;
    border-top: none;    
}

.footer::before {
    display:none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-light);
    margin-top: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 0 transparent;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-links a:hover::before {
    width: 80%;
    box-shadow: 0 2px 8px rgba(14, 65, 91, 0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.8), rgba(230, 230, 230, 0.4));
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.06),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 15%;
    right: 15%;
    height: 35%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    border-radius: 50% 50% 0 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(20, 80, 110, 0.9), rgba(12, 55, 75, 0.95));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow:
        0 8px 16px -4px rgba(14, 65, 91, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(5, 20, 30, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(14, 65, 91, 0.6);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(14, 65, 91, 0.08);
    letter-spacing: 0.8rem;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

.footer-bottom p {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        width: 100vw;
        max-width: 100%;
        overflow: visible !important;
    }

    .navbar {
        padding: 0.75rem 0;
        overflow: visible !important;
    }

    .navbar .container {
        padding: 0 15px;
        overflow: visible !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: none !important;
        max-height: none !important;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: none;
        overflow-y: auto;
        z-index: 999 !important;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        margin: 0 !important;
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-actions .btn,
    .nav-actions .get-started-btn {
        display: none;
    }

    .language-switcher {
        margin-right: 0.25rem;
        flex-wrap: wrap;
    }

    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    /* Mobile Dropdown Styles */
    .nav-item.dropdown .nav-link::after {
        content: '▾';
        transition: transform 0.3s ease;
        font-size: 0.9rem;
        margin-left: auto;
    }

    .nav-item.dropdown.active .nav-link::after {
        transform: rotate(180deg);
    }

    .nav-item.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: transparent;
        pointer-events: none;
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 600px;
        margin-bottom: 0.5rem;
        pointer-events: auto;
    }

    .dropdown-menu li {
        border: none;
    }

    .dropdown-link {
        padding: 0.85rem 0;
        padding-left: 1.5rem;
        font-size: 0.95rem;
        border-bottom: none;
        background: transparent;
        color: var(--text-light);
        position: relative;
    }

    .dropdown-link::before {
        content: '→';
        position: absolute;
        left: 0;
        opacity: 0.6;
        font-size: 0.85rem;
    }

    .dropdown-link:hover,
    .dropdown-link:active {
        color: var(--primary-color);
        padding-left: 1.75rem;
        background: transparent;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .footer-section:first-child {
        grid-column: span 2;
        margin-bottom: 1rem;
    }

    .footer-watermark {
        font-size: 3.5rem;
        letter-spacing: 0.4rem;
    }

    .footer-bottom {
        min-height: 50px;
    }
}

@media (max-width: 576px) {
    .footer-watermark {
        font-size: 3rem;
        letter-spacing: 0.35rem;
    }

    .footer-bottom {
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .footer-watermark {
        font-size: 2.2rem;
        letter-spacing: 0.25rem;
    }

    .footer-bottom {
        min-height: 100px;
    }
}

@media (max-width: 375px) {
    .footer-watermark {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }

    .footer-bottom {
        min-height: 90px;
    }
}

/* Page Header */
.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================================ */
/* THEME OVERRIDE: Apply 3D Liquid Glass to Hero Buttons        */
/* ============================================================ */

/* --- RED 3D LIQUID GLASS FOR PRIMARY HERO CTAs --- */
.btn-hero-primary,
.nurse-hero .btn-hero-primary,
.doc-hero .btn-hero-primary,
.dent-hero .btn-hero-primary,
.pharma-hero .btn-hero-primary {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    height: 50px !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    background: linear-gradient(135deg, rgba(235, 75, 70, 0.9), rgba(190, 30, 25, 0.95)) !important;
    color: #fff !important;
    box-shadow:
        0 15px 35px -5px rgba(225, 55, 50, 0.5),
        0 6px 15px -2px rgba(225, 55, 50, 0.4),
        inset 0 4px 6px rgba(255, 255, 255, 0.5),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 15px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-bottom-color: rgba(225, 55, 50, 0.8) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 50px !important;
}

.btn-hero-primary::before,
.nurse-hero .btn-hero-primary::before,
.doc-hero .btn-hero-primary::before,
.dent-hero .btn-hero-primary::before,
.pharma-hero .btn-hero-primary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 10% !important;
    right: 10% !important;
    height: 30% !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) !important;
    border-radius: 50px 50px 0 0 !important;
    pointer-events: none !important;
    opacity: 0.6 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: block !important;
}

.btn-hero-primary:hover,
.nurse-hero .btn-hero-primary:hover,
.doc-hero .btn-hero-primary:hover,
.dent-hero .btn-hero-primary:hover,
.pharma-hero .btn-hero-primary:hover {
    transform: translateY(-6px) scale(1.02) !important;
    background: linear-gradient(135deg, rgba(245, 85, 80, 0.95), rgba(205, 45, 40, 1)) !important;
    box-shadow:
        0 20px 40px -5px rgba(225, 55, 50, 0.6),
        0 8px 20px -2px rgba(225, 55, 50, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.6),
        inset 0 -6px 10px rgba(120, 10, 10, 0.6),
        inset 0 2px 20px rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-bottom-color: rgba(225, 55, 50, 0.9) !important;
}

.faq-contact-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.faq-contact-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.btn-hero-primary:hover::before,
.nurse-hero .btn-hero-primary:hover::before,
.doc-hero .btn-hero-primary:hover::before,
.dent-hero .btn-hero-primary:hover::before,
.pharma-hero .btn-hero-primary:hover::before {
    opacity: 0.8 !important;
}

.btn-hero-primary:active,
.nurse-hero .btn-hero-primary:active,
.doc-hero .btn-hero-primary:active,
.dent-hero .btn-hero-primary:active,
.pharma-hero .btn-hero-primary:active {
    transform: translateY(1px) !important;
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

/* --- BLUE 3D LIQUID GLASS FOR SECONDARY HERO CTAs --- */
.btn-hero-secondary,
.nurse-hero .btn-hero-secondary,
.doc-hero .btn-hero-secondary,
.dent-hero .btn-hero-secondary,
.pharma-hero .btn-hero-secondary {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    height: 50px !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    background: linear-gradient(135deg, rgba(20, 80, 110, 0.9), rgba(12, 55, 75, 0.95)) !important;
    color: #fff !important;
    box-shadow:
        0 15px 35px -5px rgba(14, 65, 91, 0.5),
        0 6px 15px -2px rgba(14, 65, 91, 0.4),
        inset 0 4px 6px rgba(255, 255, 255, 0.4),
        inset 0 -6px 10px rgba(5, 20, 30, 0.7),
        inset 0 2px 15px rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-bottom-color: rgba(14, 65, 91, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 50px !important;
}

.btn-hero-secondary::before,
.nurse-hero .btn-hero-secondary::before,
.doc-hero .btn-hero-secondary::before,
.dent-hero .btn-hero-secondary::before,
.pharma-hero .btn-hero-secondary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 10% !important;
    right: 10% !important;
    height: 30% !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) !important;
    border-radius: 50px 50px 0 0 !important;
    pointer-events: none !important;
    opacity: 0.6 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: block !important;
}

.btn-hero-secondary:hover,
.nurse-hero .btn-hero-secondary:hover,
.doc-hero .btn-hero-secondary:hover,
.dent-hero .btn-hero-secondary:hover,
.pharma-hero .btn-hero-secondary:hover {
    transform: translateY(-6px) scale(1.02) !important;
    background: linear-gradient(135deg, rgba(25, 90, 125, 0.95), rgba(14, 65, 91, 1)) !important;
    box-shadow:
        0 20px 40px -5px rgba(14, 65, 91, 0.6),
        0 8px 20px -2px rgba(14, 65, 91, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -6px 12px rgba(5, 20, 30, 0.7),
        inset 0 2px 20px rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-bottom-color: rgba(14, 65, 91, 0.9) !important;
    color: #fff !important;
}

.btn-hero-secondary:hover::before,
.nurse-hero .btn-hero-secondary:hover::before,
.doc-hero .btn-hero-secondary:hover::before,
.dent-hero .btn-hero-secondary:hover::before,
.pharma-hero .btn-hero-secondary:hover::before {
    opacity: 0.8 !important;
}

.btn-hero-secondary:active,
.nurse-hero .btn-hero-secondary:active,
.doc-hero .btn-hero-secondary:active,
.dent-hero .btn-hero-secondary:active,
.pharma-hero .btn-hero-secondary:active {
    transform: translateY(1px) !important;
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

/* Hero Slider Animations */
.get-started-slider .icon-container {
    position: absolute;
    left: -50px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.get-started-slider:hover .icon-container {
    transform: translateX(80px) !important;
}

.get-started-slider .btn-text {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.get-started-slider:hover .btn-text {
    transform: translateX(18px) !important;
}

/* Arrow Slider for Learn More */
.arrow-slider .icon-container {
    position: absolute;
    right: 35px;
    /* Start further in */
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    opacity: 0;
    /* Hidden by default */
}

.arrow-slider:hover .icon-container {
    transform: translateX(20px) !important;
    /* Slide out to the right */
    opacity: 1;
    /* Fade in */
}

.arrow-slider .btn-text {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.arrow-slider:hover .btn-text {
    transform: translateX(-3px) !important;
}
