/* ===== General Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A92DD;
    --primary-light: #0AA8F0;
    --secondary-color: #34495e;
    --accent-color: #0A92DD;
    --accent-dark: #0878B5;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --border-radius: 12px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== Font Awesome Icon Styles ===== */
i, [class*="fa-"] {
    display: inline-block;
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1;
    background: var(--white);
    visibility: visible;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.top-bar-item:hover {
    color: var(--primary-color);
}

.top-bar-item i {
    color: var(--white);
    font-size: 0.75rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a92dd 0%, #667eea 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(10, 146, 221, 0.3);
}

/* Fix phone icon direction */
.top-bar-item .fa-phone-alt {
    transform: scaleX(-1);
}

/* Copy icon in top-bar */
.copy-icon {
    font-size: 0.65rem !important;
    width: 20px !important;
    height: 20px !important;
    background: rgba(10, 146, 221, 0.08) !important;
    box-shadow: none !important;
    color: var(--primary-color) !important;
    opacity: 0 !important;
    transition: all 0.3s ease;
    margin-left: 6px;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.top-bar-item:hover .copy-icon {
    opacity: 1 !important;
    background: rgba(10, 146, 221, 0.15) !important;
}

.copy-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #100F57;
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    animation: tooltipFadeDown 1.5s ease forwards;
    z-index: 1100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.copy-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #100F57;
}

@keyframes tooltipFadeDown {
    0% { opacity: 0; transform: translateX(-50%) translateY(-4px); }
    15% { opacity: 1; transform: translateX(-50%) translateY(0); }
    70% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(4px); }
}

.top-bar-item {
    position: relative;
    cursor: pointer;
}

/* ===== Navbar ===== */
.navbar {
    background: linear-gradient(135deg, #100F57 0%, #1a1980 50%, #0a92dd 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    flex-shrink: 0;
    padding: 4px;
    animation: logoSpin 1s ease-in-out;
    animation-delay: 5s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

/* Repeat the spin every 10 seconds */
@keyframes logoSpin {
    0% { transform: perspective(600px) rotateY(0deg); }
    30% { transform: perspective(600px) rotateY(180deg) scale(1.1); }
    60% { transform: perspective(600px) rotateY(300deg) scale(1.05); }
    100% { transform: perspective(600px) rotateY(360deg) scale(1); }
}

/* Logo 3D box wrapper */
.logo-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fef9c3 0%, #fde68a 50%, #fcd34d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -2px 4px rgba(0,0,0,0.08);
    perspective: 600px;
    flex-shrink: 0;
    animation: logoBoxGlow 3s ease-in-out infinite;
}

@keyframes logoBoxGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3), inset 0 1px 0 rgba(255,255,255,0.5); }
    50% { box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5), inset 0 1px 0 rgba(255,255,255,0.7); }
}

/* Logo text animation */
.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    position: relative;
    background: linear-gradient(90deg, #fff 0%, #fcd34d 25%, #fff 50%, #93c5fd 75%, #fff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoTextShimmer 3s ease-in-out infinite;
}

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

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 2rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links .btn-cta {
    overflow: hidden;
    display: inline-block;
}

.btn-cta {
    background: linear-gradient(135deg, #0a92dd 0%, #667eea 100%) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(10, 146, 221, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #667eea 0%, #0a92dd 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 146, 221, 0.4);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    color: white !important;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px !important;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-login i {
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    border: none;
    background: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #100F57 0%, #1a1980 50%, #0a92dd 100%);
    height: 100vh;
    width: 100%;
    margin-left: 0;
    color: var(--white);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 146, 221, 0.6) 0%, rgba(10, 146, 221, 0.3) 30%, rgba(10, 146, 221, 0.1) 60%, transparent 100%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    z-index: 0;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 146, 221, 0.5) 0%, rgba(10, 146, 221, 0.25) 30%, rgba(10, 146, 221, 0.05) 60%, transparent 100%);
    border-radius: 50%;
    bottom: 50px;
    left: -150px;
    z-index: 0;
    filter: blur(50px);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
}

/* Hero Content - matching page-hero styles */
.hero .hero-content {
    text-align: center;
    color: #fff;
}

.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .hero-badge i {
    color: #f1c40f;
    font-size: 1.2rem;
}

.hero .hero-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
}

.hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    min-height: 2.4em;
    display: block;
    text-align: center;
}

