/* ============================================================
   ============ GLOBAL RESET & CSS VARIABLES START ============
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* Default site font */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* Brand Colors */
    --brand-color: #3c0c84;
    --brand-dark: #2a085e;

    /* Text Colors */
    --text-dark: #222;
    --text-gray: #555;
    --white: #ffffff;

    /* Layout */
    --nav-height: 80px;

    /* Page Background */
    --page-bg: #ffffff;

    /* Footer */
    --footer-text-muted: rgba(255,255,255,0.8);
}
/* ================= GLOBAL RESET & VARIABLES END ================= */


/* ============================================================
   ================= BODY BACKGROUND START =====================
   ============================================================ */
body {
    background-color: var(--page-bg);
}
/* ================= BODY BACKGROUND END ================= */
html {
    scroll-behavior: smooth;
}


/* ================= HEADER CONTAINER START ================= */
header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    width: 100%; /* Ensure header is full width */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 40px;
}
/* ================= HEADER CONTAINER END ================= */

/* ================= LOGO START ================= */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

/* UNIQUE ANIMATION: The "Wobble" Effect */
@keyframes wobble {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-6deg); }
    30% { transform: rotate(5deg); }
    45% { transform: rotate(-4deg); }
    60% { transform: rotate(3deg); }
    75% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}

.logo:hover .logo-img {
    animation: wobble 0.8s ease-in-out;
}
/* ================= LOGO END ================= */

/* ================= NAV MENU START ================= */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* The Animation Line (Now Purple) */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-color);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--brand-color);
}

.nav-link:hover::after {
    width: 100%;
}
/* ================= NAV MENU END ================= */

/* ================= LOGIN BUTTON START ================= */
.login-btn {
    background-color: var(--brand-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.login-btn:hover {
    background-color: var(--brand-dark);
}

.login-btn:hover .arrow-icon {
    transform: translateX(5px);
}
/* ================= LOGIN BUTTON END ================= */

/* ================= HAMBURGER ICON START ================= */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* ================= HAMBURGER ICON END ================= */

/* ================= RESPONSIVE BEHAVIOUR START ================= */
@media (max-width: 1024px) {
    .navbar { padding: 0 20px; }

    .hamburger { display: flex; }

    .login-wrapper-desktop { display: none; }

    .nav-menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        max-height: 550px;
        opacity: 1;
        padding-bottom: 30px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 20px;
        font-size: 18px;
    }

    .nav-link::after { display: none; }

    .mobile-login-li {
        margin-top: 20px;
        border: none !important;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 1025px) {
    .mobile-login-li { display: none; }
}

/* Hamburger Animation active state */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--brand-color);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--brand-color);
}
/* ================= RESPONSIVE BEHAVIOUR END ================= */


/* ============================================================
   ================= PROGRAMS SECTION START ===================
   ============================================================ */
.programs-section {
    position: relative;
    padding: 40px 0 60px;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}
/* ================= PROGRAMS SECTION END ================= */


/* ============================================================
   ================= FLOAT ANIMATION START ====================
   ============================================================ */
@keyframes floatUpDn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.float-anim {
    animation: floatUpDn 4s ease-in-out infinite;
}
.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }
/* ================= FLOAT ANIMATION END ================= */


/* ============================================================
   ================= DECOR ELEMENTS START =====================
   ============================================================ */
.decor {
    position: absolute;
    width: 60px;
    opacity: 0.9;
    pointer-events: none;
}

.decor-top-left { top: 25px; left: 25px; }
.decor-top-right { top: 25px; right: 25px; }
.decor-bottom-left { bottom: 25px; left: 25px; }
.decor-bottom-right { bottom: 25px; right: 25px; }
/* ================= DECOR ELEMENTS END ================= */


/* ============================================================
   ================= PROGRAMS HEADER START ====================
   ============================================================ */
.programs-header {
    margin-bottom: 35px;
    text-align: left;
}

