/* ===================================
   MY CHOICE ENGLISH PLUS - STYLESHEET
   Professional Design System
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #14539b;
    --primary-light: #2f77c2;
    --primary-dark: #0a2a4d;
    --secondary-color: #d4af37;
    --secondary-light: #f2d675;
    --accent-color: #b8860b;
    --accent-gradient: linear-gradient(135deg, var(--secondary-color), var(--accent-color));

    --text-dark: #1a1a2e;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;

    --bg-light: #eef4fb;
    --bg-cream: #fdf6e6;
    --bg-white: #ffffff;
    --gold-tint: rgba(212, 175, 55, 0.12);
    --blue-tint: rgba(20, 83, 155, 0.08);

    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}


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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.highlight {
    color: var(--secondary-color);
    position: relative;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-light {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-header {
    background: var(--accent-gradient);
    color: var(--text-dark);
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    padding: 8px 0;
    position: relative;
    z-index: 1002;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--secondary-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.phone-link:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.phone-link i {
    color: var(--secondary-color);
}

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


.tb-brand{font-family:'DM Serif Display',serif;font-size:25px;color:#fff;flex:1;letter-spacing:0.2px;}
.tb-brand span{color:var(--teal-light);}

.social-mini a {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-mini a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Header */
.header {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

/* Logo - base (desktop) sizing */
.logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 70px !important;
    width: auto !important;
    max-width: 100px;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-brand-name {
    font-family: 'DM Serif Display', serif;
    font-size: 35px;
    color: #7C0902;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.logo-plus {
    font-family: serif;
    color: goldenrod;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 12px;
    color: #7C0902;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-top: 0px;
    line-height: 1.1;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.mobile-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    margin-top: 100px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomIn 20s ease infinite;
}

@keyframes zoomIn {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.15); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 30, 60, 0.45) 0%, rgba(5, 18, 35, 0.52) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

.slide-content h1 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 3.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.4);
    -webkit-text-stroke: 0.5px rgba(255,255,255,0.3);
    paint-order: stroke fill;
}

.slide-content p {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8), 0 0 12px rgba(0,0,0,0.5);
}

.slide-content h1 .highlight {
    color: var(--secondary-color);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5), 0 0 16px rgba(0,0,0,0.4);
    -webkit-text-stroke: 0.3px rgba(0,0,0,0.3);
}

.slide-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
}