.hero .gradient-text {
    background: linear-gradient(135deg, #0a92dd, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-card-wrapper {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    pointer-events: auto;
    margin-top: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 10px 28px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0a92dd 0%, #667eea 100%);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(10, 146, 221, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(10, 146, 221, 0.45);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* ===== Hero Card Container ===== */
.card-slider {
    perspective: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.slide-card {
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: translateX(0);
    max-width: 1200px;
    width: calc(100vw - 40px);
    max-height: 525px;
    aspect-ratio: 16/9;
    border: none;
    position: relative;
    padding: 3px;
    background: conic-gradient(from var(--glow-angle, 0deg), #3498db, #e74c3c, #f1c40f, #2ecc71, #9b59b6, #3498db);
    animation: glowBorderRotate 3s linear infinite;
}
.slide-card::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: conic-gradient(from var(--glow-angle, 0deg), #3498db, #e74c3c, #f1c40f, #2ecc71, #9b59b6, #3498db);
    filter: blur(14px);
    opacity: 0.5;
    z-index: -1;
    animation: glowBorderRotate 3s linear infinite;
}
.slide-card > .card-image {
    border-radius: 17px;
    overflow: hidden;
    height: 100%;
}
@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes glowBorderRotate {
    to {
        --glow-angle: 360deg;
    }
}

.slide-card.push-out .card-image img {
    animation: fadeOutSlider 0.5s ease forwards;
}

.slide-card.push-in .card-image img {
    animation: fadeInSlider 0.5s ease forwards;
}

@keyframes fadeOutSlider {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(1.03);
    }
}

@keyframes fadeInSlider {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: rotateY(0deg) scale(1);
}

.card-image {
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #100F57 0%, #0a92dd 100%);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.08) 0%, rgba(231, 76, 60, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.slide-card:hover .card-image img {
    transform: scale(1);
    filter: brightness(1);
}

.card-info {
    display: none;
}

/* ===== Slider Dots ===== */
.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ===== Trusted Schools Section ===== */
.trusted-schools {
    padding: 30px 0 60px 0;
    background: transparent;
    text-align: center;
    margin-top: 0;
}

.trusted-schools h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 40px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    display: none;
}

/* ===== Logo Carousel ===== */
.logos-carousel {
    overflow: hidden;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.logos-carousel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.logos-carousel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.logos-track {
    display: flex;
    gap: 50px;
    animation-name: scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    animation-fill-mode: forwards;
    padding: 0 20px;
    will-change: transform;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 140px;
    height: 80px;
    transition: var(--transition);
}

.logo-item img {
    max-width: 130px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

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

/* ===== Why Choose Us Section ===== */
.why-choose-us {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Legacy features-grid (kept for sub-pages) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--light-bg);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(231, 76, 60, 0.1) 100%);
    border-radius: 15px;
    box-shadow: inset 0 0 0 2px rgba(52, 152, 219, 0.4), inset 0 0 0 3px rgba(231, 76, 60, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-icon i {
    display: block;
    color: var(--primary-light);
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Bento Box Grid (Why Choose Us - Homepage) ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Bento layout: varied spanning for visual interest */
.bento-card-1 {
    grid-column: span 2;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.bento-card-2 {
    grid-column: span 1;
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

.bento-card-3 {
    grid-column: span 1;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.bento-card-4 {
    grid-column: span 2;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

/* Big cards: horizontal layout — text on left, image on right */
.bento-card-1,
.bento-card-4 {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.bento-card-1 .bento-text-content,
.bento-card-4 .bento-text-content {
    flex: 1;
    min-width: 0;
}

.bento-card-1 .bento-illustration,
.bento-card-4 .bento-illustration {
    flex-shrink: 0;
    max-width: 180px;
    width: 180px;
    margin-bottom: 0;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #667eea);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 146, 221, 0.12);
    border-color: rgba(10, 146, 221, 0.15);
}

/* SVG Illustration container */
.bento-illustration {
    width: 100%;
    max-width: 140px;
    margin-bottom: 1.2rem;
}

.bento-illustration svg,
.bento-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.bento-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== Our Works Section ===== */
.our-works {
    padding: 100px 0;
    background: var(--light-bg);
}

.our-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ===== Works Carousel ===== */
.works-carousel {
    overflow: hidden;
    background: transparent;
    padding: 20px 0;
    margin-top: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.works-track {
    display: flex;
    gap: 2rem;
    padding: 0 20px;
    will-change: transform;
}

.scroll-left-right {
    animation-name: scrollLeftRight;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    animation-fill-mode: forwards;
}

.scroll-right-left {
    animation-name: scrollRightLeft;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    animation-fill-mode: forwards;
}

@keyframes scrollLeftRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRightLeft {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 220px;
    width: 280px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-item:hover img {
    transform: scale(1.05);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-light);
    max-width: 500px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.stars i {
    margin-right: 0.3rem;
}

.testimonial-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-style: normal;
}

/* ===== Download App CTA Section ===== */
.download-app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    position: relative;
}

.download-app-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
}

.download-app-content {
    flex: 1;
}

.download-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.download-app-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.download-app-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}

.download-app-features {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
}

.download-app-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.download-app-feature i {
    font-size: 1rem;
    color: #fbbf24;
}

.download-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: #667eea;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.download-app-visual {
    flex-shrink: 0;
    position: relative;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    border-radius: 26px;
    overflow: hidden;
}

.phone-status-bar {
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.phone-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-card {
    height: 80px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.phone-card.short {
    height: 50px;
}

@media (max-width: 768px) {
    .download-app-wrap {
        flex-direction: column;
        text-align: center;
    }
    .download-app-title {
        font-size: 2rem;
    }
    .download-app-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    .download-app-desc {
        margin: 0 auto 32px;
    }
    .phone-mockup {
        width: 180px;
        height: 360px;
        transform: rotate(0deg);
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-section .section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-form-side {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.contact-form-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-heading i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(10, 146, 221, 0.1);
    background: var(--white);
}

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

.form-message {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 14px 20px;
    font-size: 1.05rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: space-between;
}

.contact-info-header {
    margin-bottom: 0.5rem;
}

.contact-info-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.contact-info-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.info-box {
    display: flex;
    gap: 1.2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(10, 146, 221, 0.1);
    border-color: rgba(10, 146, 221, 0.15);
}

.info-icon {
    font-size: 1.4rem;
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
    background: #100F57;
    color: var(--white);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 146, 221, 0.5) 0%, rgba(10, 146, 221, 0.2) 30%, rgba(10, 146, 221, 0.05) 60%, transparent 100%);
    border-radius: 50%;
    top: -250px;
    left: -200px;
    z-index: 0;
    filter: blur(60px);
}

.footer::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 146, 221, 0.4) 0%, rgba(10, 146, 221, 0.15) 30%, rgba(10, 146, 221, 0.03) 60%, transparent 100%);
    border-radius: 50%;
    bottom: -100px;
    right: -150px;
    z-index: 0;
    filter: blur(50px);
}

.footer-map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map-container iframe {
    display: block;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.8fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section:last-child {
    grid-column: span 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.footer-bottom {
    background: var(--white);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: -1rem;
    padding: 10px 0;
    text-align: center;
    color: var(--text-color);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100vw;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== Responsive Design ===== */
/* Note: All responsive styles have been moved to responsive.css */

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

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

.hero-content {
    animation: slideInUp 0.8s ease-out;
}

.feature-card {
    animation: fadeIn 0.6s ease-out;
}

.work-item {
    animation: fadeIn 0.6s ease-out;
}
/* Add these to your CSS if they aren't there */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Crossfade transition helpers (handled by animations above) */

/* ===== Typing Effect ===== */
#typingLine {
    display: inline;
}

.typing-wrapper {
    display: inline;
}

.typing-highlight {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Different gradient colors for each typing line */
.typing-gradient-0 .typing-highlight { background: linear-gradient(135deg, #fbbf24, #f97316); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-1 .typing-highlight { background: linear-gradient(135deg, #06b6d4, #3b82f6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-2 .typing-highlight { background: linear-gradient(135deg, #a855f7, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-3 .typing-highlight { background: linear-gradient(135deg, #34d399, #059669); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-4 .typing-highlight { background: linear-gradient(135deg, #f43f5e, #e11d48); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-5 .typing-highlight { background: linear-gradient(135deg, #818cf8, #6366f1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-6 .typing-highlight { background: linear-gradient(135deg, #fb923c, #dc2626); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-7 .typing-highlight { background: linear-gradient(135deg, #22d3ee, #8b5cf6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-8 .typing-highlight { background: linear-gradient(135deg, #facc15, #84cc16); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.typing-gradient-9 .typing-highlight { background: linear-gradient(135deg, #f472b6, #7c3aed); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.typing-cursor {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    animation: blink 0.8s step-end infinite;
    margin-left: 2px;
}

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

/* ===== Download Our App Section ===== */
.download-app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #100F57 0%, #1a1980 50%, #0a92dd 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.download-app-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    z-index: 0;
}

.download-app-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-app-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.download-app-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

/* PWA Install Button */
.pwa-install-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--white);
    color: #100F57;
    border-radius: 60px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: inherit;
}

.pwa-install-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.pwa-install-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.pwa-install-btn.pwa-installed {
    background: #27ae60;
    color: #fff;
    pointer-events: none;
}

.pwa-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.8rem;
}

/* PWA Features List */
.pwa-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pwa-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.pwa-feature svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 7px;
}

/* Phone Mockup Visual */
.download-app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pwa-phone-mockup {
    width: 260px;
    height: 460px;
    background: #1e1e2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-statusbar {
    height: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
    position: relative;
    z-index: 2;
}

.phone-statusbar::before {
    content: '';
    width: 14px;
    height: 14px;
    background: #1e1e2e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(30, 30, 46, 0.3);
}

.phone-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
}

.phone-logo {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(4px);
}

.phone-logo svg {
    width: 32px;
    height: 32px;
}

.phone-text {
    text-align: center;
}

.phone-text h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.phone-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0;
}

.phone-dots {
    display: flex;
    gap: 6px;
    margin-top: 0.5rem;
}

.phone-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.phone-dots span:first-child {
    background: rgba(255, 255, 255, 0.7);
}

/* Phone Mockup Image Slideshow */
.phone-slideshow {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.phone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.phone-slide.active {
    opacity: 1;
}

/* CTA Action Bar (Install button + QR) */
.pwa-action-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.pwa-action-bar .pwa-install-btn {
    flex-shrink: 0;
}

.pwa-action-bar-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.pwa-action-bar-qr {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pwa-action-bar-qr img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: white;
    padding: 4px;
    flex-shrink: 0;
}

.pwa-qr-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.pwa-qr-text strong {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

/* ===== Navbar Button Group ===== */
.nav-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

/* ===== Get Our App Navbar Button ===== */
.btn-app {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-app:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
}

.btn-app i {
    font-size: 0.85rem;
}

/* ===== Avatar Placeholder ===== */
.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-placeholder i {
    color: #94a3b8;
    font-size: 1.2rem;
}

/* ===== 3D Cartoon Avatar Placeholders ===== */
.avatar-3d {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15), inset 0 -2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.avatar-3d svg {
    width: 38px;
    height: 38px;
}
.avatar-3d-1 {
    background: linear-gradient(145deg, #6366f1, #4f46e5);
    color: #a5b4fc;
}
.avatar-3d-2 {
    background: linear-gradient(145deg, #f472b6, #ec4899);
    color: #fbcfe8;
}
.avatar-3d-3 {
    background: linear-gradient(145deg, #34d399, #10b981);
    color: #a7f3d0;
}
.avatar-3d-4 {
    background: linear-gradient(145deg, #fbbf24, #f59e0b);
    color: #fde68a;
}
.avatar-3d-5 {
    background: linear-gradient(145deg, #60a5fa, #3b82f6);
    color: #bfdbfe;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}
.toast-notification.success { background: #27ae60; }
.toast-notification.error { background: #e74c3c; }

/* ===== Scroll to Top Button ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0a92dd, #667eea);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(10, 146, 221, 0.4);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 146, 221, 0.5);
}

.scroll-top-btn:active {
    transform: translateY(-2px);
}

.scroll-top-btn i {
    line-height: 1;
}

@media (max-width: 767px) {
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
    }
}

/* ===== Page-wide Polish & Micro Animations ===== */

/* Staggered reveal for bento cards */
.bento-card:nth-child(1) { transition-delay: 0s; }
.bento-card:nth-child(2) { transition-delay: 0.08s; }
.bento-card:nth-child(3) { transition-delay: 0.16s; }
.bento-card:nth-child(4) { transition-delay: 0.24s; }

/* Staggered reveal for testimonial cards */
.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* Smooth section transitions */
section {
    transition: opacity 0.4s ease;
}

/* Contact form input focus glow */
.contact-wrapper input:focus,
.contact-wrapper textarea:focus,
.contact-wrapper select:focus {
    box-shadow: 0 0 0 3px rgba(10, 146, 221, 0.15);
    transition: box-shadow 0.3s ease;
}

/* Subtle hover lift for work items */
.work-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Trusted client logo hover */
.logo-item img {
    transition: transform 0.3s ease, filter 0.3s ease;
}
.logo-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Info box hover (contact section) */
.info-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Button pulse on CTA */
@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(10, 146, 221, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(10, 146, 221, 0.5); }
}
.hero-cta .btn-primary {
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Dots active pulse */
.dot.active {
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}