:root {
    /* Brand Colors */
    --primary-coral: #FF6B6B;
    --primary-navy: #1E3A5F;
    --coral-hover: #E85555;
    --navy-dark: #152840;
    --coral-light: #FFE5E5;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-bg: #F5F7FA;
    --border-light: #E8ECF1;
    --text-gray: #6B7A8F;
    --text-dark: #1A202C;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Sora', 'Inter', sans-serif;
    
    /* Spacing */
    --header-height: 85px;
    --header-height-scrolled: 70px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition-smooth: 0.3s ease;
    --transition-fast: 0.2s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.06);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 16px;
    --radius-pill: 50px;
}


/* ==================== Smooth Scroll & Animations ==================== */
html {
    scroll-behavior: smooth;
}
body, html {
    overflow-x: hidden !important;
    max-width: 100vw;
}

.logos-slider {
    overflow: hidden !important;
    max-width: 100vw;
}


* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .card, .service-card, .recruit-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover effects */
.btn:hover, .btn-hero:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card:hover, .recruit-card:hover, .advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Parallax effect for hero */
.hero-video {
    transform: translateZ(0);
    will-change: transform;
}



/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(30, 58, 95, 0.1);
    backdrop-filter: blur(8px);
    transition: all var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    transition: height var(--transition-smooth);
}

.main-header.scrolled .header-inner {
    height: var(--header-height-scrolled);
}

/* Logo */
.logo-container {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 48px;
    width: auto;
    transition: height var(--transition-smooth);
}

.main-header.scrolled .logo-image {
    height: 42px;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 48px;

}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-right: 20px;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    padding: 8px 0;
    transition: color var(--transition-fast);
    position: relative;
    padding-left: 25px !important;
}

.main-header.scrolled .menu-link {
    color: var(--primary-navy);
    padding-left: 30px;
}

.menu-link:hover,
.menu-link.active {
    color: var(--primary-coral);
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-coral);
    transition: width var(--transition-fast);
}

.menu-link:hover::before,
.menu-link.active::before {
    width: 100%;
}

.dropdown-icon {
    font-size: 11px;
    transition: transform var(--transition-fast);
}

.menu-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-content {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background-color: var(--white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-strong);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.dropdown-content.large-dropdown {
    min-width: 560px;
}

.menu-item.has-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-list.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: var(--radius-small);
    transition: all var(--transition-fast);
}

