:root {
    --primary: #fad606;
    --secondary: #0b0172;
    --white: #ffffff;
    --light-yellow: #fef3c7;
    --dark-blue: #050347;
    --text-dark: #333333;
    --bs-font-sans-serif: 'Quicksand', sans-serif;

    /* Additional color variables from paste.txt */
    --primary-blue: #0b0172;
    --primary-yellow: #ffc107;
    --light-blue: #e3f2fd;
    --dark-blue-alt: #1a237e;
    --success-green: #28a745;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), #4a90e2);
    --gradient-yellow: linear-gradient(135deg, var(--primary-yellow), #ffeb3b);
}

/* FIXED: Prevent horizontal overflow and body movement */
html {
    overflow-x: hidden;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    padding-top: 76px;
    line-height: 1.6;
}

/* slider happening */

.yellow-text{
	color: #fbd704;
	
}
        .card-slider {
            position: relative;
            overflow: hidden;
        }
        
        .slider-container {
            display: flex;
            transition: transform 0.3s ease;
        }
        
        .card-item {
            flex: 0 0 100%;
            padding: 0 10px;
        }
        
        /* Desktop - 4 cards */
        @media (min-width: 768px) {
            .card-item {
                flex: 0 0 25%;
            }
        }
        
        /* Tablet - 2 cards */
        @media (min-width: 576px) and (max-width: 767px) {
            .card-item {
                flex: 0 0 50%;
            }
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s ease;
        }
        
        .slider-nav:hover {
            background: rgba(0, 0, 0, 0.9);
        }
        
        .slider-nav.prev {
            left: 10px;
        }
        
        .slider-nav.next {
            right: 10px;
        }
        
        .slider-nav:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .ad-card {            
            border: 2px dashed #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .ad-card:hover {
            border-color: #007bff;
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
        }
        
        .ad-card.has-image {
            border-style: solid;
            border-color: #28a745;
        }
        
        .ad-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .upload-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .ad-card:hover .upload-overlay {
            opacity: 1;
        }
        
        .upload-text {
            text-align: center;
            color: #6c757d;
        }
        
        .file-input {
            display: none;
        }
        
        .slider-dots {
            text-align: center;
            margin-top: 20px;
        }
        
        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .dot.active, .dot:hover {
            background-color: #007bff;
        }
        
        .card-content {
            padding: 15px;
            text-align: center;
        }
        
        .ad-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .ad-description {
            color: #6c757d;
            font-size: 0.9rem;
        }
    

/* happening end */

/* FIXED: Prevent body movement when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.bg-blue {
    background: var(--gradient-primary);
    color: #fff;
}

.white-text {
    color: #fff;
}
.horse{
    width: 80px;
    margin-left: -40px;
    margin-bottom: -35px;
}

.yellow {
    color: #fad606;
}
 .yellow-bg1{
  background: var(--gradient-yellow);
  color: var(--primary-blue);  
  padding: 2rem;
  text-align: center;
  
 }
.bg-yellow {
    background: var(--gradient-yellow);
}

.logo {
    width: 80px;
    z-index: 9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bubblegum Sans', cursive;
    color: var(--secondary);
}

.btn-primary {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 20px;
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 50px;
    transition: all 0.3s;

}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 1, 114, 0.3);
}

.btn-primary-blue {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 20px;
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 50px;
    transition: all 0.3s;

}

.btn-primary-blue:hover {
     font-family: 'Bubblegum Sans', cursive;
     background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 1, 114, 0.3);
}

.btn-secondary {
    font-family: 'Bubblegum Sans', cursive;
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 214, 6, 0.3);
}

/* Navigation */
.navbar {
    background-color: #2c2f91 !important;
    box-shadow: 0 2px 15px rgba(11, 1, 114, 0.3);
    padding: 2px 0;
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
}

.sun-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: rotate 20s linear infinite;
    color: var(--secondary);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    color: var(--primary);
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(250, 214, 6, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fad606' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo-ani {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

/* FIXED: Mobile Sliding Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--secondary);
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 9999;
        box-shadow: none;
        overflow-y: auto;
        display: block !important;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .navbar-toggler {
        font-size: 25px;
        line-height: 1;
        color: var(--bs-navbar-color);
        transition: var(--bs-navbar-toggler-transition);
        z-index: 1051;
        position: relative;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }

    .mobile-menu-header h5 {
        color: var(--primary);
        margin: 0;
        font-size: 1.5rem;
    }

    .close-menu {
        background: none;
        margin-right: 0;
        border: none;
        font-size: 4rem;
        color: var(--primary);
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .close-menu:hover {
        transform: rotate(90deg);
    }

    .navbar-nav {
        flex-direction: column;
        padding: 0 1rem;
        width: 100%;
    }

    .navbar-nav .nav-link {
        font-family: 'Bubblegum Sans', cursive;
        padding: 1rem;
        font-size: 21px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white) !important;
        display: block;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background-color: var(--primary);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: rgba(250, 214, 6, 0.1);
        padding-left: 1.5rem;
        color: var(--primary) !important;
    }

    .navbar-nav .nav-link:hover::before {
        transform: translateX(0);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .btn-primary {
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    /* FIXED: Simplified overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 1040;
    }

    .mobile-menu-overlay.show {
        visibility: visible;
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* New Hero Section from paste.txt */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue), #4a90e2);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 0,100"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.3;
}

