:root {
            --primary: #065f46;
            --primary-dark: #064e3b;
            --accent: #fbbf24;
            --light: #f8fafc;
            --gray: #64748b;
            --dark: #0f172a;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background-color: #f8fafc;
            line-height: 1.7;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============= TOP BAR ============= */
        .top-bar {
            background: var(--primary-dark);
            color: white;
            padding: 0.4rem 0;
            font-size: 0.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar .left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .top-bar i {
            font-size: 0.8rem;
        }

        .top-bar .welcome {
            font-weight: 500;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* ============= HEADER ============= */
        .header {
    background: linear-gradient(135deg, #0d9488, #065f46);
    color: white;
    padding: 1.2rem 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Animated floating bubbles */
.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%),
                radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%),
                radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 50%);
    animation: floatBubbles 18s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatBubbles {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, 5%) rotate(90deg);
    }
    50% {
        transform: translate(0, 10%) rotate(180deg);
    }
    75% {
        transform: translate(-5%, 5%) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Ensure content stays above animation */
.header-content {
    position: relative;
    z-index: 2;
}

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .logo {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Removed background, border-radius, shadow */
        }

        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Or 'cover' if you prefer */
            display: block;
            /* No border, no rounding — pure image */
        }

        .header-text {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .header-text h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .header-text .email {
            font-size: 0.9rem;
            opacity: 0.95;
            font-style: italic;
        }

        .header-text p {
            font-size: 1rem;
            opacity: 0.95;
        }

        .header-logo-right {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%; /* ← Now fully round */
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.3); /* Optional: subtle border */
        }

        .logo-img-right {
            width: 80%;
            height: 80%;
            object-fit: contain;
            display: block;
        }


        /* ============= MENU ============= */
       /* ============= DROPDOWN MENU STYLES ============= */
        
        .nav-item:hover .dropdown-toggle::after {
            transform: rotate(180deg);
            position: relative;
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 240px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
            padding: 0.75rem 0;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

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

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            color: var(--dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            border-radius: 8px;
            margin: 0 0.5rem;
        }

        .dropdown-item i {
            color: var(--primary);
            min-width: 20px;
            text-align: center;
        }

        .dropdown-item:hover {
            background: rgba(30, 58, 138, 0.08);
            color: var(--primary);
            transform: translateX(5px);
        }

        /* Optional: Add indicator arrow to dropdown toggle */
        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }

        .dropdown-toggle::after {
            content: '▼';
            font-size: 0.6rem;
            color: var(--gray);
            transition: transform 0.3s ease;
        }

        

        .nav-container {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary);
        }

        .nav {
            display: flex;
            justify-content: center;
        }

        .nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
            gap: 0;
        }

        .nav li {
            position: relative;
        }

        .nav a {
            display: block;
            padding: 0.8rem 1.1rem;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.88rem;
            letter-spacing: 0.5px;
            transition: var(--transition);
            position: relative;
            margin: 0 1px;
        }

        .nav a:hover,
        .nav a.active {color: var(--primary);
            background: rgba(6, 95, 70, 0.05);
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav a:hover::after,
        .nav a.active::after {
            width: 70%;
        }

        /* ============= NOTICE BAR ============= */
        .news-ticker {
            background: #dc2626;
            color: white;
            border: none;
            padding: 0.5rem 0;
            overflow: hidden;
            position: relative;
            white-space: nowrap;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }

        .news-ticker .label {
            background: white;
            color: #dc2626;
            padding: 0.2rem 0.7rem;
            font-weight: 700;
            font-size: 0.78rem;
            border-radius: 4px;
            margin-right: 1.2rem;
            display: inline-block;
            vertical-align: middle;
            position: relative;
            z-index: 2;
        }

        .news-ticker-wrapper {
            display: inline-block;
            animation: scroll-left 25s linear infinite;
            cursor: pointer;
            position: relative;
            z-index: 1;
            margin-left: 1rem;
        }

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

        /* ============= IMAGE SLIDER ============= */
        .hero-slider {
            height: 350px;
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin: 0 0 1.5rem;
            box-shadow: var(--shadow-lg);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-1 { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/slider1.jpg') center/cover; }
        .slide-2 { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/slider2.jpg') center/cover; }
        .slide-3 { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/slider3.jpg') center/cover; }

        .slide-content {
            max-width: 700px;
            padding: 0 2rem;
        }

        .slide-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

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

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

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* ============= CHAIRMAN + SECRETARY (STACKED) + SERVICES ============= */
        .leadership-services {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 2rem;
            margin: 0 0 2.5rem;
        }

        .leaders-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .leader-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

       .leader-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            object-position: 50% 30%; /* Perfect for portraits — head + shoulders */
            display: block;
            border-top-left-radius: 16px;
            border-top-right-radius: 16px;
            background: linear-gradient(135deg, #dbeafe, #f0f9ff);
        }

        .leader-info {
            padding: 1.5rem;
        }

        .leader-info h3 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .leader-info .designation {
            color: var(--gray);
            font-weight: 500;
            margin-bottom: 1rem;
            font-style: italic;
            font-size: 0.95rem;
        }

        .leader-info p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .leader-info .btn {
            display: inline-block;
            padding: 0.55rem 1.25rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .leader-info .btn:hover {
            background: var(--primary-dark);
        }

        
       

        /* Animated Gradient Background */
    /* ============= EXTRAORDINARY ANIMATED TITLE ============= */

.services-section {
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap:10px;
}

.services-title-extraordinary {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin-bottom: 0;
    text-align: center;
}

/* Glassmorphic inner glow */
.services-title-extraordinary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1), 
        rgba(234, 179, 8, 0.1), 
        rgba(147, 51, 234, 0.1)
    );
    border-radius: 19px;
    z-index: -1;
    opacity: 0.6;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

/* Neon edge glow */
.services-title-extraordinary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #06d6a0, #ffbe0b, #ef476f, #3a86ff);
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -2;
    filter: blur(10px);
    opacity: 0.7;
    animation: neonPulse 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

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

/* Sparkle Particles */
.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: floatSparkle 8s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.sparkle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.sparkle-3 {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 6s;
}

@keyframes floatSparkle {
    0%, 100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    25% {
        transform: translate(5px, -10px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(15px, -25px) scale(1.5);
        opacity: 1;
    }
    75% {
        transform: translate(10px, -35px) scale(1);
        opacity: 0.8;
    }
}

/* Title Text */
.services-title-extraordinary h3 {
    position: relative;
    color: #000000;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover Effect */
.services-title-extraordinary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.3) inset;
}

.services-title-extraordinary:hover::after {
    filter: blur(15px);
    opacity: 0.9;
}

.services-title-extraordinary:hover h3 {
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

/* Buttons Container — Clean & Professional */
.services-grid-container {
    background: white;
    padding: 2.5rem;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem; /* Reduced padding */
    border-radius: 14px; /* Slightly smaller radius */
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem; /* Slightly smaller font */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 100px; /* Reduced height */
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-btn i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.service-btn .badge {
    display: inline-block;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

.service-btn:hover i {
    transform: translateY(-3px) scale(1.1);
}

.service-btn:hover .badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
}


.service-btn:nth-child(21n + 1)  { background: linear-gradient(135deg, #ef4444, #dc2626); }
.service-btn:nth-child(21n + 2)  { background: linear-gradient(135deg, #f97316, #ea580c); }
.service-btn:nth-child(21n + 3)  { background: linear-gradient(135deg, #eab308, #ca8a04); }
.service-btn:nth-child(21n + 4)  { background: linear-gradient(135deg, #84cc16, #65a30d); }
.service-btn:nth-child(21n + 5)  { background: linear-gradient(135deg, #10b981, #059669); }
.service-btn:nth-child(21n + 6)  { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.service-btn:nth-child(21n + 7)  { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.service-btn:nth-child(21n + 8)  { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.service-btn:nth-child(21n + 9)  { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.service-btn:nth-child(21n + 10) { background: linear-gradient(135deg, #d946ef, #c026d3); }
.service-btn:nth-child(21n + 11) { background: linear-gradient(135deg, #ec4899, #db2777); }
.service-btn:nth-child(21n + 12) { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.service-btn:nth-child(21n + 13) { background: linear-gradient(135deg, #059669, #047857); }
.service-btn:nth-child(21n + 14) { background: linear-gradient(135deg, #7c2d12, #9a3412); }
.service-btn:nth-child(21n + 15) { background: linear-gradient(135deg, #7e22ce, #6b21a8); }
.service-btn:nth-child(21n + 16) { background: linear-gradient(135deg, #0891b2, #0e7490); }
.service-btn:nth-child(21n + 17) { background: linear-gradient(135deg, #be185d, #9d174d); }
.service-btn:nth-child(21n + 18) { background: linear-gradient(135deg, #1e40af, #1d4ed8); }
.service-btn:nth-child(21n + 19) { background: linear-gradient(135deg, #16a34a, #15803d); }
.service-btn:nth-child(21n + 20) { background: linear-gradient(135deg, #9333ea, #7e22ce); }
        .service-btn:nth-child(21n + 21) { background: linear-gradient(135deg, #ea580c, #c2410c); }

        .service-category-btn {
            border: none;
            cursor: pointer;
            font-family: inherit;
            width: 100%;
        }

        .services-back-btn {
            display: none;
            align-items: center;
            gap: 0.5rem;
            margin: 0 0 1rem;
            padding: 0.55rem 1.1rem;
            background: white;
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .services-back-btn:hover {
            background: rgba(6, 95, 70, 0.06);
            border-color: rgba(6, 95, 70, 0.25);
        }

        #services-panel-title {
            transition: color 0.3s ease;
        }

        .service-category-btn {
            border: none;
            cursor: pointer;
            font-family: inherit;
            width: 100%;
        }

        .services-back-btn {
            display: none;
            align-items: center;
            gap: 0.5rem;
            margin: 0 0 1rem;
            padding: 0.55rem 1.1rem;
            background: white;
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .services-back-btn:hover {
            background: rgba(6, 95, 70, 0.06);
            border-color: rgba(6, 95, 70, 0.25);
        }

        #services-panel-title {
            transition: color 0.3s ease;
        }
           



        .service-btn .badge {
            display: inline-block;
            background: rgba(255,255,255,0.3);
            backdrop-filter: blur(4px);
            color: white;
            font-size: 0.6rem;
            padding: 0.15rem 0.5rem;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 0.4rem;
        }

        /* ============= APP-STYLE IMAGE BUTTONS ============= */
        .app-services-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            width: 100%;
            padding: 0.5rem 0;
        }

        .app-service-btn {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            width: 100%;
            max-width: 520px;
            height: 78px;
            min-height: 78px;
            padding: 0 1.5rem;
            border-radius: 14px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-sizing: border-box;
        }

        .app-service-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 16px 28px -8px rgba(0,0,0,0.2);
            color: white;
        }

        .app-btn-icon {
            width: 54px;
            height: 54px;
            min-width: 54px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.12);
        }

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

        .app-btn-text {
            flex: 1;
            text-align: left;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .app-btn-1 { background: linear-gradient(135deg, #22d3ee, #10b981); }
        .app-btn-1 .app-btn-icon i { color: #0891b2; }

        .app-btn-2 { background: linear-gradient(135deg, #fb923c, #ea580c); }
        .app-btn-2 .app-btn-icon i { color: #ea580c; }

        .app-btn-3 { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
        .app-btn-3 .app-btn-icon i { color: #7c3aed; }

        .app-btn-4 { background: linear-gradient(135deg, #c084fc, #6d28d9); }
        .app-btn-4 .app-btn-icon i { color: #7c3aed; }

        .app-btn-5 { background: linear-gradient(135deg, #f87171, #dc2626); }
        .app-btn-5 .app-btn-icon i { color: #dc2626; }

        .app-btn-6 { background: linear-gradient(135deg, #2dd4bf, #059669); }
        .app-btn-6 .app-btn-icon i { color: #059669; }

        .app-btn-7 { background: linear-gradient(135deg, #38bdf8, #0284c7); }
        .app-btn-7 .app-btn-icon i { color: #0284c7; }

        .app-btn-8 { background: linear-gradient(135deg, #fbbf24, #d97706); }
        .app-btn-8 .app-btn-icon i { color: #d97706; }

        @media (max-width: 768px) {
            .app-service-btn {
                max-width: 100%;
                font-size: 0.92rem;
                height: 72px;
                min-height: 72px;
                padding: 0 1.1rem;
            }

            .app-btn-icon {
                width: 46px;
                height: 46px;
                min-width: 46px;
            }
        }

        /* ============= ABOUT BOARD — IMAGE SLIDER ============= */
        .about-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2.5rem;
            margin: 3rem 0;
            align-items: center;
        }

        .about-content {
            background: white;
            padding: 3rem;
            border-radius: 18px;
            box-shadow: var(--shadow-lg);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            font-size: 2.4rem;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        /* Image Slider in About Section */
        .about-image-slider {
            height: 400px;
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
        }

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

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

        .about-slide img {
            width: 100%;height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .about-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.7);
            cursor: pointer;
            transition: var(--transition);
        }

        .about-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* ============= OFFICE ORDERS & NOTICES ============= */
        .notices-section {
            margin: 4rem 0;
        }

        .section-header {text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--gray);
            font-size: 1.05rem;
            max-width: 640px;
            margin: 1.5rem auto 0;
            line-height: 1.7;
        }

        .notices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .notice-card {
            background: white;
            border-radius: 18px;
            padding: 2.2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .notice-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(6, 95, 70, 0.2);
        }

        .notice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

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

        .notice-icon {
            width: 65px;
            height: 65px;
            background: rgba(6, 95, 70, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            color: var(--primary);
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .notice-card:hover .notice-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .notice-card h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .notice-card p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            flex: 1;
        }

        .notice-card .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.5rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            align-self: flex-start;
        }

        .notice-card .btn:hover {
            background: var(--primary-dark);
            transform: translateX(5px);
        }

        @media (max-width: 992px) {
            .notices-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .notices-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============= CONTACT + LINKS ============= */
        .contact-links {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin: 4rem 0;
        }

        .contact-box, .links-box {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
        }

        .contact-box h3, .links-box h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 1.75rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--border);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon-box {
            width: 45px;
            height: 45px;
            background: rgba(6, 95, 70, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            color: var(--primary);
            margin-bottom: 0.2rem;
            font-size: 1rem;
        }

        .contact-text p, .contact-text a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .contact-text a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .links-box ul {
            list-style: none;
        }

        .links-box li {
            margin-bottom: 0.75rem;
        }

        .links-box a {
            color: var(--gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.4rem 0;
            transition: var(--transition);
        }

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

        .links-box a i {
            font-size: 0.7rem;
            color: var(--primary);
        }

            /* ============= GOOGLE MAPS SECTION ============= */
.map-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 L0,100 Z" fill="rgba(6, 95, 70, 0.02)"/></svg>');
    background-size: cover;
}

.map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 2;
    transition: all 0.4s ease;
}

.map-container:hover .map-overlay {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-overlay h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-overlay p {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.map-overlay i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.btn-map {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(6, 95, 70, 0.2);
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 95, 70, 0.3);
    background: var(--primary-dark);
}

.map-embed {
    height: 450px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .map-overlay {
        padding: 1.5rem;
    }

    .map-overlay h3 {
        font-size: 1.3rem;
    }

    .map-overlay p {
        font-size: 0.9rem;
    }

    .map-embed {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 2rem 0;
    }

    .map-overlay {
        text-align: center;
    }

    .map-overlay p br {
        display: none;
    }

    .map-overlay p {
        font-size: 0.85rem;
    }

    .map-embed {
        height: 300px;
    }
}


        /* ============= ANIMATED FOOTER ============= */
        /* ============= ANIMATED 4-COLUMN FOOTER ============= */
footer {
    background: linear-gradient(135deg, #064e3b, #0c4a3d, #115e59);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 4rem;position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.01)"/></svg>');
    background-size: cover;
    z-index: 1;
}

/* Floating Animated Shapes */
.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.08);
    animation: floatShape 15s ease-in-out infinite;
}

.footer-shape.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(255,255,255,0.05);
}

.footer-shape.shape-2 {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 85%;
    animation-delay: 3s;
    background: rgba(16, 185, 129, 0.1);
}

.footer-shape.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 90%;
    animation-delay: 6s;
    background: rgba(234, 179, 8, 0.1);
}

.footer-shape.shape-4 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 15%;
    animation-delay: 9s;
    background: rgba(147, 51, 234, 0.1);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
}

/* 4-Column Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 3;
    margin-bottom: 3rem;
}

.footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.footer-col.animate-slide-up {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.footer-col:nth-child(2).animate-slide-up { transition-delay: 0.4s; }
.footer-col:nth-child(3).animate-slide-up { transition-delay: 0.6s; }
.footer-col:nth-child(4).animate-slide-up { transition-delay: 0.8s; }

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
    width: fit-content;
}

.footer-col p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    width: 100%;
}

/* Contact List */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-list i {
    min-width: 20px;
    color: var(--accent);
    margin-top: 3px;
}

/* Social Icons */
.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px) scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 3;
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }

    .contact-list {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
        /* Scroll Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }

        @media (max-width: 1200px) {
            .about-section {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 992px) {
            .leadership-services {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            .nav a {
                padding: 0.7rem 0.9rem;
                font-size: 0.85rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .contact-links {
                grid-template-columns: 1fr;
            }
            .notices-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            .hero-slider, .about-image-slider {
                height: 300px;
            }
            .slide-content h2 {
                font-size: 2rem;
            }
            .footer-content {
                gap: 2rem;
            }
        }