.dropdown-link i {
    color: var(--primary-coral);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.dropdown-link:hover {
    background-color: var(--light-bg);
    color: var(--primary-navy);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.main-header.scrolled .btn-outline {
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-outline:hover {
    background-color: var(--primary-coral);
    border-color: var(--primary-coral);
    color: var(--white);
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.main-header.scrolled .language-btn {
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.language-btn:hover {
    background-color: var(--primary-coral);
    border-color: var(--primary-coral);
    color: var(--white);
    transform: translateY(-2px);
}

.language-btn i {
    font-size: 16px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background-color: var(--white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-strong);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-smooth);
}

.language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.language-option:hover {
    background-color: var(--light-bg);
    color: var(--primary-navy);
}

.language-option.active {
    background-color: var(--primary-coral);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.toggle-line {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
    position: absolute;
}

.main-header.scrolled .toggle-line {
    background-color: var(--primary-navy);
}

.toggle-line:nth-child(1) {
    top: 12px;
}

.toggle-line:nth-child(2) {
    top: 19px;
}

.toggle-line:nth-child(3) {
    top: 26px;
}

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

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

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

/* Mobile Menu Logo */
.mobile-menu-logo {
    display: none;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
    background-color: var(--off-white);
}

.mobile-menu-logo img {
    height: 44px;
    width: auto;
}
/* CSS Variables */
:root {
    --navy: #1E3A5F;
    --navy-dark: #152840;
    --navy-light: #2C4A6F;
    --coral: #FF6B6B;
    --coral-hover: #FF5252;
    --coral-light: #FF8E8E;
    --purple: #1E3A5F;
    --purple-light: #2C4A6F;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray: #6C757D;
    --gray-light: #E9ECEF;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: var(--off-white);
}

/* ==================== START Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--purple) 100%);

}

/* Animated Gradient Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--navy-dark) 0%, 
        var(--navy) 25%,
        var(--purple) 50%,
        var(--coral) 75%,
        var(--navy) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.9;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 9s;
    animation-duration: 28s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 40px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.6;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content (Left Side) */
.hero-content {
    color: var(--white);
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 61px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title-line1 {
    color: var(--white);
}

.hero-title-line2 {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 90%;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Hero CTAs */
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Visual (Right Side) */
.hero-visual {
    position: relative;
    height: 700px;
    opacity: 0;
    animation: fadeInScale 1s ease 0.8s forwards;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-visual {
        height: 600px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        height: 500px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 24px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        height: 350px;
    }
    
}

@media (max-width: 968px) {
    .hero-visual {
        position: relative;
        width: 100%;
    }
}


/* <!-- ==================== START Stats Section ==================== --> */
/* CSS Variables */
:root {
    --navy: #1E3A5F;
    --navy-dark: #152840;
    --coral: #FF6B6B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray: #6C757D;
    --gray-light: #E9ECEF;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==================== START Stats Section ==================== */
.stats-section {
    border-bottom: 1px solid var(--gray-light);
}

/* Stats Container */
.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

/* Stat Item */
.stat-item {
    padding: 13px 0;
}

/* Stat Number */
.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1;
}


.stat-suffix {
    font-size: 30px;
    color: var(--navy);
}

/* Stat Label */
.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-grid {
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 25px 0;
    }
    
    .stats-container {
        padding: 0 24px;
    }
    
    .stats-grid {
        gap: 30px 20px;
    }
    
    .stat-number {
        font-size: 27px;
    }
    
    .stat-suffix {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-suffix {
        font-size: 25px;
    }
    
    .stat-label {
        font-size: 7px;
    }

    .stat-item {
        padding: 0px 0;
    }
}












/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
    
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    /* Header Responsive */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right var(--transition-smooth);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .mobile-menu-logo {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 32px;
    }
    
    .menu-item {
        border-bottom: 1px solid var(--border-light);
    }
    
    .menu-link {
        color: var(--primary-navy);
        padding: 16px 0;
        justify-content: space-between;
        font-size: 16px;
    }
    
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin-top: 8px;
        background-color: var(--light-bg);
        transition: max-height var(--transition-smooth);
    }
    
    .menu-item.has-dropdown.open .dropdown-content {
        max-height: 600px;
        padding: 12px;
    }
    
    .dropdown-list.two-columns {
        grid-template-columns: 1fr;
    }
    
    .dropdown-link {
        padding: 12px;
        font-size: 14px;
    }
    
    .header-actions {
        width: 100%;
        flex-direction: column;
        padding: 16px 32px 32px;
        gap: 12px;
        border-top: 1px solid var(--border-light);
        margin-top: auto;
    }
    
    .btn-header {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-outline {
        color: var(--primary-navy);
        border-color: var(--primary-navy);
    }
    
    .language-switcher {
        width: 100%;
    }
    
    .language-btn {
        width: 100%;
        justify-content: center;
        color: var(--primary-navy);
        border-color: var(--primary-navy);
    }
    
    .language-dropdown {
        position: static;
        transform: none;
        max-height: 0;
        overflow: hidden;
        margin-top: 8px;
        transition: max-height var(--transition-smooth);
    }
    
    .language-switcher.open .language-dropdown {
        max-height: 200px;
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Responsive */
    .hero-title {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -0.02em;
font-size: 50px;
}
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .btn-hero {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* About Responsive */
    .section-title {
        font-size: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .advantages-section {
        padding: 48px 32px;
    }

    
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 576px) {

    
    .about-content-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 100px;
    }
    :root {
        --section-padding: 60px;
    }
    
    .header-wrapper {
        padding: 0 20px;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .main-nav {
        width: 280px;
    }
    
    .mobile-menu-logo {
        padding: 20px 24px;
    }
    
    .mobile-menu-logo img {
        height: 38px;
    }
    
    .nav-menu {
        padding: 12px 24px;
    }
    
    .header-actions {
        padding: 12px 24px 24px;
    }
    
    .hero-content {
        padding: 90px 20px 60px;
    }
    
    .hero-title {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-size: 24px;
    margin-bottom: 24px;
}
    
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .scroll-indicator {
        bottom: 24px;
    }
    
    .about-section {
        padding: var(--section-padding) 20px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .vm-card {
        padding: 36px 28px;
    }
    
    .advantages-section {
        padding: 40px 24px;
        margin-top: 60px;
    }
    
    .advantages-title {
        font-size: 28px;
    }
    
    .advantages-grid {
        gap: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .about-content-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 100px;
    }
}
/* <!-- ==================== START About Section ==================== --> */
/* CSS Variables */
:root {
    --navy: #1E3A5F;
    --navy-dark: #152840;
    --coral: #FF6B6B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray: #6C757D;
    --gray-light: #E9ECEF;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
}

/* ==================== START About Section ==================== */
.about-section {
    background: var(--white);
    padding: 80px 0;
}

/* About Container */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}


/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Vision & Mission Cards */
.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.vm-card {
    background: var(--off-white);
    border-left: 4px solid var(--coral);
    padding: 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vm-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-card h3 i {
    color: var(--coral);
    font-size: 20px;
}

.vm-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* About Image */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.about-visual-content i {
    font-size: 80px;
    color: var(--coral);
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-visual-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-visual-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Advantages Section */
.advantages-header {
    text-align: center;
    margin-bottom: 40px;
}

.advantages-header h3 {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.advantages-header p {
    font-size: 16px;
    color: var(--gray);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 24px 20px;
    background: var(--off-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral) 0%, #FF8E8E 100%);
    border-radius: 12px;
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.advantage-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr !important;
    }
    
    .about-visual {
        order: -1; /* Image on top */
    }
}


@media (max-width: 768px) {
    .about-container {
        padding: 0 24px;
    }
    
    .section-title {
        font-size: 32px;
    }

    
    .advantages-header h3 {
        font-size: 20px;
    }
    
    .advantages-grid {
        gap: 20px;
    }
    
    .vm-card {
        padding: 20px;
    }
    
    .about-visual {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .advantages-header h3 {
        font-size: 18px;
    }

    .advantage-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral) 0%, #FF8E8E 100%);
    border-radius: 12px;
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 7px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
}

 /* ============================================================ */
/* ================= Service Section Variables ================= */

/* ================= Variables ================= */
:root {
--coral: #FF6B6B;
--navy: #1E3A5F;
--coral-hover: #E85555;
--navy-dark: #152840;
--white: #FFFFFF;
--off-white: #FAFBFC;
--light-bg: #F5F7FA;
--border: #E8ECF1;
--gray: #6B7A8F;
--dark: #1A202C;
--font-main: 'Inter', sans-serif;
--font-heading: 'Sora', sans-serif;
--transition: 0.3s ease;
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: var(--font-main);
background: var(--white);
color: var(--dark);
line-height: 1.6;
}

/* ================= START Services Section ================= */
/* ================= Variables ================= */
:root {
    --coral: #FF6B6B;
    --navy: #1E3A5F;
    --coral-hover: #E85555;
    --navy-dark: #152840;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-bg: #F5F7FA;
    --border: #E8ECF1;
    --gray: #6B7A8F;
    --dark: #1A202C;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* ================= START Services Section ================= */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
}

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

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}


.services-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
}

.services-label::before,
.services-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--coral);
}

.services-label::before {
    right: calc(100% + 12px);
}

.services-label::after {
    left: calc(100% + 12px);
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.tab-btn {
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.tab-btn:hover {
    background: var(--light-bg);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
}

.tab-btn.active::before {
    transform: scaleX(1);
}

.tab-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.tab-btn.active .tab-icon {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    transform: scale(1.1);
}

.tab-icon i {
    font-size: 20px;
    color: var(--gray);
    transition: all var(--transition);
}

.tab-btn.active .tab-icon i {
    color: var(--white);
}

.tab-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    transition: color var(--transition);
}

.tab-btn.active .tab-title {
    color: var(--coral);
}

/* Tabs Content */
.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Content */
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Content Left */
.content-left {
    padding-right: 20px;
}

.content-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 32px;
}

.content-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.content-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--dark);
    padding-left: 4px;
}

.content-features li i {
    color: var(--coral);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.content-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    background: var(--coral);
    color: var(--white);
    border: 2px solid var(--coral);
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
}

.content-btn:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.content-btn i {
    transition: transform var(--transition);
}

.content-btn:hover i {
    transform: translateX(4px);
}

/* Content Right */
.content-right {
    position: relative;
}

.content-image {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(255, 107, 107, 0.2) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.content-image:hover .image-overlay {
    opacity: 1;
}


/* ================= Responsive - Tablet ================= */
@media (max-width: 992px) {
    .services {
        padding: 80px 0;
    }
    
    .services-container {
        padding: 0 24px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .tab-btn {
        flex: 1 1 calc(50% - 6px);
        max-width: none;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
    }
    
    .content-left {
        padding-right: 0;
    }
    
    .content-image {
        height: 350px;
    }
    
    .stats-box {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* ================= Responsive - Mobile ================= */
@media (max-width: 576px) {
    .services {
        padding: 70px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 30px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .tabs-nav {
        flex-direction: column;
        gap: 8px;
        padding: 6px;
    }
    
    .tab-btn {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .tab-icon i {
        font-size: 18px;
    }
    
    .service-content {
        padding: 32px 24px;
        gap: 32px;
    }
    
    .content-heading {
        font-size: 28px;
    }
    
    .content-text {
        font-size: 16px;
    }
    
    .content-features li {
        font-size: 15px;
    }
    
    .content-image {
        height: 300px;
    }
    
    .stats-box {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 20px;
    }
}

/* ================= Clients Section ================= */
/* CSS Variables */
:root {
    --navy: #1E3A5F;
    --navy-dark: #152840;
    --coral: #FF6B6B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray: #6C757D;
    --gray-light: #E9ECEF;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
}

/* ==================== START Client Logos Section ==================== */
.clients-section {
    background: var(--off-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-light);
    overflow: hidden;
    padding-inline: 150px

}

/* Section Header */
.clients-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 40px;
}

.clients-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.clients-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.clients-subtitle {
    font-size: 16px;
    color: var(--gray);
}

/* Logos Slider Container */
.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Logos Track */
.logos-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

/* Logo Item */
.logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 20px;
    background: linear-gradient(90deg, #ff6b6b 0%, #1c3453 100%);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--coral);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gradient Overlays */
.logos-slider::before,
.logos-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white), transparent);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .clients-section {
        padding: 50px 0;
    }
    
    .clients-header {
        margin-bottom: 30px;
        padding: 0 24px;
    }
    
    .clients-title {
        font-size: 24px;
    }
    
    .clients-subtitle {
        font-size: 15px;
    }
    
    .logo-item {
        width: 160px;
        height: 80px;
        margin: 0 15px;
    }
    
    .logos-slider::before,
    .logos-slider::after {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .clients-title {
        font-size: 22px;
    }
    
    .logo-item {
        width: 140px;
        height: 70px;
        margin: 0 10px;
    }
}

/* <!-- ================= START Recruitment Section ================= --> */
/* ================= Variables ================= */
:root {
    --coral: #FF6B6B;
    --navy: #1E3A5F;
    --coral-hover: #E85555;
    --navy-dark: #152840;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-bg: #F5F7FA;
    --border: #E8ECF1;
    --gray: #6B7A8F;
    --dark: #1A202C;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* ================= START Recruitment Section ================= */
.recruitment {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}

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

/* Section Header */
.recruitment-header {
    text-align: center;
    margin-bottom: 70px;
}

.recruitment-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 20px;
}

.recruitment-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Main Cards Grid */
.recruitment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

/* Recruitment Card */
.recruit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
}

.recruit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--navy) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.recruit-card:hover::before {
    transform: scaleX(1);
}

.recruit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral);
}

/* Card for Employer */
.recruit-card.employer {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, var(--white) 50%);
}

/* Card for Job Seeker */
.recruit-card.job-seeker {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, var(--white) 50%);
}

/* Card Icon */
.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: all var(--transition);
}

.recruit-card.job-seeker .card-icon-wrapper {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.card-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -6px;
    background: inherit;
    border-radius: var(--radius-md);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition);
}

.recruit-card:hover .card-icon-wrapper::after {
    opacity: 0.2;
}

.recruit-card:hover .card-icon-wrapper {
    transform: scale(1.05) rotate(-5deg);
}

.card-icon-wrapper i {
    font-size: 36px;
    color: var(--white);
}

/* Card Content */
.card-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 28px;
}