.slider-dots {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    z-index: 5;
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.hero-stats-bar .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-stats-bar .stat-item i {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.stat-info {
    text-align: left;
}

.stat-info .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-info .stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page Banner */
.page-banner {
    height: 400px;
    background: linear-gradient(135deg, #14539b 0%, #0a2a4d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 100px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/4144932/pexels-photo-4144932.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    opacity: 0.1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.85) 0%, rgba(15, 31, 51, 0.95) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-content h1 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Gallery Section */
.gallery-section {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #f9f8f4 0%, #f4f5f7 100%);
}

/* NRI & International Section */
.nri-section {
    padding: 90px 0 70px;
    background: var(--bg-white);
}

.nri-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: center;
}

.nri-map-card,
.nri-content-card,
.nri-support-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.nri-map-card {
    padding: 24px;
}

.nri-hero-image {
    height: 100%;
    min-height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.nri-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.nri-hero-image:hover img {
    transform: scale(1.04);
}

.nri-map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.world-map {
    width: 100%;
}

.world-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.map-label {
    font-family: var(--font-body);
    font-size: 15px;
    fill: var(--primary-color);
    font-weight: 600;
}

.map-continent {
    fill: #e2e8f0;
    stroke: #cbd5e1;
    stroke-width: 1.5;
}

.map-pin-ring {
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 3;
    transform-origin: center;
    transform-box: fill-box;
    animation: mapPulse 2.4s ease-out infinite;
}

.map-pin-dot {
    fill: var(--primary-color);
}

@keyframes mapPulse {
    0% {
        opacity: 0.9;
        transform: scale(0.6);
    }
    70% {
        opacity: 0;
        transform: scale(1.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.nri-content-card {
    padding: 32px;
}

.nri-content-card h3 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.nri-content-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.nri-support-section {
    padding: 0 0 90px;
    background: var(--bg-white);
}

.nri-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.nri-support-card {
    padding: 28px;
}

.nri-support-card h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.nri-support-card p {
    color: var(--text-muted);
    margin: 0;
}

.gallery-intro {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-intro-card {
    max-width: 760px;
    padding: 24px 30px;
    background: var(--bg-white);
    border: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.gallery-intro-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.gallery-intro-card p {
    color: var(--text-muted);
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 10px;
}

.gallery-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(30, 58, 95, 0.06);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    display: block;
}

.gallery-content {
    padding: 20px 22px 24px;
}

.gallery-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.gallery-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Feature Sections */
.feature-section {
    padding: 100px 0;
}

.feature-section.alt-bg {
    background: var(--bg-light);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    margin-bottom: 20px;
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.feature-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.f-stat {
    text-align: center;
}

.f-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.f-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feature-image {
    flex: 1;
    position: relative;
}

.feature-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.feature-image .resume-mockup {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    background: var(--bg-white);
}

.feature-image:hover img {
    transform: scale(1.02);
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-header p {
    color: var(--text-muted);
}

.section-header.light h2,
.section-header.light p {
    color: var(--text-light);
}

.section-header.light h2::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 83, 155, 0.08);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(20, 83, 155, 0.18);
    border-color: transparent;
}

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

.course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.course-card h3 {
    margin-bottom: 16px;
}

.course-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.course-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.course-link:hover {
    gap: 12px;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue-tint), var(--gold-tint));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--accent-gradient);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-box:hover .feature-icon i {
    color: var(--text-dark);
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.why-image {
    text-align: center;
}

.why-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Gain Section */
.gain-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #14539b 0%, #0a2a4d 100%);
}

.gain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gain-item {
    text-align: center;
    padding: 30px;
}

.gain-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.gain-item h3 {
    color: var(--text-light);
    margin-bottom: 12px;
}

.gain-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--accent-gradient);
    text-align: center;
}

.cta-section h2 {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-section h2 .highlight {
    color: #ffffff;
}

.cta-section p {
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Location Section */
.location-section {
    padding: 100px 0;
}

.location-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.location-info {
    flex: 1;
}

.location-info h2 {
    margin-bottom: 16px;
}

.location-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
}

.location-map {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* About Page Styles */
.about-story {
    padding: 100px 0;
}

.story-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.mission-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.mission-card h3 {
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--text-muted);
}

.about-why {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.why-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.why-item h3 {
    margin-bottom: 12px;
}

.why-item p {
    color: var(--text-muted);
}

.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #14539b 0%, #0a2a4d 100%);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-count {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
}

.stat-title {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 5px;
}

.team-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    flex: 0 1 calc(33.333% - 20px);
    max-width: 360px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 8px;
}

.team-info span {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

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

/* Courses Page Styles */
.course-intro {
    padding: 80px 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.course-detail {
    padding: 80px 0;
}

.course-detail.alt-bg {
    background: var(--bg-light);
}

.course-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.course-row.reverse {
    flex-direction: row-reverse;
}

.course-image {
    flex: 1;
}

.course-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.course-info {
    flex: 1;
}

.course-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-gradient);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.course-info h2 {
    margin-bottom: 16px;
}

.course-info > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.course-features {
    margin-bottom: 24px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-dark);
}

.course-features i {
    color: var(--success);
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 24px;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.course-meta i {
    color: var(--secondary-color);
}

.course-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
}

.course-detail.alt-bg .course-stats {
    background: var(--bg-white);
}

.cs-item {
    text-align: center;
}

.cs-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cs-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group label span {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.success-message {
    text-align: center;
    padding: 40px;
    background: #e8f5e9;
    border-radius: var(--radius-lg);
}

.success-message i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 16px;
}

.success-message h3 {
    color: var(--success);
    margin-bottom: 8px;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ffebee;
    border-radius: var(--radius-md);
    color: var(--error);
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.info-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

.social-links {
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.social-links h3 {
    margin-bottom: 16px;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-white);
}

.faq-question h3 {
    font-size: 1rem;
    margin: 0;
}

.faq-question i {
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--primary-dark);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col .footer-logo {
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-list li span {
    color: rgba(255, 255, 255, 0.85);
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 4px;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }

    .slide-content h1 {
        font-size: 3rem;
    }

    .stats-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-row {
        gap: 50px;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .logo-link {
        gap: 8px;
    }

    .logo-img {
        height: 40px !important;
        max-width: 60px;
    }

    .logo-text-wrap {
        line-height: 1;
    }

    .logo-brand-name {
        font-size: 17px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        letter-spacing: -0.2px;
    }

    .logo-tagline {
        font-size: 9px;
        line-height: 1;
        margin-top: 2px;
    }

    .top-bar-container {
        padding: 0 20px;
    }

    .top-bar-left {
        display: none;
    }

    .header {
        top: 0;
    }

    .header-container {
        padding: 12px 20px;
    }

    .hero-slider {
        margin-top: 80px;
    }

    .slider-container {
        height: calc(100vh - 80px);
        min-height: 500px;
    }

    .page-banner {
        margin-top: 80px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-list a {
        color: var(--text-dark);
        font-size: 1.2rem;
    }

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

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

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

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

    .header-actions .btn {
        display: none;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .story-row,
    .course-row,
    .course-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .location-content {
        flex-direction: column;
    }

    .nri-grid {
        grid-template-columns: 1fr;
    }

    .nri-hero-image,
    .nri-hero-image img {
        min-height: 280px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .mission-grid,
    .why-grid,
    .gain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        justify-content: center;
    }

    .team-card {
        flex: 0 1 calc(50% - 15px);
        max-width: 360px;
    }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .slide-buttons .btn {
        width: 80%;
    }

    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 220px;
    }

    .hero-stats-bar {
        padding: 20px 0;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 20px;
    }

    .hero-stats-bar .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-stats-bar .stat-item i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-info {
        text-align: center;
    }

    .stat-info .stat-number {
        font-size: 1.5rem;
    }

    .page-banner {
        height: 300px;
    }

    .courses-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .course-meta {
        flex-wrap: wrap;
        gap: 15px;
    }

    .course-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mission-grid,
    .why-grid,
    .gain-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: 220px;
    }

    .team-card {
        flex: 0 1 100%;
        max-width: 400px;
    }

    .nri-grid,
    .nri-support-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px !important;
        max-width: 45px;
    }

    .logo-brand-name {
        font-size: 13px !important;
        line-height: 1 !important;
        letter-spacing: -0.3px;
    }

    .logo-tagline {
        display: none;
    }

    .header-container {
        padding: 10px 15px;
    }

    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .slide-content h1 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-stats-bar .stat-item i {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .stats-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 60px 0;
    }

    .course-card,
    .feature-box,
    .mission-card,
    .why-item,
    .team-card,
    .gain-item {
        padding: 25px 20px;
    }
}
/* ===================================
   GALLERY PAGE ADDITIONS
   Append this block to the end of css/style.css
   =================================== */

/* Filter Tabs */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 10px 0 50px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--bg-white);
    border: 2px solid rgba(30, 58, 95, 0.12);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.2px;
}

.filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* Gallery card image wrap + zoom overlay */
.gallery-img-wrap {
    position: relative;
    overflow: hidden;
}

.gallery-img-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 51, 0) 40%, rgba(15, 31, 51, 0.75) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-zoom {
    transform: translateY(0);
    opacity: 1;
}

.gallery-zoom:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* Category tag on cards */
.gallery-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(212, 165, 116, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Filtering animation */
.gallery-card {
    animation: fadeIn 0.4s ease;
}

.gallery-card.hidden {
    display: none;
}

.gallery-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.gallery-empty i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-bottom: 16px;
    display: block;
}

/* CTA strip at bottom of gallery */
.gallery-cta {
    margin-top: 70px;
    background: linear-gradient(135deg, #14539b 0%, #0a2a4d 100%);
    border-radius: var(--radius-xl);
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}

.gallery-cta h3 {
    color: var(--text-light);
    margin-bottom: 8px;
}

.gallery-cta p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.94);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-caption {
    color: var(--text-light);
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

/* Responsive */
@media (max-width: 768px) {
    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .gallery-cta {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   Pushed further up so it clears the WhatsApp float completely
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .scroll-to-top {
        bottom: 110px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}