.css_prefix-subtitle {
    text-align: center;
    font-family: "KGShakeitOff", cursive;
    font-size: 24px;
    color: #3c0c84;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
/* ================= PROGRAMS HEADER END ================= */



/* ============================================================
   ============ PROGRAMS DESCRIPTION (TRUE FULL WIDTH) =========
   ============================================================ */
.programs-desc-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.programs-desc {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.programs-desc p {
    max-width: none !important;
    margin: 0 !important;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    text-align: center;
}
/* ================= PROGRAMS DESCRIPTION END ================= */



/* ============================================================
   ================= PROGRAMS CARDS GRID START =================
   ============================================================ */
.programs-cards {
    max-width: 1320px;
    margin: 35px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; /* tighter spacing like reference */
    padding: 0 20px;
}
/* ================= PROGRAMS CARDS GRID END ================= */



/* ============================================================
   ================= CARD WRAPPER START =======================
   ============================================================ */
.card-wrap {
    padding: 8px; /* reduced outer padding */
    border-radius: 28px;
    border: 2px dashed;
    transition: all 0.4s ease;
}

.card-wrap:nth-child(1){ transform: rotate(-1.5deg); }
.card-wrap:nth-child(2){ transform: rotate(1deg); }
.card-wrap:nth-child(3){ transform: rotate(-1deg); }
.card-wrap:nth-child(4){ transform: rotate(1.5deg); }

.card-wrap:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    border-style: solid;
}

.card-orange { border-color: #ff9f68; }
.card-blue   { border-color: #7ab6ff; }
.card-yellow { border-color: #f5c56b; }
.card-purple { border-color: #b18cff; }
/* ================= CARD WRAPPER END ================= */



/* ============================================================
   ================= INNER PROGRAM CARD START =================
   ============================================================ */
.program-card {
    border-radius: 24px;
    padding: 20px 20px 18px; /* compact padding */
    min-height: 300px;       /* KEY: controls card size */
    display: flex;
    flex-direction: column;
}

.card-orange .program-card { background: #fff1e6; }
.card-blue   .program-card { background: #eef7ff; }
.card-yellow .program-card { background: #fff8e8; }
.card-purple .program-card { background: #f4ecff; }
/* ================= INNER PROGRAM CARD END ================= */



/* ============================================================
   ================= CARD BADGE START =========================
   ============================================================ */
.card-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.orange { background: #ffb185; }
.blue   { background: #9bc8ff; }
.yellow { background: #ffd889; }
.purple { background: #c9b2ff; }
/* ================= CARD BADGE END ================= */



/* ============================================================
   ================= PROGRAM CARD TEXT START ==================
   ============================================================ */
.program-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #13293D;
}

.program-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin: 0;
    flex-grow: 1; /* keeps cards visually balanced */
}
/* ================= PROGRAM CARD TEXT END ================= */



/* ============================================================
   ================= RESPONSIVE BEHAVIOR START =================
   ============================================================ */
@media (max-width: 1200px) {
    .programs-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-cards {
        grid-template-columns: 1fr;
    }

    .programs-desc {
        padding: 0 20px;
    }
}
/* ================= RESPONSIVE BEHAVIOR END ================= */



/* --- Variables & Fonts --- */
.testimonial-section {
    --ts-bg: #3c0c84; 
    --ts-blue: #13293D; 
    --ts-title: #FFFFFF; 
    
    /* SUBTITLE COLOR: Kept Orange so it is visible on Purple BG */
    --ts-subtitle: #F79F77; 
    
    --ts-text-color: #000000; 
    --ts-quote: #FFD1DC; 
    --ts-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    --ts-font-hand: 'Balsamiq Sans', cursive; 
    --ts-font-body: 'Roboto', sans-serif;    
    
    font-family: var(--ts-font-hand);
    background-color: var(--ts-bg);
    /* REDUCED HEIGHT: Padding reduced */
    padding: 40px 10px 50px 10px; 
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonial-section * {
    box-sizing: border-box;
}

/* --- ANIMATED CLOUD BACKGROUND --- */
.bg-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    z-index: 0;
    opacity: 0.1; 
    background: 
        radial-gradient(circle at 20% 50%, #ffffff 50px, transparent 100px),
        radial-gradient(circle at 50% 30%, #ffffff 80px, transparent 120px),
        radial-gradient(circle at 80% 60%, #ffffff 60px, transparent 100px);
    background-size: 50% 100%;
    background-repeat: repeat-x;
    animation: cloudMove 60s linear infinite;
    pointer-events: none;
}

@keyframes cloudMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- ANIMATED WAVE BORDERS --- */
.testimonial-section::before,
.testimonial-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 25px; /* Wave Height */
    background-size: 50px 50px; 
    background-repeat: repeat-x;
    z-index: 5;
    animation: waveMove 10s linear infinite;
}

/* Top Wave: Curves pointing down */
.testimonial-section::before {
    top: -5px; 
    background-image: radial-gradient(circle at 25px -10px, #ffffff 25px, transparent 26px);
}

/* Bottom Wave: Curves pointing up */
.testimonial-section::after {
    bottom: -5px; 
    background-image: radial-gradient(circle at 25px 35px, #ffffff 25px, transparent 26px);
}

@keyframes waveMove {
    0% { background-position-x: 0px; }
    100% { background-position-x: 50px; }
}

/* --- Layout --- */
.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- Header --- */
.testi-header {
    text-align: center;
    margin-bottom: 25px;
}

/* --- SUBTITLE UPDATED TO YOUR REQUEST --- */
.testi-subtitle {
    text-align: center;
    /* Added KGShakeitOff to stack, fallback to Balsamiq */
    font-family: "KGShakeitOff", cursive; 
    font-size: 24px; /* Updated Size */
    letter-spacing: 3px; /* Updated Spacing */
    margin-bottom: 20px; /* Updated Margin */
    
    color: var(--ts-subtitle); /* Kept Orange #F79F77 for visibility */
    font-weight: 400;
    text-transform: uppercase;
}

.testi-title {
    color: #ffffff; 
    font-family: var(--ts-font-hand);
    font-size: 50.31px; 
    font-weight: 700;
    margin: 0;
}

/* --- SLIDER STRUCTURE --- */
.testi-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px 0;
}

.testi-track {
    display: flex;
    width: 100%;
}

.transition-active {
    transition: transform 0.5s ease-in-out;
}

/* --- Card Styling --- */
.testi-card-wrapper {
    flex: 0 0 50%; 
    max-width: 50%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.testi-card {
    background: #fff;
    clip-path: polygon(0% 2%, 2% 0%, 98% 1%, 100% 3%, 99% 97%, 97% 100%, 3% 99%, 0% 96%);
    padding: 35px 30px;
    width: 100%;
    max-width: 550px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: var(--ts-shadow);
    position: relative;
    transition: transform 0.3s ease;
}

.rotate-left { transform: rotate(-2deg); margin-top: 20px; }
.rotate-right { transform: rotate(2deg); }
.testi-card:hover { transform: rotate(0deg) scale(1.02); z-index: 5;}

/* Image Area */
.testi-img-box {
    position: relative;
    flex-shrink: 0;
}

.testi-profile {
    width: 140px;
    height: 160px;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: rotate(-4deg);
}

/* Paperclip SVG */
.testi-paperclip {
    position: absolute;
    top: -20px;
    right: 35px;
    width: 25px;
    height: 50px;
    z-index: 5;
    transform: rotate(15deg);
    filter: drop-shadow(2px 3px 2px rgba(0,0,0,0.2));
}

/* Content Area */
.testi-content {
    position: relative;
    padding-top: 10px;
}

.testi-quote-icon {
    font-family: serif;
    font-size: 65px;
    line-height: 1;
    color: var(--ts-quote);
    position: absolute;
    top: -30px;
    left: 0;
}

.testi-text {
    font-family: var(--ts-font-hand); 
    font-size: 16px; 
    line-height: 1.7;
    color: var(--ts-text-color); 
    margin-top: 35px;
    margin-bottom: 25px;
    font-weight: 400;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-line {
    width: 25px;
    height: 2px;
    background-color: var(--ts-blue);
}

.author-name {
    font-family: var(--ts-font-body); 
    color: var(--ts-blue); 
    font-size: 21.24px; 
    font-weight: 700;
}

/* Star Image */
.testi-star-img {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 85px;
    height: auto;
    opacity: 0.8;
    transform: rotate(-10deg);
}

/* --- DECORATIVE ELEMENTS --- */
.decor-element { position: absolute; z-index: 1; pointer-events: none; }
.decor-element img { 
    width: 100%; 
    display: block; 
    filter: brightness(0) invert(1); 
    opacity: 0.8; 
}

.decor-bird { top: 30px; left: 5%; width: 140px; animation: floatGlide 8s ease-in-out infinite; }
.decor-smile { top: 50px; right: 5%; width: 50px; animation: swingRotate 3s ease-in-out infinite alternate; }
.decor-swirls { bottom: 40px; left: 2%; width: 60px; animation: pulseScale 4s ease-in-out infinite; }
.decor-rocket { bottom: 20px; right: 2%; width: 50px; animation: jitterFly 5s linear infinite; }

@keyframes floatGlide {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(5deg); }
    50% { transform: translate(0, -5px) rotate(0deg); }
    75% { transform: translate(-15px, -15px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes swingRotate {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}
@keyframes pulseScale {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}
@keyframes jitterFly {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, 2px); }
    100% { transform: translate(-10px, -20px); }
}

/* --- Slider Navigation --- */
.testi-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.testi-arrow {
    background: none;
    border: none;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: 0.3s;
    font-family: serif;
    font-weight: 300;
}

.testi-arrow:hover {
    color: #fff;
    transform: scale(1.2);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    /* TABLET & MOBILE: Show 1 Card */
    .testi-card-wrapper {
        flex: 0 0 100%; 
        max-width: 100%;
        padding: 0 10px;
    }
    
    .testi-card { 
        width: 100%; 
        max-width: 600px; 
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        transform: rotate(0deg) !important; 
    }

    .rotate-left, .rotate-right { margin-top: 0; }
    .decor-bird { width: 100px; top: 10px; }
    .decor-rocket { display: none; }
    
    .testi-img-box { margin-bottom: 20px; }
    .testi-paperclip { right: 20px; }
    .testi-quote-icon { left: 50%; transform: translateX(-50%); top: -35px; }
    .testi-text { margin-top: 25px; font-size: 15px; }
    .testi-author { justify-content: center; }
}

@media (max-width: 768px) {
    .testi-title { font-size: 36px; }
}


/* ============================================================
   ====================  FOOTER CSS START  =======================
   (Footer styles begin here — do not remove this comment block)
   ============================================================ */

/* ------------------------------------------------------------
   .footer-section main wrapper
   ------------------------------------------------------------ */
.footer-section {
    position: relative;
    background-color: var(--brand-color);
    color: var(--white);
    margin-top: 50px;
    padding-bottom: 10px; /* reduced but safe */
    z-index: 0;
    overflow: hidden;
    width: 100%;
}

/* Pattern overlay */
.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url('../images/footer-pattern.png'),
        url('assets/images/footer-pattern.png'),
        url('/assets/images/footer-pattern.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.50; /* visible but soft */
    pointer-events: none;
    z-index: 1;
}

/* Top wave divider */
.footer-section .custom-shape-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}
.footer-section .wave-container {
    display: flex;
    width: 200%;
    animation: waveMarquee 25s linear infinite;
}
.footer-section .wave-container svg {
    display: block;
    width: 50%;
    height: 70px;
}
@keyframes waveMarquee {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.footer-section .custom-shape-divider-top .shape-fill { fill: var(--page-bg); }

/* ------------------------------------------------------------
   Footer content layout (HEIGHT INCREASED HERE)
   ------------------------------------------------------------ */
.footer-section .container {
    max-width: 100%;
    margin: 0;
    padding: 75px 40px 25px 40px; /* Increased height */
    position: relative;
    z-index: 2;
}

.footer-section .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Typography scoped */
.footer-section h2 { font-size: 26px; font-weight: 700; margin-bottom: 5px; }
.footer-section h3 { font-size: 18px; font-weight: 600; margin-bottom: 25px; }
.footer-section p { font-size: 14px; line-height: 1.6; color: var(--footer-text-muted); margin-bottom: 20px; }
.footer-section a { text-decoration: none; color: var(--white); transition: 0.3s; }
.footer-section a:hover { color: #ffd700; }

/* Brand & logo */
.footer-section .logo-area { display: block; margin-bottom: 20px; }
.footer-section .footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Social row */
.footer-section .social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-section .social-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    color: white !important; font-size: 14px;
    background: rgba(255,255,255,0.1);
    transition: transform 0.2s;
}
.footer-section .social-btn:hover { transform: translateY(-3px); background: rgba(255,255,255,0.3); }

/* Links list */
.footer-section .nav-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer-section .nav-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
}
.footer-section .nav-links li::before {
    content: '\25B6';
    font-size: 9px;
    margin-right: 12px;
    margin-top: 5px;
    color: rgba(255,255,255,0.7);
}

/* Map wrapper — increased height slightly */
.footer-section .map-wrapper {
    width: 100%;
    height: 250px; /* increased height */
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
}
.footer-section .map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* Contact lines */
.footer-section .contact-line {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--footer-text-muted);
    font-size: 14px;
    align-items: flex-start;
}
.footer-section .contact-line i {
    margin-top: 4px;
    width: 16px;
    font-size: 14px;
    color: #ffcc00;
}
.footer-section .contact-line a { color: var(--footer-text-muted); }
.footer-section .contact-line a:hover { color: #fff; text-decoration: underline; }

/* Copyright area — tighter spacing */
.footer-section .copyright-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px; /* slightly reduced */
    margin-top: 12px; /* slightly reduced */
    font-size: 13px;
    color: var(--footer-text-muted);
    position: relative;
    z-index: 2;
}

/* Developer logo */
.footer-section .dev-logo {
    height: 25px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
    display: block;
}
.footer-section .dev-logo:hover { opacity: 1; }

/* ------------------------------------------------------------
   Responsive / Media Queries
   ------------------------------------------------------------ */
@media (max-width: 992px) {
    .footer-section .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-section .container {
        padding: 60px 24px 20px 24px; /* proportional increase */
    }
    .footer-section .map-wrapper { height: 250px; }
}

@media (max-width: 576px) {
    .footer-section .container {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 45px;
        padding-bottom: 16px;
    }
    .footer-section .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .footer-section .logo-area,
    .footer-section .social-row,
    .footer-section .nav-links li,
    .footer-section .contact-line {
        justify-content: center;
        align-items: center;
    }
    .footer-section .nav-links li::before { margin-top: 0; }
    .footer-section .contact-line i { margin-top: 0; }
    .footer-section .custom-shape-divider-top svg { height: 40px; }
}

/* ============================================================
   ====================  FOOTER CSS END  =======================
   (Footer styles end here — do not remove this comment block)
   ============================================================ */

