        :root {
            --primary-blue: #3a6ea5;
            --light-blue: #a0c4e6;
            --soft-gold: #d4b483;
            --cream: #f8f4e9;
            --light-gray: #f0f0f0;
            --white: #ffffff;
            --text-dark: #4a4a4a;
            --text-light: #6c757d;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--cream);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        /* Header with Logo */
        .header-container {
            background: linear-gradient(to bottom, var(--light-blue) 0%, #c5dbf2 100%);
            /* background: linear-gradient(135deg, var(--primary-blue) 0%, #5a8ec9 100%); */
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-bottom: 4px solid var(--soft-gold);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-img {
            width: 80px;
            height: 80px;
            /* background: var(--white); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            /* border: 3px solid var(--soft-gold); */
            /* box-shadow: 0 0 15px rgba(212, 180, 131, 0.3); */
        }
        
        .logo-img i {
            font-size: 40px;
            color: var(--primary-blue);
        }
        
        .logo-text {
            color: var(--darkblue);
            /* color: #1a293a; */
            text-align: center;
        }
        
        .logo-text h1 {
            font-size: 2.2rem;
            margin: 0;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 1.5px;
        }
        
        .logo-text p {
            font-size: 1rem;
            margin: 0;
            color: var(--light-blue);
            letter-spacing: 2px;
        }
        
        /* Navigation */
        .navbar {
            background:  #1a293a;
            padding: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .navbar-nav .nav-link {
            color: var(--white);
            font-weight: 500;
            padding: 1rem 1.5rem;
            transition: all 0.3s;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(to bottom, var(--light-blue) 0%, #c5dbf2 100%);
            /* background: var(--primary-blue) !important; */
            color: #1a293a;
        }
        
        .dropdown-menu {
            background: linear-gradient(to bottom, var(--primary-blue) 0%, #5a8ec9 100%);
            border: none;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .dropdown-item {
            color: var(--white);
            padding: 0.75rem 1.5rem;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background: var(--soft-gold);
            color: var(--primary-blue);
        }
        
        /* Fixed Infodesk dropdown */
        .nav-item.dropdown .nav-link::after {
            display: inline-block;
            margin-left: 0.255em;
            vertical-align: 0.255em;
            content: "";
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-bottom: 0;
            border-left: 0.3em solid transparent;
        }
        
        /* News Ticker */
        .news-ticker {
            background: linear-gradient(to right, var(--soft-gold) 0%, #e6cfad 100%);
            color: #1a293a;
            padding: 12px 0;
            font-weight: 500;
            border-bottom: 2px solid var(--primary-blue);
        }
        
            .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* Side Content Carousel */
        .side-carousel {
            padding: 80px 0;
            background: linear-gradient(to bottom, var(--light-blue) 0%, #c5dbf2 100%);
        }
        
        .carousel-content-container {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-image-side {
            height: 500px;
            overflow: hidden;
        }
        
        .carousel-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .carousel-content-side {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            background: var(--white);
            color: #1a293a;   
            /* color: var(--text-dark); */
        }
        
        .carousel-content-side h2 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 2.2rem;
        }
        
        .carousel-content-side p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-light);
        }
        
        .facility-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .facility-features li {
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
            color: var(--text-dark);
        }
        
        .facility-features li:before {
            content: "✓";
            color: var(--soft-gold);
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .carousel-control-side {
            width: 50px;
            height: 50px;
            background: var(--soft-gold);
            border-radius: 50%;
            opacity: 1;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .carousel-control-prev-side {
            left: -25px;
        }
        
        .carousel-control-next-side {
            right: -25px;
        }
        
        .carousel-control-side i {
            color: var(--primary-blue);
            font-size: 1.5rem;
        }
        
        .carousel-indicators-side {
            bottom: -50px;
        }
        
        .carousel-indicators-side button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            opacity: 0.3;
            margin: 0 8px;
        }
        
        .carousel-indicators-side .active {
            opacity: 1;
            background-color: var(--soft-gold);
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: #1a293a;
            /* color: var(--primary-blue); */
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--soft-gold);
            border-radius: 2px;
        }
        
        /* About Section */
        .about-container {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid var(--light-gray);
        }
        
        .about-img {
            width: 100%;
            height: auto;
            /* width: 100%;
            height: 100%; */
            /* height: 100%; */
            /* min-height: 400px; */
            /* background: url('images/zilley-ahmed-nizami.jpg') center/cover; */
        }
        
        .about-content {
            padding: 40px;
            background: var(--white);
        }
        
        /* Club Leadership Section */
        .leadership-section {
            background: linear-gradient(to bottom, var(--light-blue) 0%, #c5dbf2 100%);
        }
        
        .member-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid var(--light-gray);
        }
        
        .member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .member-img {
            height: 300px;
            overflow: hidden;
        }
        
        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .member-card:hover .member-img img {
            transform: scale(1.05);
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
        }
        
        .member-name {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .member-designation {
            color: var(--soft-gold);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .member-portfolio {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            color: var(--primary-blue);
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            color: var(--soft-gold);
            transform: translateY(-3px);
        }
        
        /* Services */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid var(--light-gray);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--soft-gold);
            margin-bottom: 20px;
        }
        
        /* Improved Gallery Section */
        .gallery-section {
            background: linear-gradient(to bottom, var(--light-blue) 0%, #c5dbf2 100%);
            /* background: var(--white); */
        }
        
        .gallery-filter {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .gallery-filter-btn {
            background: var(--light-gray);
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .gallery-filter-btn:hover, .gallery-filter-btn.active {
            background: var(--primary-blue);
            color: var(--white);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 20px;
            color: var(--white);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }
        
        .gallery-item-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .gallery-item-desc {
            font-size: 0.9rem;
        }
        
        /* Contact Form */
        .contact-form .form-control {
            border-radius: 5px;
            border: 1px solid var(--light-gray);
            padding: 15px;
            transition: all 0.3s;
            background: var(--white);
        }
        
        .contact-form .form-control:focus {
            box-shadow: 0 0 0 3px rgba(58, 110, 165, 0.2);
            border-color: var(--primary-blue);
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--primary-blue) 0%, #5a8ec9 100%);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background: linear-gradient(to right, var(--soft-gold) 0%, #e6cfad 100%);
            color: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Map Section */
        .map-container {
            
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 450px;
        }
        
        /* Login Modal */
        .modal-content {
            border-radius: 10px;
            border: none;
            box-shadow: 0 5px 30px rgba(0,0,0,0.15);
            background: var(--white);
        }
        
        /* Footer */
        footer {
           background: #1a293a;
            /* background: linear-gradient(135deg, var(--primary-blue) 0%, #5a8ec9 100%); */
            color: var(--white);
            padding: 60px 0 30px;
            border-top: 4px solid var(--soft-gold);
        }
        
        .footer-title {
            color: var(--soft-gold);
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--soft-gold);
            transform: translateX(5px);
        }
        
        .social-icons a {
            color: var(--white);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--soft-gold);
            transform: translateY(-5px);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .about-img {
                min-height: 300px;
            }
            
            .member-img {
                height: 250px;
            }
            
            .carousel-image-side {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar-nav .nav-link {
                padding: 0.5rem 1rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .logo-text h1 {
                font-size: 1.8rem;
            }
            
            .logo-img {
                width: 60px;
                height: 60px;
            }
            
            .logo-img i {
                font-size: 30px;
            }
            
            .member-img {
                height: 300px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .carousel-content-side {
                padding: 25px;
            }
            
            .carousel-content-side h2 {
                font-size: 1.8rem;
            }
            
            .carousel-control-side {
                width: 40px;
                height: 40px;
            }
            
            .carousel-control-prev-side {
                left: 15px;
            }
            
            .carousel-control-next-side {
                right: 15px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }
        }