
        :root {
            --primary-brown: #4a2c2a;
            --accent-gold: #d4af37;
            --hero-overlay: rgba(139, 187, 174, 0.8);carousel-slide
        }

        body {
            font-family: "Roboto", sans-serif;
        }

        .bebas-neue-regular {
          font-family: "Bebas Neue", sans-serif;
          font-weight: 400;
          font-style: normal;
        }
        .Roboto-regular {
          font-family: "Roboto", sans-serif;
          font-weight: 400;
          font-style: normal;
        }


        /* Header Styles */
        .header-top {
            background-color: var(--primary-brown);
            color: white;
            padding: 25px 0;
        }

        .logo {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }

        .header-title {
            color: var(--accent-gold);
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 1px;
            margin: 0;
            font-family: "Bebas Neue", sans-serif;
        }

        .header-subtitle {
            font-size: 0.9rem;
            margin: 5px 0;
            font-family: "Bebas Neue", sans-serif;
        }

        .email-contact {
            font-size: 0.9rem;
        }

/* Navigation */
        .navbar-section {
            background-color: transparent;
            padding: 20px 0;
            position: relative;
            z-index: 1000;
            margin-top: -20px;
        }

        .navbar-custom {
            background: linear-gradient(45deg, #f4e4a6, #e6d28a);
            padding: 0;
            border-radius: 25px;
            margin-top: -20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
            display: block;
            width: 70%;
            left: 50%;
            transform: translateX(-50%);
        }

        .navbar-nav {
            position: relative;
            z-index: 1001;
        }

        .navbar-nav .nav-link {
            color: var(--primary-brown) !important;
            font-weight: 500;
            padding: 15px 20px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .navbar-nav .nav-link:hover {
            background-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-2px);
        }

        /* Dropdown Styles - Controlled Hover */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background-color: #efde9c;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 0;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            z-index: 1002;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            padding: 0;
            margin: 0;
            pointer-events: none;
        }

        /* Only show dropdown when directly hovering the parent dropdown */
        .dropdown:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown-item {
            color: var(--primary-brown);
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            transition: background-color 0.2s ease;
            border: none;
            background: none;
            font-weight: 500;
            position: relative;
        }

        .dropdown-item:hover {
            background-color: #e6d28a;
            color: var(--primary-brown);
        }

        /* Remove default dropdown arrow */
        .dropdown-toggle::after {
            display: none !important;
        }

        .dropdown-toggle {
            border: none;
            background: none;
        }

        .dropdown-toggle:focus {
            box-shadow: none;
        }

        /* Submenu styles - Controlled Hover */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu > .dropdown-menu {
            top: 0;
            left: 100%;
            margin-left: 1px;
            border-radius: 8px;
            display: none;
            opacity: 0;
            transform: translateX(-10px);
            pointer-events: none;
        }

        /* Only show submenu when directly hovering the submenu item */
        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

        /* Add visual indicator for items with submenus */
        .dropdown-submenu > .dropdown-item::after {
            content: '▶';
            float: right;
            font-size: 0.8rem;
            color: var(--primary-brown);
            opacity: 0.6;
        }
        

        /* Hero Section */
        .hero-section {
            min-height: 500px;
            color: var(--primary-brown);
            position: relative;
            margin-top: -54px;
        }

        /* Carousel Styles */
        .carousel-slide {
            background-size: cover !important;
            background-position: top !important;
            background-repeat: no-repeat !important;
            min-height: 500px;
            display: flex;
            align-items: center;
        }

        .min-vh-50 {
            min-height: 500px;
        }

        .carousel-indicators {
            bottom: 20px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .carousel-indicators button.active {
            background-color: rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        .carousel-indicators button:hover {
            background-color: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(74, 44, 42, 1);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            width: 45px;
            height: 45px;
            background-size: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .carousel-control-prev-icon:hover,
        .carousel-control-next-icon:hover {
            background-color: rgba(175, 164, 164, 0.3);
            border-color: rgba(184, 177, 177, 0.5);
            transform: scale(1.1);
        }


        /*.hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="20" cy="20" r="2" fill="%23fff"/><circle cx="80" cy="40" r="1.5" fill="%23fff"/><circle cx="40" cy="70" r="1" fill="%23fff"/><rect x="60" y="10" width="3" height="3" fill="%23fff" opacity="0.5"/></svg>');
            pointer-events: none;
        }*/
        
.banner-img-1 {
    background: url("/frontend/img/home-banner-1.jpg") no-repeat center center;
    background-size: cover;
}

.banner-img-2 {
    background: url("/frontend/img/home-banner-2.jpg") no-repeat center center;
    background-size: cover;
}

.banner-img-3 {
    background: url("/frontend/img/home-banner-3.jpg") no-repeat center center;
    background-size: cover;
}

.text-content-for-dynamic-size{
    font-size:28px;
}
.third-text{
    font-size:18px;
}
        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .hero-content p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .about-img{
            border-radius:20px;
        }

        .about-illustration {
            max-width: 100%;
            height: auto;
        }
        .mission-vission-main{
            display:flex;
            gap:20px
        }

        .section-title {
            color: var(--primary-brown);
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 30px;
            position: relative;
        }

        /* Announcements */
        .announcements-box {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: fit-content;
        }

        .announcements-title {
            color: var(--primary-brown);
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 10px;
        }

        .announcement-item {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 15px;
            padding-left: 15px;
            border-left: 3px solid var(--accent-gold);
        }

        /* Organization Heads */
        .org-heads-section {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 40px 0;
            position: relative;
        }

        .org-heads-title {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 50px;
        }

        .head-card {
            background: rgba(255,255,255,0.95);
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            margin: 30px 0;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .head-card:hover {
            transform: translateY(-5px);
        }

        .head-card-content {
            display: flex;
            align-items: center;
            min-height: 200px;
            padding-left:15px;
            padding-right:15px;
            padding-top:10px;
        }

        .head-photo-container {
            flex: 0 0 200px;
            height: 200px;
            /*background: linear-gradient(45deg, #6c757d, #495057);*/
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        .head-photo-container img{max-height: 150px}

        .head-info {
            flex: 1;
            /*padding: 30px;*/
        }

        .head-bio {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .head-name {
            color: var(--primary-brown);
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .head-title {
            color: #6c757d;
            font-style: italic;
            font-size: 1rem;
            margin-bottom:15px;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .gallery-section .owl-nav {
    display: none !important;
}

        .gallery-title {
            text-align: center;
            color: var(--primary-brown);
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 50px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            margin-bottom: 20px;
            height: 200px;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Footer */
        .footer {
            background-color: var(--primary-brown);
            color: white;
            padding: 40px 0 20px;
            
            
        }

        .footer-title {
            color: var(--accent-gold);
            font-family: "Bebas Neue", sans-serif;
            font-size: 1.5rem;
            font-weight: bold;
            word-spacing: 1.5px;
            /*margin-bottom: 10px;*/
        }

        .footer-subtitle {
            font-family: "Bebas Neue", sans-serif;
            font-size: 1.2rem;
            /*margin-bottom: 20px;*/
        }

        .footer-contact {
            font-size: 0.9rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            margin-top: 20px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
        }

        /* Background Icons */
        .bg-icons {
            position: absolute;
            font-size: 4rem;
            opacity: 0.1;
            color: white;
        }

        .bg-icon-1 { top: 20px; left: 10%; }
        .bg-icon-2 { top: 50%; right: 15%; }
        .bg-icon-3 { bottom: 20px; left: 20%; }
        .bg-icon-4 { top: 30%; right: 5%; }
        
        /* About Us Page Specific Styles - Add these to your existing style.css */

        /* Active nav link styling */
        .navbar-nav .nav-link.active {
            background-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-2px);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(74, 44, 42, 0.8), rgba(74, 44, 42, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><path d="M0,100 Q300,150 600,100 T1200,100 L1200,300 L0,300 Z" fill="%23f4e4a6" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 100px 0 60px;
            color: white;
            text-align: center;
            margin-top: -55px;
        }
        
        .page-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            font-family: "Bebas Neue", sans-serif;
            letter-spacing: 2px;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* About Content Sections */
        .about-content {
            padding: 80px 0;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
        }
        
        .mission-vision-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .mission-vision-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .mission-vision-card:hover {
            transform: translateY(-5px);
        }
        
        .card-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .card-title {
            color: var(--primary-brown);
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            font-family: "Bebas Neue", sans-serif;
        }
        
        .objectives-section {
            padding: 80px 0;
        }
        
        .objectives-list {
            list-style: none;
            padding: 0;
        }
        
        .objectives-list li {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid var(--accent-gold);
            transition: transform 0.3s ease;
        }
        
        .objectives-list li:hover {
            transform: translateX(10px);
        }
        
        .objectives-list li i {
            color: var(--accent-gold);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .history-timeline {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .timeline-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .timeline-year {
            background: var(--accent-gold);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
            font-family: "Bebas Neue", sans-serif;
        }
        
        /* Membership Page Specific Styles - Add these to your existing style.css */

        /* Membership Content */
        .membership-content {
            padding: 80px 0;
        }
        
        .membership-info {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        
        .membership-form {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-brown);
            margin-bottom: 8px;
        }
        
        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .payment-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 15px;
            border: 2px solid var(--accent-gold);
            margin-bottom: 30px;
        }
        
        .payment-title {
            color: var(--primary-brown);
            font-weight: bold;
            font-size: 1.3rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .qr-code-section {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .qr-placeholder {
            width: 200px;
            height: 200px;
            background: white;
            border: 3px solid var(--accent-gold);
            border-radius: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--primary-brown);
            margin-bottom: 15px;
        }
        
        .account-details {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-gold);
        }
        
        .account-details h5 {
            color: var(--primary-brown);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .account-details p {
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .members-list-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .member-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid var(--accent-gold);
            transition: transform 0.3s ease;
        }
        
        .member-card:hover {
            transform: translateY(-3px);
        }
        
        .member-name {
            color: var(--primary-brown);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .member-id {
            color: #666;
            font-size: 0.9rem;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--primary-brown);
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #b8941f;
            border-color: #b8941f;
            transform: translateY(-2px);
        }
        
        /* Conference Page Specific Styles - Add these to your existing style.css */

/* Conference Section */
.conference-section {
    padding: 80px 0;
}

/* Conference Cards */
.conference-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.conference-card:hover {
    transform: translateY(-5px);
}

.conference-card-header {
    background: linear-gradient(135deg, var(--primary-brown), #5a3533);
    color: white;
    padding: 30px;
    position: relative;
}

.conference-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.conference-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Bebas Neue", sans-serif;
}

.conference-theme {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.conference-date {
    background: var(--accent-gold);
    color: var(--primary-brown);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    font-size: 0.9rem;
}

.conference-card-body {
    padding: 30px;
}

.conference-details {
    margin-bottom: 25px;
}

.download-text{
    text-decoration: none;
    color: #4a2c2a;
}
.download-btn:hover{
.download-text{
    color:#ffffff;
}
}


.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.detail-item i {
    color: var(--accent-gold);
    width: 20px;
    margin-right: 10px;
}

.btn-register {
    background: var(--accent-gold);
    color: var(--primary-brown);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-brown);
    color: white;
}

/* Past Conferences */
.past-conferences {
    background-color: #f8f9fa;
}

.past-conference-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent-gold);
}

.past-conference-year {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.past-conference-title {
    color: var(--primary-brown);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Call for Papers */
.call-for-papers {
    background: linear-gradient(135deg, var(--primary-brown), #5a3533);
    color: white;
    padding: 60px 0;
}

.call-for-papers .section-title {
    color: var(--accent-gold);
}

.call-for-papers .section-title::after {
    background-color: white;
}

.deadline-box {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.deadline-date {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* Resources Section */
.resources-section {
    background-color: #f8f9fa;
}

.resource-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.resource-title {
    color: var(--primary-brown);
    font-weight: bold;
    margin-bottom: 15px;
}


/* Additional responsive styles for Conference page */
@media (max-width: 768px) {
    .conference-section {
        padding: 60px 0;
    }
    .mission-vission-main{
        flex-direction:column;
    }
    
    .conference-card-header, .conference-card-body {
        padding: 20px;
    }
    
    .deadline-box {
        padding: 20px;
    }
    
    .deadline-date {
        font-size: 1.5rem;
    }
    .about-img{
        width:100%;
    }
    .about-section-main{
        gap:30px
    }
    .container-height{
    height:100%;
}

.text-content-for-dynamic-size{
    font-size:18px;
}
.header-top{
    padding:15px 0;
}
.gallery-section .owl-dots {
    display: none !important;
}
        .carousel-control-prev,
        .carousel-control-next {
            width: auto;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
.carousel-slide{
    height:100%;
    min-height:100%;
}
.banner-img-1 {
    background: url("/frontend/img/home-banner-mobile-1.jpeg") no-repeat center center;
    background-size: cover;
    height:100%;
}

.banner-img-2 {
    background: url("/frontend/img/home-banner-mobile-2.jpeg") no-repeat center center;
    background-size: cover;
     height:100%;
}

.banner-img-3 {
    background: url("/frontend/img/home-banner-mobile-3.jpeg") no-repeat center center;
    background-size: cover;
     height:100%;
}
.carousel-item{
    height:300px;    
}
.hero-section{
    min-height:300px;
}
.carousel-text-main{
    height:100%;
}

.hero-content{
        background: #ffffff94;
    padding: 10px;
    border-radius: 10px;
    margin-top:120px;
}

}

@media (max-width: 576px) {
    .conference-card-header, .conference-card-body {
        padding: 15px;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .resource-icon {
        font-size: 2.5rem;
    }
}

/* Awards Page Specific Styles - Add these to your existing style.css */

/* Awards Section */
.awards-section {
    padding: 80px 0;
}

/* Awards Cards */
.award-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.award-title {
    color: var(--primary-brown);
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: "Bebas Neue", sans-serif;
}

.award-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.award-criteria {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
}

/* Recent Winners */
.winners-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.winner-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent-gold);
}

.winner-year {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.winner-name {
    color: var(--primary-brown);
    font-weight: bold;
    margin-bottom: 5px;
}

.winner-award {
    color: #666;
    font-size: 0.9rem;
}

/* Nomination Section */
.nomination-section {
    background: linear-gradient(135deg, var(--primary-brown), #5a3533);
    color: white;
    padding: 60px 0;
}

.nomination-section .section-title {
    color: var(--accent-gold);
}

.nomination-section .section-title::after {
    background-color: white;
}

.nomination-box {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.btn-nominate {
    background: var(--accent-gold);
    color: var(--primary-brown);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-nominate:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Additional responsive styles for Awards page */
@media (max-width: 768px) {
    .awards-section {
        padding: 60px 0;
    }
    
    .award-card {
        padding: 20px;
    }
    
    .nomination-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .award-card {
        padding: 15px;
    }
    
    .award-icon {
        font-size: 2.5rem;
    }
    
    .award-title {
        font-size: 1.2rem;
    }
}
        
        /* Additional responsive styles for Membership page */
        @media (max-width: 768px) {
            .membership-content {
                padding: 60px 0;
            }
            
            .membership-form, .membership-info {
                padding: 25px;
            }
        
            .members-grid {
                grid-template-columns: 1fr;
            }
        
            .qr-placeholder {
                width: 180px;
                height: 180px;
            }
            .logo{
                width:35px;
                height:35px;
            }
            .logo img{
                width:25px;
                height:25px;
            }
        }
        
        @media (max-width: 576px) {
            .qr-placeholder {
                width: 150px;
                height: 150px;
            }
            
            .payment-section {
                padding: 20px;
            }
        }
        
        /* Additional responsive styles for About page */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .page-header {
                margin-top: 0px;
                padding: 80px 0 40px;
            }
            
            .about-content {
                padding: 60px 0;
            }
            
            .mission-vision-section, .objectives-section, .history-timeline {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {   
                font-size: 2rem;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .header-title {
                font-size: 1.4rem;
            }
            
            .navbar-custom {
                width: 100%;
                margin-top: 0px;
                border-radius: 0;
            }
            
            .navbar-custom{padding: 5px 0}
            .navbar-section{padding: 0}
            .navbar-section .navbar-toggler{display: block;margin-left: auto;}

            .navbar-nav .nav-link {
                padding: 10px 15px !important;
                text-align: center;
            }
            
            .hero-content {
                text-align: center !important;
                font-weight:;
            }
            
            .hero-section {
                margin-top: 0px;
            }
            
            .head-card-content {
                flex-direction: column;
                text-align: center;
            }
            
            .head-photo-container {
                flex: none;
                width: 150px;
                height: 150px;
                margin: 0 auto 20px;
            }
            
            .head-info {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .navbar-custom {
                width: 100%;
                margin-top: -5px;
            }
            
            .header-title {
                font-size: 1.2rem;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .org-heads-title, .gallery-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }
    /* News Page Specific Styles - Add these to your existing style.css */

/* News Section */
.news-section {
    padding: 80px 0;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent-gold);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-body {
    padding: 25px;
}

.news-date {
    background: var(--accent-gold);
    color: var(--primary-brown);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.news-title {
    color: var(--primary-brown);
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: "Bebas Neue", sans-serif;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-category {
    background: #f8f9fa;
    color: var(--primary-brown);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.btn-read-more {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.btn-read-more:hover {
    background: var(--accent-gold);
    color: var(--primary-brown);
}

/* Latest News Highlight */
.latest-news {
    background: linear-gradient(135deg, var(--primary-brown), #5a3533);
    color: white;
    padding: 60px 0;
}

.latest-news .section-title {
    color: var(--accent-gold);
}

.latest-news .section-title::after {
    background-color: white;
}

.latest-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.latest-title {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Archive Section */
.archive-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.archive-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.archive-content {
    flex: 1;
}

.archive-date {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 0.9rem;
}

.archive-title {
    color: var(--primary-brown);
    font-weight: bold;
    margin-bottom: 5px;
}

.archive-summary {
    color: #666;
    font-size: 0.9rem;
}

/* Additional responsive styles for News page */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    
    .archive-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .archive-item .btn {
        margin-top: 10px;
    }
    
    .latest-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .news-card-body {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .archive-item {
        padding: 15px;
    }
}    
/* Contact Page Specific Styles - Add these to your existing style.css */

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.contact-title {
    color: var(--primary-brown);
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: "Bebas Neue", sans-serif;
}

.contact-info {
    color: #666;
    line-height: 1.8;
}

.contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: var(--primary-brown);
}

/* Quick Contact Form */
.quick-contact {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-send {
    background: var(--accent-gold);
    color: var(--primary-brown);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Additional responsive styles for Contact page */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card, .contact-form {
        padding: 25px;
    }
    
    .quick-contact {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-title {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (min-width: 1500px) {
  .about-content {
    min-height: 65vh;
  }
}

/* For screens up to 1500px */
@media (max-width: 1500px) {
  .about-content {
    min-height: 65vh;
  }
}

/* For screens up to 1100px */
@media (max-width: 1100px) {
  .about-content {
    min-height: 75vh;
  }
}

/* For screens up to 768px */
@media (max-width: 768px) {
  .about-content {
    min-height: 80vh;
  }
}


        