.shape1 {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 .text-warning {
    color: var(--primary) !important;
}

/* Section Cards from paste.txt */
.section-card {
    background: #d6fbff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.icon-badge {
    width: 60px;
    height: 60px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.investment-card {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.investment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.investment-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info {
    background: white;
    color: var(--primary-blue);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 10px;
}

.contact-item i {
    color: var(--primary-blue);
    margin-right: 1rem;
    min-width: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary-blue);
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-yellow);
    margin: 2rem 0;
    position: relative;
    text-align: center;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-yellow);
    font-weight: bold;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.vision-card {
    background: linear-gradient(135deg, var(--light-blue), #bbdefb);
    border: none;
}

.journey-card {
    background: linear-gradient(135deg, #fff3e0, #ffcc80);
    border: none;
}

.approach-card {
    background: linear-gradient(135deg, #f39e9e, #f50606);
    border: none;
    color: #fff;
}

/* Founder Section from paste.txt */
.founder-section {
    background: var(--gradient-yellow);
    border-radius: 30px;
    padding: 4rem;
    margin: 4rem 0;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-style: italic;
    font-size: 1.2rem;
    color: #ffd51f;
    background: #0b0d88;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-yellow);
    margin: 2rem 0;
    position: relative;
}

.quote-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: var(--primary-yellow);
    font-weight: bold;
}

.highlight-badge {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin: 0.5rem 0.5rem 0.5rem 0;
}

.achievement-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border-left: 5px solid var(--primary-yellow);
}

.emoji-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--success-green);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    min-width: 20px;
}

/* Career Pages */
.career-card {
    background: var(--gradient-yellow);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-yellow);
}

.job-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.job-badge {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* File Upload Areas */
.upload-area {
    border: 3px dashed var(--primary-blue);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    background: var(--light-blue);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: var(--primary-yellow);
    background: #fff9c4;
    transform: scale(1.02);
}

.upload-area.dragover {
    border-color: var(--success-green);
    background: #e8f5e8;
}

.upload-icon {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.upload-area:hover .upload-icon {
    transform: scale(1.1);
}

.file-info {
    background: var(--success-green);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
}

/* Benefits and Employee Features */
.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.employee-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-yellow);
    margin-right: 1rem;
}

/* Process Steps */
.progress-step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step-line {
    width: 2px;
    height: 40px;
    background: var(--primary-blue);
    margin-left: 19px;
    margin-bottom: 1rem;
}

/* Culture and Layout Grids */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Alerts and Notifications */
.alert-custom {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid var(--primary-yellow);
    border-radius: 15px;
    padding: 1.5rem;
}

/* Floating Actions */
.floating-action {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(11, 1, 114, 0.4);
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.contact-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.branch-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.branch-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

.branch-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    position: relative;
    z-index: 2;
}

.branch-body {
    padding: 2.5rem;
}

