        /* Timer complete style */
        .timer-complete {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 40px;
            border-radius: var(--radius);
            animation: glow 3s infinite;
        }
        
        /* Variables */
        :root {
            --primary: #102697;
            --primary-dark: #081A70;
            --primary-light: #3E54D3;
            --secondary: #BBC9F0;
            --accent: #C19758;
            --accent-glow: rgba(193, 151, 88, 0.5);
            --dark: #1a1a2e;
            --light: #ffffff;
            --text-light: #86868b;
            --pattern-bg: #f5f5f7;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --glow-shadow: 0 0 20px rgba(16, 38, 151, 0.5);
            --accent-glow-shadow: 0 0 20px rgba(193, 151, 88, 0.5);
            --radius: 16px;
            --radius-lg: 24px;
            --radius-sm: 8px;
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        
        /* Animation Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes scaleIn {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        @keyframes slideInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(16, 38, 151, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(16, 38, 151, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 38, 151, 0); }
        }
        
        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes glow {
            0% { box-shadow: 0 0 10px rgba(16, 38, 151, 0.3); }
            50% { box-shadow: 0 0 20px rgba(16, 38, 151, 0.6); }
            100% { box-shadow: 0 0 10px rgba(16, 38, 151, 0.3); }
        }
        
        @keyframes borderGlow {
            0% { border-color: var(--primary); }
            50% { border-color: var(--accent); }
            100% { border-color: var(--primary); }
        }
        
        @keyframes shimmer {
            0% { background-position: -100% 0; }
            100% { background-position: 200% 0; }
        }
        
        /* Reveal animation for scroll */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 48px;
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--primary);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            padding-bottom: 15px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 30%;
            right: 30%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            border-radius: 2px;
            animation: shimmer 3s infinite linear;
            background-size: 200% 100%;
        }

        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: -30px auto 60px;
            font-size: 1.25rem;
            line-height: 1.5;
            color: var(--text-light);
            font-weight: 400;
        }
        
        .gradient-bg {
            background: linear-gradient(-45deg, var(--primary), #2039b0, #3e5ccf, var(--secondary));
            background-size: 400% 400%;
            animation: gradientFlow 15s ease infinite;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow);
        }

        /* Header */
        header {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
        }
        
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: translateY(-2px);
        }

        .logo svg {
            height: 40px;
            width: 40px;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
        }

        .logo-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: -0.01em;
            position: relative;
        }
        
        .logo-text::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .logo:hover .logo-text::after {
            width: 100%;
        }

        .navbar {
            display: flex;
            gap: 40px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            opacity: 0.85;
            position: relative;
            padding: 6px 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary);
            opacity: 1;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: transparent;
            font-size: 1.5rem;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary), #2039b0);
            opacity: 1;
            z-index: -2;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            right: -50%;
            bottom: -50%;
            background: radial-gradient(circle at center, var(--accent) 0%, transparent 60%);
            opacity: 0.1;
            z-index: -1;
            animation: pulse 4s infinite;
        }
        
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .particle {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: float 8s infinite;
        }
        
        .particle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            opacity: 0.1;
        }
        
        .particle:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 50%;
            right: 10%;
            animation-delay: 2s;
            opacity: 0.15;
        }
        
        .particle:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
            opacity: 0.1;
        }
        
        .particle:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 30%;
            right: 30%;
            animation-delay: 6s;
            opacity: 0.08;
        }
        
        .particle:nth-child(5) {
            width: 70px;
            height: 70px;
            bottom: 10%;
            right: 20%;
            animation-delay: 1s;
            opacity: 0.12;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 20px;
            position: relative;
            z-index: 1;
            animation: fadeIn 1.2s ease-out;
        }

        .hero-title {
            font-size: 4.5rem;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            background: linear-gradient(90deg, white, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 48px;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.4;
            opacity: 0.9;
            animation: fadeIn 1.5s ease-out;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            animation: fadeIn 1.8s ease-out;
        }

        /* Button styling - futuristic update */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            color: var(--primary);
            padding: 16px 36px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--accent);
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            z-index: -1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            color: white;
        }
        
        .btn:hover::before {
            width: 100%;
        }
        
        .btn-glow {
            border: 2px solid var(--primary);
            background: rgba(255, 255, 255, 0.1);
            animation: glow 3s infinite;
            backdrop-filter: blur(5px);
        }

        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary::before {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            color: var(--primary);
        }
        
        .btn-block {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        /* About section - removed photo elements */
        .about {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, var(--secondary) 0%, transparent 60%);
            opacity: 0.07;
            z-index: 0;
        }
        
        .about-container {
            display: flex;
            flex-direction: column;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .about-content {
            width: 100%;
            padding: 30px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 40px rgba(16, 38, 151, 0.1);
            border: 1px solid rgba(187, 201, 240, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .about-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(187, 201, 240, 0.2) 0%, transparent 60%);
            opacity: 0.5;
            z-index: -1;
            animation: gradientFlow 15s ease infinite;
        }

        .about-title {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            animation: fadeIn 0.8s ease-out;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .about-text {
            margin-bottom: 28px;
            font-size: 1.15rem;
            line-height: 1.7;
            color: var(--dark);
            animation: fadeIn 1s ease-out;
        }
        
        .about-highlight {
            font-weight: 600;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .about-highlight::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 6px;
            bottom: 0;
            left: 0;
            background-color: rgba(193, 151, 88, 0.3);
            z-index: -1;
        }
        
        .about-label {
            display: inline-block;
            background-color: rgba(16, 38, 151, 0.08);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 16px;
            transform: translateY(0);
            transition: transform 0.3s ease;
            animation: scaleIn 1.2s ease-out;
        }
        
        .about-label:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(16, 38, 151, 0.2);
        }

        /* Goals - New Design to Match Image */
        .goals {
            position: relative;
            background-color: #f8f9ff;
            overflow: hidden;
            padding-bottom: 60px;
        }
        
        .goals::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23102697' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 0;
        }
        
        .goals-container {
            position: relative;
            z-index: 1;
        }
        
        .goals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-top: 50px;
            margin-bottom: 30px;
        }
        
        .goal-card {
            background: white;
            border-radius: 20px;
            overflow: visible;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: none;
            position: relative;
            z-index: 1;
            height: 100%;
            min-height: 450px;
            display: flex;
            flex-direction: column;
            padding: 30px 25px 20px;
        }
        
        .goal-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(16, 38, 151, 0.15);
        }
        
        .goal-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            background: var(--primary);
            color: white;
            font-size: 2.2rem;
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(16, 38, 151, 0.2);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            text-align: center;
            line-height: 1;
        }
        
        .goal-card:hover .goal-icon {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(16, 38, 151, 0.3);
        }
        
        .goal-content {
            padding: 0;
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .goal-title {
            margin-bottom: 25px;
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            align-self: center;
            padding-bottom: 8px;
        }
        
        .goal-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            border-radius: 2px;
        }
        
        .goal-description {
            color: var(--dark);
            font-size: 1rem;
            line-height: 1.6;
            flex: 1;
            margin-bottom: 20px;
        }
        
        .goal-badge {
            display: inline-block;
            background: rgba(193, 151, 88, 0.1);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: 16px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: auto;
            align-self: center;
            transition: all 0.3s ease;
        }
        
        .goal-card:hover .goal-badge {
            background: rgba(193, 151, 88, 0.2);
        }

        /* Programs section - New */
        .programs {
            background-color: white;
            position: relative;
        }
        
        .programs::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(187, 201, 240, 0.2) 0%, transparent 60%);
            z-index: 0;
        }
        
        .programs-container {
            position: relative;
            z-index: 1;
        }
        
        .program-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .program-tab {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(187, 201, 240, 0.3);
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-weight: 600;
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .program-tab.active, .program-tab:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 5px 15px rgba(16, 38, 151, 0.2);
            transform: translateY(-3px);
        }
        
        .program-content {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(187, 201, 240, 0.3);
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .program-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
        }
        
        .program-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .program-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--dark);
        }
        
        .program-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        
        .program-highlight {
            background: rgba(16, 38, 151, 0.06);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .program-highlight:hover {
            background: rgba(16, 38, 151, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(16, 38, 151, 0.1);
        }

        /* Social */
        .social-section {
            background-color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .social-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(187, 201, 240, 0.1) 0%, transparent 50%);
            z-index: 0;
        }
        
        .social-container {
            position: relative;
            z-index: 1;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--dark);
            transition: var(--transition);
            width: 180px;
            transform: translateY(0);
        }

        .social-link:hover {
            color: var(--primary);
            transform: translateY(-8px);
        }

        .social-icon {
            width: 80px;
            height: 80px;
            border-radius: 24px;
            background-color: var(--pattern-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            margin-bottom: 16px;
            font-size: 2.2rem;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            overflow: hidden;
        }
        
        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }
        
        .social-icon i, .social-icon span {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-link:hover .social-icon {
            box-shadow: 0 15px 35px rgba(16, 38, 151, 0.25);
            transform: scale(1.05);
            border-radius: 50%;
        }
        
        .social-link:hover .social-icon::before {
            opacity: 1;
        }
        
        .social-link:hover .social-icon i,
        .social-link:hover .social-icon span {
            color: white;
            transform: scale(1.1);
        }
        
        .social-name {
            font-weight: 600;
            font-size: 1.15rem;
            margin-bottom: 6px;
            transition: color 0.3s ease;
        }
        
        .social-desc {
            font-size: 0.95rem;
            text-align: center;
            color: var(--text-light);
            transition: color 0.3s ease;
        }
        
        .social-link:hover .social-name {
            color: var(--primary);
        }
        
        .social-link:hover .social-desc {
            color: var(--accent);
        }

        /* Contact */
        .contact {
            background-color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        
        .contact-heading {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--dark);
            letter-spacing: -0.01em;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .contact-icon {
            min-width: 50px;
            height: 50px;
            background-color: var(--pattern-bg);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius);
            font-size: 1.4rem;
            transition: var(--transition);
        }
        
        .contact-item:hover .contact-icon {
            background-color: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-label {
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--dark);
        }
        
        .contact-value {
            color: var(--text-light);
            font-size: 1rem;
        }

        .contact-form {
            background-color: var(--pattern-bg);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-control {
            width: 100%;
            padding: 16px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius);
            transition: var(--transition);
            font-size: 1rem;
            background-color: white;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 52, 141, 0.1);
        }

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

        .btn-block {
            width: 100%;
            margin-top: 8px;
        }

        /* Coming Soon */
        .coming-soon {
            background: linear-gradient(135deg, var(--primary), #102166);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .coming-soon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23BBC9F0' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
        }
        
        .coming-soon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(193, 151, 88, 0.2) 0%, transparent 70%);
            z-index: 0;
        }
        
        .coming-soon-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .coming-soon-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            background: linear-gradient(90deg, white, var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        
        .coming-soon-desc {
            font-size: 1.3rem;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            line-height: 1.6;
        }

        .timer {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 60px 0;
            flex-wrap: wrap;
        }

        .timer-item {
            width: 110px;
            height: 110px;
            border-radius: var(--radius);
            background-color: rgba(16, 38, 151, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .timer-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .timer-item:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .timer-item:hover::before {
            opacity: 0.2;
        }

        .timer-count {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            position: relative;
            z-index: 1;
        }

        .timer-label {
            font-size: 1rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
            position: relative;
            z-index: 1;
        }

        .subscribe {
            max-width: 550px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            position: relative;
            z-index: 1;
        }

        .subscribe .form-control {
            border: none;
            border-radius: 30px;
            padding: 18px 25px;
            flex-grow: 1;
            font-size: 1.05rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .subscribe .form-control:focus {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        .subscribe .btn {
            border-radius: 30px;
            padding: 15px 30px;
            white-space: nowrap;
            background: var(--accent);
            color: white;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(193, 151, 88, 0.3);
        }
        
        .subscribe .btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(193, 151, 88, 0.4);
        }
        
        .subscribe .btn::before {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Join us section */
        .join-us {
            background-color: var(--pattern-bg);
            position: relative;
            overflow: hidden;
        }
        
        .join-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(16, 38, 151, 0.05) 0%, transparent 70%);
            z-index: 0;
        }
        
        .join-us-container {
            position: relative;
            z-index: 1;
        }
        
        .join-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .join-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            border: 1px solid rgba(187, 201, 240, 0.2);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 520px;
        }
        
        .join-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transition: height 0.3s ease;
            z-index: 0;
        }
        
        .join-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(16, 38, 151, 0.15);
        }
        
        .join-card:hover::before {
            height: 8px;
        }
        
        .join-header {
            padding: 25px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .join-title {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .join-subtitle {
            color: var(--text-light);
            font-size: 1rem;
        }
        
        .join-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .join-features {
            margin-bottom: 25px;
            flex: 1;
        }
        
        .join-feature {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .join-feature-icon {
            color: var(--accent);
            font-size: 1.2rem;
            min-width: 24px;
        }
        
        .join-feature-text {
            font-size: 1rem;
            color: var(--dark);
        }
        
        .join-action {
            margin-top: auto;
            padding-top: 15px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-link {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-link:hover {
            color: white;
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive */

/* Modal styles based on the updated design */

/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow: hidden; /* Changed from auto to hidden */
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: transform 0.4s ease;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.modal.active .modal-content {
    transform: translateY(0);
}

/* Modal Header - Now Sticky */
.modal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 25px 30px;
    background: var(--primary);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Modal Body */
.modal-body {
    padding: 30px;
    color: var(--dark);
    overflow-y: auto; /* Allow scrolling inside the body */
    flex: 1;
}

.modal-body h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 40px;
    color: var(--primary);
    text-align: center;
    font-weight: 600;
}

.modal-body h3 span {
    position: relative;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-body h3 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 3px;
    left: 0;
    background-color: rgba(193, 151, 88, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* Eligibility List */
.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.eligibility-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.eligibility-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--accent);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.eligibility-item:hover {
    transform: translateX(5px);
    background: #f5f5f5;
}

.eligibility-icon {
    font-size: 2rem;
    margin-right: 20px;
    min-width: 40px;
    display: flex;
    justify-content: center;
}

.eligibility-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
}

/* Highlighted text */
.eligibility-text .highlight {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    cursor: default;
}

.eligibility-text .highlight:hover {
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-body h3 {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .eligibility-item {
        padding: 15px;
    }
    
    .eligibility-icon {
        font-size: 1.5rem;
        margin-right: 15px;
    }
    
    .eligibility-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .eligibility-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .eligibility-icon {
        margin-bottom: 10px;
    }
}


/* Styles for the Branches Logo Gallery/Carousel */

.branches {
    background-color: var(--pattern-bg);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.branches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(187, 201, 240, 0.2) 0%, transparent 60%);
    z-index: 0;
}

/* Logo Carousel/Gallery */
.branch-logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0 30px;
    position: relative;
    flex-wrap: nowrap;
    overflow: hidden;
}

.branch-logo-slide {
    flex: 0 0 auto;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease;
}

.branch-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Carousel Navigation Dots */
.branch-carousel-dots {
    display: none; /* Hidden on desktop */
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(16, 38, 151, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Partnership Buttons */
.branches-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.branches-buttons .btn {
    min-width: 200px;
}

/* Responsive Styling */
@media (max-width: 991.98px) {
    .branch-logo-carousel {
        gap: 20px;
    }
    
    .branch-logo-slide {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .branch-logo-carousel {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 10px 0;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .branch-logo-slide {
        width: 85%;
        min-width: 220px;
        height: 220px;
        scroll-snap-align: center;
        margin-right: 5px;
    }
    
    .branch-carousel-dots {
        display: flex;
    }
    
    .branches-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .branches-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Carousel Animation */
@media (max-width: 767.98px) {
    @keyframes autoSlide {
        0%, 26.66% {
            transform: translateX(0);
        }
        33.33%, 59.99% {
            transform: translateX(-100%);
        }
        66.66%, 93.32% {
            transform: translateX(-200%);
        }
        100% {
            transform: translateX(0);
        }
    }
    
    .branch-logo-carousel {
        animation: autoSlide 15s infinite ease-in-out;
        width: 300%;
        display: flex;
        justify-content: flex-start;
    }
    
    .branch-logo-slide {
        width: 33.333%;
        min-width: unset;
        flex: 1;
        margin-right: 0;
    }
}
/* Updated section title styling for Our Branches to match Coming Soon */

.branches .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, white, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Optional subtitle styling if needed */
.branches .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Update button styling to match Coming Soon section better */
.branches .btn {
    border-radius: 30px;
    padding: 15px 30px;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.3s ease;
}

.branches .btn:first-child {
    background: var(--accent);
    color: white;
    box-shadow: 0 5px 20px rgba(193, 151, 88, 0.3);
}

.branches .btn:first-child:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 151, 88, 0.4);
}

.branches .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.branches .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Add glow effect to buttons */
.branches .btn:first-child {
    animation: glow 3s infinite;
}

/* Match spacing with Coming Soon section */
.branches {
    padding: 100px 0;
}

.branches { background: linear-gradient(135deg, var(--primary), #102166); }


/* Form status message styling */
.form-status {
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.form-status-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.form-status-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Animation for status messages */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile navbar specific styles */
@media (max-width: 767.98px) {
    /* Hamburger button styling */
    .hamburger {
        display: block !important;
        cursor: pointer;
        background: transparent;
        border: none;
        font-size: 1.8rem;
        padding: 5px 10px;
        color: var(--primary);
        z-index: 1001;
    }
    
    /* Mobile navbar container */
    .navbar {
        display: none; /* Hidden by default */
        position: absolute;
        top: 70px; /* Adjust based on your header height */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
        z-index: 1000;
        padding: 10px 0;
    }
    
    /* Visible state when active class is applied */
    .navbar.active {
        display: flex;
    }
    
    /* Style for each navigation link in mobile mode */
    .nav-link {
        width: 100%;
        padding: 15px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        text-align: left;
    }
}


/* Simple Auto-Rotating Slideshow CSS */

/* Desktop view - all slides visible */
.branch-logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0 30px;
    position: relative;
    z-index: 1;
}

.branch-logo-slide {
    flex: 0 0 auto;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 255);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.branch-logo-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Mobile view - slideshow */
@media (max-width: 767.98px) {
    .branch-logo-carousel {
        display: block;
        width: 80%;
        margin: 30px auto;
        position: relative;
        height: 200px; /* Fixed height for mobile */
    }
    
    .branch-logo-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease;
        z-index: 0;
    }
    
    /* Only the active slide is visible */
    .branch-logo-slide.active {
        opacity: 1;
        z-index: 1;
    }
}


/* Mobile Slideshow CSS Overrides - Keep at the end of your stylesheet */
@media (max-width: 767.98px) {
    /* Container for the slideshow */
    .branch-logo-carousel {
        position: relative !important;
        display: block !important;
        width: 80% !important;
        height: 200px !important;
        margin: 30px auto !important;
        animation: none !important;
        transform: none !important;
        overflow: visible !important;
    }
    
    /* Individual slides */
    .branch-logo-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        opacity: 1 !important;
        transform: none !important;
        flex: none !important;
        min-width: unset !important;
        display: none !important; /* JS will control display */
    }
    
    /* Active slide */
    .branch-logo-slide.active,
    .branch-logo-slide[style*="display: flex"] {
        display: flex !important;
        z-index: 1 !important;
    }
    
    /* Logo image */
    .branch-logo-img {
        max-width: 90% !important;
        max-height: 90% !important;
        object-fit: contain !important;
    }
    
    /* Navigation dots */
    .branch-carousel-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        margin: 20px 0 !important;
        z-index: 2 !important;
    }
    
    .dot {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        background-color: rgba(255, 255, 255, 0.3) !important;
        cursor: pointer !important;
        transition: background-color 0.3s ease, transform 0.3s ease !important;
    }
    
    .dot.active {
        background-color: white !important;
        transform: scale(1.2) !important;
    }
}

@media (max-width: 767.98px) {
    /* Enhanced slide transition effects */
    .branch-logo-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0 !important;
        transition: opacity 0.8s ease !important;
        transform: none !important;
        display: block !important; /* Always display but control with opacity */
        z-index: 0 !important;
    }
    
    /* Active slide - fade in effect */
    .branch-logo-slide.active,
    .branch-logo-slide[style*="display: flex"] {
        opacity: 1 !important;
        z-index: 1 !important;
    }
    
    /* Ensure the container maintains its height during transitions */
    .branch-logo-carousel {
        min-height: 200px !important;
    }
}