/* Card Features */
.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
    padding-left: 4px;
}

.card-features li i {
    color: var(--coral);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.recruit-card.job-seeker .card-features li i {
    color: var(--navy);
}

/* Card Button */
.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    background: var(--coral);
    color: var(--white);
    border: 2px solid var(--coral);
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
}

.recruit-card.job-seeker .card-btn {
    background: var(--navy);
    border-color: var(--navy);
}

.card-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.recruit-card.job-seeker .card-btn:hover {
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.card-btn i {
    transition: transform var(--transition);
}

.card-btn:hover i {
    transform: translateX(4px);
}

/* Process Section */
.recruitment-process {
    background: var(--white);
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.process-subtitle {
    font-size: 16px;
    color: var(--gray);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(100% - 16px);
    width: calc(100% - 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--navy) 100%);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}


/* ================= Responsive - Tablet ================= */
@media (max-width: 992px) {
    .recruitment {
        padding: 80px 0;
    }
    
    .recruitment-container {
        padding: 0 24px;
    }
    
    .recruitment-title {
        font-size: 36px;
    }
    
    .recruitment-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .recruit-card {
        padding: 40px 32px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .recruitment-cta {
        padding: 50px 40px;
    }
}

/* ================= Responsive - Mobile ================= */
@media (max-width: 576px) {
    .recruitment {
        padding: 70px 0;
    }
    
    .recruitment-container {
        padding: 0 20px;
    }
    
    .recruitment-header {
        margin-bottom: 50px;
    }
    
    .recruitment-title {
        font-size: 30px;
    }
    
    .recruitment-subtitle {
        font-size: 16px;
    }
    
    .recruitment-cards {
        margin-bottom: 60px;
    }
    
    .recruit-card {
        padding: 32px 24px;
    }
    
    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .card-icon-wrapper i {
        font-size: 32px;
    }
    
    .card-heading {
        font-size: 24px;
    }
    
    .card-text {
        font-size: 15px;
    }
    
    .card-features li {
        font-size: 14px;
    }
    
    .recruitment-process {
        padding: 40px 24px;
    }
    
    .process-title {
        font-size: 26px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .recruitment-cta {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

/* =======================Contact Section================== */

/* ================= Variables ================= */
:root {
    --coral: #FF6B6B;
    --navy: #1E3A5F;
    --coral-hover: #E85555;
    --navy-dark: #152840;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-bg: #F5F7FA;
    --border: #E8ECF1;
    --gray: #6B7A8F;
    --dark: #1A202C;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* ================= START Contact Section ================= */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
    padding-inline: 130px

}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 29px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.form-label .required {
    color: var(--coral);
}

/* Input Styling Update — clearer border + placeholder opacity fixed */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--off-white);
    border: 1.8px solid #c3c8d1; 
    border-radius: var(--radius-md);
    transition: all var(--transition);
    outline: none;
}

::placeholder {
    color: #6b7a8f;
    opacity: 0.45; 
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7A8F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: var(--white);
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 12px;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
}

.form-btn:hover {
    background: var(--coral-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35);
}

.form-btn i {
    transition: transform var(--transition);
}

.form-btn:hover i {
    transform: translateX(5px);
}

/* Right Side */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Lottie Animation */
.lottie-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.lottie-container {
    width: 100%;
    height: auto;
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.social-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 60%);
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.social-content {
    position: relative;
    z-index: 1;
}

.social-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--coral);
    border-color: var(--white);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* ==================== CONTACT SECTION ==================== */
   .contact,
   .contact-container,
   .contact-content,
   .contact-form-wrapper,
   .contact-form,
   .form-group,
   .form-row,
   .contact-right {
       max-width: 100%;
       overflow-x: hidden;
   }
   
   .form-input,
   .form-select,
   .form-textarea,
   .form-btn {
       max-width: 100%;
       box-sizing: border-box;
   }
   
   /* ============================================
      TABLET - 992px
      ============================================ */
   @media (max-width: 992px) {
       /* Contact Section */
       .contact {
           padding: 80px 0 !important;
       }
       
       .contact-container {
           padding: 0 24px !important;
       }
       
       /* Section Header */
       .contact-title {
           font-size: 38px !important;
       }
       
       .contact-subtitle {
           font-size: 17px !important;
       }
       
       /* Contact Content - 1 Column */
       .contact-content {
           grid-template-columns: 1fr !important;
           gap: 50px !important;
       }
       
       /* Form Wrapper */
       .contact-form-wrapper {
           padding: 35px 28px !important;
       }
       
       /* Form Row - STILL 2 columns on tablet */
       .form-row {
           grid-template-columns: 1fr 1fr !important;
           gap: 20px !important;
       }
       
       /* Illustration */
       .lottie-wrapper {
           min-height: 320px !important;
           padding: 35px !important;
       }
       
       /* Follow Us */
       .follow-section {
           padding: 30px 25px !important;
       }
   }
   
   /* ============================================
      TABLET - 768px (NEW BREAKPOINT)
      ============================================ */
   @media (max-width: 768px) {
       /* Contact Section */
       .contact {
           padding: 70px 0 !important;
       }
       
       .contact-container {
           padding: 0 20px !important;
       }
       
       /* Section Header */
       .contact-header {
           margin-bottom: 50px !important;
       }
       
       .contact-label {
           font-size: 12px !important;
           margin-bottom: 12px !important;
       }
       
       .contact-title {
           font-size: 34px !important;
           margin-bottom: 16px !important;
       }
       
       .contact-subtitle {
           font-size: 16px !important;
       }
       
       /* Contact Content */
       .contact-content {
           grid-template-columns: 1fr !important;
           gap: 40px !important;
       }
       
       /* Form Wrapper */
       .contact-form-wrapper {
           padding: 30px 20px !important;
           border-radius: 12px !important;
       }
       
       .form-title {
           font-size: 24px !important;
           margin-bottom: 10px !important;
       }
       
       .form-subtitle {
           font-size: 15px !important;
           margin-bottom: 30px !important;
       }
       
       /* Form */
       .contact-form {
           gap: 20px !important;
       }
       
       .form-group {
           gap: 8px !important;
       }
       
       /* Form Row - 1 COLUMN on tablet */
       .form-row {
           grid-template-columns: 1fr !important;
           gap: 20px !important;
       }
       
       /* Form Elements */
       .form-label {
           font-size: 14px !important;
       }
       
       .form-input,
       .form-select {
           padding: 13px 18px !important;
           font-size: 15px !important;
       }
       
       .form-textarea {
           padding: 13px 18px !important;
           font-size: 15px !important;
           min-height: 130px !important;
       }
       
       .form-btn {
           padding: 14px 26px !important;
           font-size: 15px !important;
       }
       
       /* Illustration */
       .lottie-wrapper {
           min-height: 300px !important;
           padding: 30px !important;
           order: -1; /* Move to top */
       }
       
       /* Follow Us */
       .follow-section {
           padding: 28px 22px !important;
           border-radius: 12px !important;
       }
       
       .follow-title {
           font-size: 20px !important;
           margin-bottom: 18px !important;
       }
       
       .social-links {
           gap: 14px !important;
       }
       
       .social-link {
           width: 46px !important;
           height: 46px !important;
           font-size: 19px !important;
       }
   }
   
   /* ============================================
      MOBILE - 576px
      ============================================ */
   @media (max-width: 576px) {
       /* Contact Section */
       .contact {
           padding: 60px 0 !important;
       }
       
       .contact-container {
           padding: 0 16px !important;
       }
       
       /* Section Header */
       .contact-header {
           margin-bottom: 40px !important;
       }
       
       .contact-label {
           font-size: 11px !important;
           letter-spacing: 1.5px !important;
           margin-bottom: 10px !important;
       }
       
       .contact-title {
           font-size: 28px !important;
           line-height: 1.2 !important;
           margin-bottom: 14px !important;
       }
       
       .contact-subtitle {
           font-size: 14px !important;
           line-height: 1.6 !important;
       }
       
       /* Contact Content */
       .contact-content {
           gap: 35px !important;
       }
       
       /* Form Wrapper */
       .contact-form-wrapper {
           padding: 24px 16px !important;
           border-radius: 10px !important;
       }
       
       .form-title {
           font-size: 22px !important;
           margin-bottom: 8px !important;
       }
       
       .form-subtitle {
           font-size: 13px !important;
           margin-bottom: 24px !important;
       }
       
       /* Form */
       .contact-form {
           gap: 18px !important;
       }
       
       .form-group {
           gap: 7px !important;
       }
       
       /* Form Row - 1 COLUMN */
       .form-row {
           grid-template-columns: 1fr !important;
           gap: 18px !important;
       }
       
       /* Form Elements */
       .form-label {
           font-size: 13px !important;
           font-weight: 600 !important;
       }
       
       .form-input,
       .form-select {
           padding: 12px 16px !important;
           font-size: 14px !important;
           border-radius: 8px !important;
           min-height: 44px !important; 
       }
       
       .form-textarea {
           padding: 12px 16px !important;
           font-size: 14px !important;
           min-height: 120px !important;
           border-radius: 8px !important;
       }
       
       .form-btn {
           padding: 14px 24px !important;
           font-size: 14px !important;
           width: 100% !important;
           justify-content: center !important;
           min-height: 48px !important; /* Touch target */
       }
       
       /* Select Dropdown */
       .form-select {
           background-size: 16px !important;
           background-position: right 12px center !important;
       }
       
       /* Illustration */
       .lottie-wrapper {
           min-height: 250px !important;
           padding: 20px !important;
       }
       
       .lottie-container {
           margin: 0 auto !important;
       }
       
       /* Follow Us */
       .follow-section {
           padding: 24px 18px !important;
           border-radius: 10px !important;
       }
       
       .follow-title {
           font-size: 18px !important;
           margin-bottom: 16px !important;
       }
       
       .social-links {
           gap: 12px !important;
           justify-content: center !important;
       }
       
       .social-link {
           width: 44px !important;
           height: 44px !important;
           font-size: 18px !important;
       }
   }
   
   /* ============================================
      EXTRA SMALL MOBILE - 375px (NEW BREAKPOINT)
      ============================================ */
   @media (max-width: 375px) {
       /* Contact Section */
       .contact {
           padding: 50px 0 !important;
       }
       
       .contact-container {
           padding: 0 14px !important;
       }
       
       /* Section Header */
       .contact-header {
           margin-bottom: 35px !important;
       }
       
       .contact-label {
           font-size: 10px !important;
           letter-spacing: 1px !important;
       }
       
       .contact-title {
           font-size: 24px !important;
           margin-bottom: 12px !important;
       }
       
       .contact-subtitle {
           font-size: 13px !important;
       }
       
       /* Contact Content */
       .contact-content {
           gap: 30px !important;
       }
       
       /* Form Wrapper */
       .contact-form-wrapper {
           padding: 20px 14px !important;
           border-radius: 8px !important;
       }
       
       .form-title {
           font-size: 20px !important;
           margin-bottom: 6px !important;
       }
       
       .form-subtitle {
           font-size: 12px !important;
           margin-bottom: 20px !important;
       }
       
       /* Form */
       .contact-form {
           gap: 16px !important;
       }
       
       .form-group {
           gap: 6px !important;
       }
       
       /* Form Row */
       .form-row {
           gap: 16px !important;
       }
       
       /* Form Elements */
       .form-label {
           font-size: 12px !important;
       }
       
       .form-input,
       .form-select {
           padding: 11px 14px !important;
           font-size: 13px !important;
           border-radius: 7px !important;
       }
       
       .form-textarea {
           padding: 11px 14px !important;
           font-size: 13px !important;
           min-height: 100px !important;
           border-radius: 7px !important;
       }
       
       .form-btn {
           padding: 13px 20px !important;
           font-size: 13px !important;
       }
       
       /* Illustration */
       .lottie-wrapper {
           min-height: 200px !important;
           padding: 16px !important;
       }
       
       
       /* Follow Us */
       .follow-section {
           padding: 20px 16px !important;
       }
       
       .follow-title {
           font-size: 16px !important;
           margin-bottom: 14px !important;
       }
       
       .social-links {
           gap: 10px !important;
       }
       
       .social-link {
           width: 40px !important;
           height: 40px !important;
           font-size: 16px !important;
       }
   }
   
   /* ============================================
      LANDSCAPE MOBILE - Height < 500px
      ============================================ */
   @media (max-height: 500px) and (orientation: landscape) {
       .contact {
           padding: 40px 0 !important;
       }
       
       .contact-header {
           margin-bottom: 30px !important;
       }
       
       .lottie-wrapper {
           display: none !important; /* Hide illustration */
       }
       
       .contact-content {
           grid-template-columns: 1fr !important;
       }
       
       .contact-form-wrapper {
           padding: 20px !important;
       }
   }
   
   /* ============================================
      FOCUS STATES - Better Accessibility
      ============================================ */
   @media (max-width: 768px) {
       .form-input:focus,
       .form-select:focus,
       .form-textarea:focus {
           outline: 2px solid var(--coral) !important;
           outline-offset: 2px !important;
           border-color: var(--coral) !important;
       }
       
       .form-btn:focus {
           outline: 2px solid var(--navy) !important;
           outline-offset: 2px !important;
       }
   }
   
   /* ============================================
      PREVENT ZOOM ON INPUT FOCUS (iOS)
      ============================================ */
   @media (max-width: 576px) {
       .form-input,
       .form-select,
       .form-textarea {
           font-size: 16px !important; /* Prevent iOS zoom */
       }
   }
   
   /* ============================================
      FIX PLACEHOLDER TEXT
      ============================================ */
   @media (max-width: 576px) {
       .form-input::placeholder,
       .form-textarea::placeholder {
           font-size: 13px !important;
           color: #999 !important;
       }
   }
   
   /* ============================================
      ENSURE BUTTONS ARE TAPPABLE
      ============================================ */
   @media (max-width: 576px) {
       .form-btn,
       .social-link {
           min-width: 44px !important;
           min-height: 44px !important;
       }
   }
   
   /* ============================================
      FIX REQUIRED ASTERISK
      ============================================ */
   @media (max-width: 576px) {
       .form-label .required {
           font-size: 14px !important;
       }
   }
   

/* <!-- ================= START Footer ================= --> */
    /* ================= Variables ================= */
:root {
    --coral: #FF6B6B;
    --navy: #1E3A5F;
    --coral-hover: #E85555;
    --navy-dark: #152840;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-bg: #F5F7FA;
    --border: #E8ECF1;
    --gray: #6B7A8F;
    --dark: #1A202C;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* ================= START Footer ================= */
.footer {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--navy) 50%, var(--coral) 100%);
}

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

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer About */
.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--coral);
    border-color: var(--white);
    transform: translateY(-4px);
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--coral);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link i {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
}