.contact-info-item {
    background: var(--light-blue);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: var(--primary-yellow);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.map-container {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #666;
    font-size: 1.1rem;
}

.branch-badge {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

/* Contact Forms */
.contact-form-section {
    background: var(--light-blue);
    border-radius: 25px;
    padding: 3rem;
    margin: 1rem 0;
}

.form-control,
.form-select,
.form-control:focus {
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(11, 1, 114, 0.25);
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(11, 1, 114, 0.4);
    color: white;
}

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

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

.quick-contact {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quick-contact-item {
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.quick-contact-item:hover {
    transform: scale(1.05);
}

.office-hours {
    background: var(--gradient-yellow);
    color: var(--primary-blue);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.emergency-contact {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;

}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

.success-message {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    display: none;
    text-align: center;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(11, 1, 114, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(11, 1, 114, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--secondary);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1) rotate(10deg);
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.program-header {
    padding: 2.5rem 2.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.program-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    position: relative;
    z-index: 2;
}

.program-body {
    padding: 2.5rem;
}

.program-image {
    height: 200px;
    background: var(--light-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.age-tag {
    display: inline-block;
    background: var(--light-yellow);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.age-badge {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.time-badge {
    background: var(--success-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.subject-item {
    background: var(--light-blue);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
    color: var(--primary-blue);
    transition: transform 0.2s ease;
}

.subject-item:hover {
    transform: scale(1.05);
    background: var(--primary-yellow);
    color: var(--primary-blue);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--success-green);
    margin-right: 1rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.quote-box {
    background: var(--light-blue);
    border-left: 5px solid var(--primary-yellow);
    padding: 1.5rem;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    color: var(--primary-blue);
    margin: 2rem 0;
    position: relative;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: var(--primary-yellow);
    font-weight: bold;
}

.highlight-text {
    background: linear-gradient(120deg, var(--primary-yellow) 0%, var(--primary-yellow) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 0 0.2em;
    font-weight: bold;
}

.special-program {
    border: 3px solid var(--primary-yellow);
    position: relative;
}

.special-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.program-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 0 0 25px 25px;
}

.btn-enroll {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    border: none;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-enroll:hover {
    background: #e6ac00;
    transform: translateY(-2px);
    color: var(--primary-blue);
}

.schedule-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.schedule-table th {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    border: none;
}

.schedule-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-tabs {
    border: none;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    background: white;
    color: var(--primary-blue);
    border-radius: 25px;
    margin: 0 0.5rem;
    padding: 1rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Activity Cards */
.activity-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 1, 114, 0.1);
    transition: all 0.3s;
    height: 100%;
    border-top: 5px solid var(--primary);
}

.activity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 1, 114, 0.2);
}

.activity-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.activity-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.activity-icon-large {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.activity-body {
    padding: 2rem;
}

.activity-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s;
}

.activity-features li:hover {
    color: var(--secondary);
    padding-left: 2.5rem;
}

.activity-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.activity-highlight {
    background: var(--light-yellow);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--secondary);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

.gallery-overlay h5 {
    margin-bottom: 5px;
    font-weight: bold;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonial-slider {
    padding: 40px 0;
}

.swiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(11, 1, 114, 0.1);
    height: 100%;
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: Georgia, serif;
}

.swiper-pagination-bullet {
    background: var(--secondary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.1;
}

/* Footer */
.footer {
    background: #2d3091;
    color: var(--white);
    padding-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary);
}

.footer h5 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
    margin-right: 10px;
}

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

.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .sun-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .section-card {
        padding: 2rem;
    }

    .founder-section {
        padding: 1rem;
    }

    .program-header,
    .program-body {
        padding: 1.5rem;
    }

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

    .section-card,
    .investment-card {
        padding: 1.5rem;
    }

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

    .nav-tabs .nav-link {
        margin: 0.25rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .branch-header,
    .branch-body,
    .contact-form-section {
        padding: 1.5rem;
    }

    .map-container {
        height: 250px;
    }

    .career-card {
        padding: 1.5rem;
    }

    .upload-area {
        padding: 2rem;
    }

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