  :root {
            --primary-gradient: linear-gradient(45deg, #FF3366, #FF6B6B);
            --secondary-gradient: linear-gradient(45deg, #7F00FF, #E100FF);
            --text-gradient: linear-gradient(45deg, #FF3366, #FF6B6B);
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        /* Glassmorphism Navbar */
		
		 .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 0;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            background: rgba(255, 255, 255, 0.98);
        }
        .navbar-brand img{
            height: 60px;
        }

        .navbar-brand {
            /*font-size: 1.8rem;*/
            font-weight: 800;
            background: #260d7b;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #260d7b;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover::after {
            transform: scaleX(1);
        }

        .nav-item {
            position: relative;
            margin: 0 0.25rem;
        }

        .nav-link {
            font-weight: 500;
          /*  padding: 0.75rem 1.25rem !important;*/
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50px;
            background: #260d7b;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .nav-link:hover::before {
            opacity: 1;
        }

        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }

        .dropdown-menu {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            margin-top: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .dropdown-menu.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown-item {
            padding: 0.7rem 1.5rem;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: #260d7b;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .dropdown-item:hover::before {
            width: 100%;
            opacity: 1;
        }

        .dropdown-item:hover {
            color: white;
            padding-left: 2rem;
        }

        .dropdown-item span {
            position: relative;
            z-index: 1;
        }

        .dropdown-indicator {
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover .dropdown-indicator {
            transform: translateX(5px);
        }

        .gradient-btn {
            background: var(--primary-gradient);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .gradient-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--secondary-gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gradient-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 51, 102, 0.3);
        }

        .gradient-btn:hover::before {
            opacity: 1;
        }

        .gradient-btn span {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 15px;
                margin-top: 1rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .dropdown-menu {
                border: none;
                box-shadow: none;
                margin-top: 0;
                padding-left: 1rem;
            }
            
            .nav-link {
                padding: 0.5rem 1rem !important;
            }
        }
        

        /* Hero Section */
   

        /* Feature Cards */
        .feature-section {
            background: #fff;
            padding: 6rem 0;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .feature-card:hover * {
            color: white;
            position: relative;
            z-index: 1;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
            transform: rotate(-10deg);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotate(0deg) scale(1.1);
            background: white;
            color: #FF3366;
        }

        /* Modern Footer */
        .footer {
            background: linear-gradient(135deg, #000e66 0%, #725519 100%);
            color: white;
            padding: 1rem 0 1rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,51,102,0.1), rgba(255,107,107,0.1));
        }

        .footer-content {
            position: relative;
            z-index: 1;
        }

        .footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            background: #e89c22;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .memberBtn{
            background:linear-gradient(135deg, #725519 0%, #000e66 100%);;
            color: white;
            border: #000e66;
        }

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

        .social-links a:hover {
            background: var(--primary-gradient);
            transform: translateY(-5px) rotate(360deg);
        }

     
		.hero-slider .hero-slide {
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-slider-section{
            margin-top: 103px;
        }
        /*.hero-slide img{
            height: 200px
        }*/



    .notice-section {
        background-color: #f9f9f9;
        padding: 40px 0;
    }
    .notice-card {
        background: #ffffff;
        border-left: 4px solid #e89c22;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
    }
    .notice-icon {
        font-size: 30px;
        margin-bottom: 15px;
        color: #00bcd4;
    }
    .notice-content {
        flex-grow: 1;
    }
    .notice-title {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
        font-weight: 600;
    }
    .notice-list {
        list-style: none;
        padding: 0;
    }
    .notice-item {
        margin-bottom: 15px;
    }
    .notice-text {
        font-size: 16px;
        color: #555;
        line-height: 1.5;
    }
    .notice-link {
        color: #00bcd4;
        text-decoration: none;
        font-weight: 600;
    }
    .notice-link:hover {
        text-decoration: underline;
    }


    /*our-mission-section*/
      .our-mission-section {
        /*background-color:  #000e66; */
            background: linear-gradient(135deg, #725519 0%, #000e66 100%);
        color: white; 
        padding: 60px 0;
        text-align: center;
    }

    .mission-card {
        background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        display: inline-block;
        /*max-width: 700px;*/
        width: 100%;
    }

    .mission-title {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #e89c22;
    }

    .mission-text {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .mission-link {
        background-color: #00bcd4; /* Bright accent color for the link */
        color: white;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

    .mission-link:hover {
        background-color: #008c8c; /* Slightly darker shade on hover */
    }


    .regulations-card-header{
        background: linear-gradient(135deg, #000e66 0%, #725519 100%);;

    }


      .president-card {
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(30, 41, 59, 0.04);
            border: 1px solid #e2e8f0;
            text-align: center;
            padding-top: 0;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .president-card:hover {
            transform: translateY(-8px);
            box-shadow: 0px 20px 40px rgba(30, 41, 59, 0.12);
            border-color: #007bff;
        }

        /* Banner background at the top of the card */
        .president-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 110px;
            background: linear-gradient(135deg, #1e3d73 0%, #007bff 100%);
            z-index: 1;
        }

        .president-card img.card-img-top {
            width: 140px !important;
            height: 140px !important;
            object-fit: cover;
            border-radius: 50% !important;
            border: 4px solid #ffffff !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
            margin: 40px auto 0 !important;
            position: relative;
            z-index: 2;
            display: block;
        }

        .president-card .card-body {
            padding: 16px 14px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
        }

        .president-card .card-title {
            font-size: 14px !important;
            font-weight: 700 !important;
            color: #0f172a !important;
            margin-bottom: 6px !important;
            line-height: 1.3;
        }

        .president-card .card-text {
            font-size: 11px !important;
            font-weight: 700 !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #0284c7 !important;
            background: #e0f2fe;
            padding: 3px 9px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 12px !important;
        }

        .president-card .membership {
            font-size: 11px !important;
            color: #64748b !important;
            margin-bottom: 5px !important;
            width: 100%;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .president-card .membership b {
            color: #1e293b;
        }

        /* Buttons inside the cards */
        .president-card .btn {
            border-radius: 50px !important;
            padding: 6px 16px !important;
            font-size: 11.5px !important;
            font-weight: 700 !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            margin-top: auto !important;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.15);
        }
        .president-card .btn-info {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
            border: none !important;
            color: #ffffff !important;
        }
        .president-card .btn-info:hover {
            box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3) !important;
            transform: scale(1.03);
        }
        .president-card .btn-secondary.disabled {
            background-color: #cbd5e1 !important;
            border: none !important;
            color: #94a3b8 !important;
            box-shadow: none !important;
            opacity: 0.7;
        }



		
	@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Fixes the default Bootstrap margin */
    }

    .dropdown-menu {
        transition: all 0.3s ease-in-out;
    }


}