.footer-link:hover {
    color: var(--coral);
    padding-left: 8px;
}

.footer-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 16px;
    color: var(--coral);
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.contact-text {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
}

.contact-text a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-text a:hover {
    color: var(--coral);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    margin-top: 8px;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 18px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

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

.footer-copyright a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-copyright a:hover {
    color: var(--white);
}

ol, ul{
    padding-left: 0px !important;
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ================= Responsive - Tablet ================= */
@media (max-width: 992px) {
    .footer {
        padding-top: 60px;
    }
    
    .footer-container {
        padding: 0 24px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

/* ================= Responsive - Mobile ================= */
@media (max-width: 576px) {
    .footer {
        padding-top: 50px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 40px;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-logo img {
        height: 42px;
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-title {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-icon i {
        font-size: 14px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .whatsapp-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 24px 0;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}



/* Enhanced Typography */
h1, h2, h3, .section-title, .hero-title {
    letter-spacing: -0.02em;
}

.section-subtitle {
    line-height: 1.8;
}

/* <!-- ==================== START Chatbot ==================== --> */
/* ================= Variables ================= */
:root {
    --coral: #FF6B6B;
    --navy: #1E3A5F;
    --coral-hover: #E85555;
    --navy-dark: #152840;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-bg: #F5F7FA;
    --border: #E8ECF1;
    --gray: #6B7A8F;
    --dark: #1A202C;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* ================= START Chatbot ================= */

/* Chatbot Toggle Button */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.4);
    transition: all var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.5);
}

.chatbot-toggle.active {
    background: var(--navy);
}

/* Pulse Animation */
.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--coral);
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Notification Badge */
.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #FF3B3B;
    border-radius: 50%;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Chatbot Window */
.chatbot-window {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 370px;
    height: 470px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 998;
    overflow: hidden;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.chatbot-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
}

.chatbot-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.chatbot-info h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.chatbot-status {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Chatbot Messages */
.chatbot-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--off-white);
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* Message */
.message {
    display: flex;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.message.bot .message-avatar {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    color: var(--white);
}

.message.user .message-avatar {
    background: var(--navy);
    color: var(--white);
}

.message-content {
    max-width: 70%;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
}

.message.bot .message-bubble {
    background: var(--white);
    color: var(--dark);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.message.user .message-bubble {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: var(--gray);
    margin-top: 6px;
    padding: 0 4px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-bottom-left-radius: 4px;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--gray);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Quick Replies */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.quick-reply {
    padding: 8px 16px;
    background: var(--white);
    border: 2px solid var(--coral);
    color: var(--coral);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.quick-reply:hover {
    background: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
}

/* Chatbot Input */
.chatbot-input-wrapper {
    padding: 20px 24px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.chatbot-input-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    padding: 12px 18px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 24px;
    outline: none;
    transition: all var(--transition);
}

.chatbot-input:focus {
    background: var(--white);
    border-color: var(--coral);
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.chatbot-send:active {
    transform: scale(0.95);
}

/* ================= Responsive - Mobile ================= */
@media (max-width: 576px) {
    .chatbot-toggle {
        width: 56px;
        height: 56px;
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }
    
    .chatbot-window {
        bottom: 90px;
        left: 20px;
        right: 100px;
        width: auto;
        height: 440px;
    }
    
    .chatbot-header {
        padding: 18px 20px;
    }
    
    .chatbot-avatar {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .chatbot-info h4 {
        font-size: 16px;
    }
    
    .chatbot-messages {
        padding: 20px;
    }
    
    .message-content {
        max-width: 75%;
    }
    
    .chatbot-input-wrapper {
        padding: 16px 20px;
    }
}

/* ==================== START Loader Styles ==================== */

:root {
    --coral: #FF6B6B;
    --navy: #1E3A5F;
    --coral-hover: #E85555;
    --navy-dark: #152840;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Loader Container */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Background Decoration */
.loader-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.loader-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
}

.loader-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.loader-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

.loader-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

/* Loader Content */

/* Spinner */
.loader-spinner {
    width: 60px;
    height: 60px;
    position: relative;
    animation: spinnerRotate 2s linear infinite;
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--coral);
    border-right-color: var(--coral);
    border-radius: 50%;
    animation: spinnerPulse 1.5s ease-in-out infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: rgba(255, 107, 107, 0.5);
    border-right-color: rgba(255, 107, 107, 0.5);
    animation-delay: -0.5s;
}

@keyframes spinnerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Loading Text */
.loader-text {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.loader-text span {
    display: inline-block;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-text span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
}



/* Responsive */
@media (max-width: 576px) {

    .loader-text {
        font-size: 20px;
    }
    

    
    .loader-circle-1,
    .loader-circle-2 {
        width: 250px;
        height: 250px;
    }
}

/* ==================== SCrol to Top ==================== */

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

/* Show button when scrolled */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover effect */
.scroll-to-top:hover {
    background: linear-gradient(135deg, #FF5252 0%, #FF7676 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* Active state */
.scroll-to-top:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Icon animation on hover */
.scroll-to-top:hover i {
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Pulse animation when first appears */
.scroll-to-top.show {
    animation: pulseIn 0.6s ease-out;
}

@keyframes pulseIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 576px) {
    .scroll-to-top {
        bottom: 80px; /* Above chatbot if exists */
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

/* Alternative Style 1: Navy Background */
.scroll-to-top.navy-style {
    background: linear-gradient(135deg, #1E3A5F 0%, #152840 100%);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.scroll-to-top.navy-style:hover {
    background: linear-gradient(135deg, #2A4A75 0%, #1E3A5F 100%);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.4);
}

/* Alternative Style 2: Outlined */
.scroll-to-top.outlined-style {
    background: #FFFFFF;
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.outlined-style:hover {
    background: #FF6B6B;
    color: #FFFFFF;
    border-color: #FF6B6B;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

/* Alternative Style 3: With Progress Ring */
.scroll-to-top.progress-style {
    background: conic-gradient(
        #FF6B6B var(--scroll-progress, 0%),
        #E9ECEF var(--scroll-progress, 0%)
    );
    padding: 3px;
}

.scroll-to-top.progress-style::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #FFFFFF;
    border-radius: 50%;
}

.scroll-to-top.progress-style i {
    position: relative;
    z-index: 1;
    color: #FF6B6B;
}

/* Accessibility */
.scroll-to-top:focus {
    outline: 2px solid #FF6B6B;
    outline-offset: 2px;
}

.scroll-to-top:focus:not(:focus-visible) {
    outline: none;
}

/* Print - Hide button */
@media print {
    .scroll-to-top {
        display: none !important;
    }
}
