  
   
    /* Custom Modern Theme Colors */
:root {
    --primary-gold: #FFD700;
    --accent-blue: #0047AB;
    --dark-bg: #1a1a1a;
}


/* Navbar Styling */
.navbar {
    background: rgba(26, 26, 26, 0.95) !important; /* Slight transparency */
    backdrop-filter: blur(10px); /* Modern Glassmorphism effect */
    border-bottom: 2px solid var(--primary-gold);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Modern Buttons */
.btn-primary {
    background-color: var(--accent-blue) !important;
    border: none !important;
    border-radius: 50px; /* Rounded pill shape */
    padding: 8px 25px !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
    transition: transform 0.2s ease;
}

.btn-outline-light {
    border-radius: 50px;
    border: 2px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
    padding: 8px 25px !important;
}

.btn-primary:hover, .btn-outline-light:hover {
    transform: translateY(-3px); /* Hover lift effect */
}

/* Hero Section (Carousel) Shadow */
.hero {
    position: relative;
    top: -90px;
    
    padding-left: 52px;
    padding-right: 52px;
    border-radius: 15px;
    overflow: hidden;
}
.carousel-inner{
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

}
.carousel-item img {
    height: 500px; /* Fixed height for consistency */
    object-fit: cover;
    filter: brightness(0.8); /* Image dark rakhiye taaki text dikhe */
}

 #about {
    background-color: #ffffff;
}

.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-wrapper img {
    border-left: 8px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--accent-blue);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 3px solid #fff;
}

.text-warning {
    color: var(--primary-gold) !important;
}

/* Icons styling (Agar Bootstrap Icons use kar rahe hain) */
.bi-check-circle-fill {
    font-size: 1.2rem;
}
.stats-section {
    background: linear-gradient(45deg, #1a1a1a, #0047AB);
}

.feature-icon i {
    transition: 0.3s;
    display: inline-block;
}

.col-md-4:hover .feature-icon i {
    transform: scale(1.2) rotate(10deg);
}

.rounded-4 {
    border-radius: 1.5rem !important;
}
.stats-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05); /* Subtle glass effect on hover */
}

.tracking-widest {
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.text-warning {
    color: #FFD700 !important; /* Premium Gold */
    font-family: 'Poppins', sans-serif;
}
.feature-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    background-color: #fff !important;
}

.tracking-wider {
    letter-spacing: 2px;
}

.feature-icon i {
    display: inline-block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: rotateY(180deg);
}
#register .form-control, #register .form-select {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    background-color: #fcfcfc;
}

#register .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 71, 171, 0.1);
    border-color: #0047AB;
}

#register .btn-primary {
    background-color: #0047AB;
    border: none;
    transition: background 0.3s ease;
}

#register .btn-primary:hover {
    background-color: #003380;
}
/* Background colors for icons */
.bg-primary-light { background-color: rgba(0, 71, 171, 0.1); }
.bg-warning-light { background-color: rgba(255, 193, 7, 0.1); }
.bg-success-light { background-color: rgba(25, 135, 84, 0.1); }

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.contact-card {
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #0047AB !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

.contact-card:hover .icon-box {
    transform: scale(1.1);
}
@media screen and (max-width: 768px) {
    .hero {
        top: 61px;
        border-radius: 12px;
    }

    .carousel-item img {
        height: 350px;
    }

    .carousel-caption h5 {
        font-size: 1.1rem;
    }
    
    .experience-badge {
        padding: 10px;
        font-size: 0.8rem;
    }
    /* 1. Navbar Adjustments */
    .navbar {
        padding: 0.3rem 0.8rem; /* Slimmer navbar on mobile */
    }

    .navbar-toggler {
        border: 1px solid var(--primary-gold); /* Custom toggle color */
        padding: 4px 8px;
    }

    /* 2. Hero Section */
    .hero {
        margin-top: 80px; /* Reduced space for mobile header */
        margin-left: 5px;
        margin-right: 5px;
        border-radius: 10px;
    }

    .carousel-item img {
        height: 300px; /* Shorter height so it fits the viewport */
        object-fit: cover;
    }

    /* 3. Typography scaling */
    .carousel-caption h5 {
        font-size: 1.25rem;
        font-weight: 700;
    }

    .carousel-caption p {
        font-size: 0.85rem;
        display: -webkit-box; /* Limits text to 2 lines on small screens */
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 4. Buttons */
    .btn-primary, .btn-outline-light {
        width: 100%; /* Full width buttons are easier to tap on mobile */
        margin-bottom: 10px;
        padding: 12px 20px !important; /* Larger touch target */
    }

    /* 5. About Section / Experience Badge */
    .experience-badge {
        position: relative; /* Move it from absolute to relative so it doesn't overlap text */
        bottom: 0;
        right: 0;
        margin-top: 20px;
        /* width: fit-content; */
    }
}
/* Dropdown Styling */
.dropdown-menu-dark {
    background-color: var(--dark-bg);
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    margin-top: 10px;
}

.dropdown-item {
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--primary-gold) !important;
    color: var(--dark-bg) !important;
}

/* Remove default arrow for cleaner look (Optional) */
.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: 0.15em;
}