
:root {
            --primary: #f4bf35;
            --secondary: #fb2c26;
            --accent: #e10016;
            --dark: #1e293b;
            --light: #f8fafc;
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        
            color: var(--dark); }
        
      
        

            body * {
  font-family: 'Poppins', 'Hind Siliguri', sans-serif !important;
}

/* ✅ Lock logo + images */
.navbar-brand img,
.contact-icon img,
.carousel-item img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

/* ✅ Hide ugly Google branding & frame */
.goog-logo-link, .goog-te-gadget span {
  display: none !important;
}
.goog-te-gadget {
  font-size: 0 !important;
}

/* ✅ Style translate dropdown to match navbar */
#google_translate_element select,
#google_translate_element_mobile select {
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
#google_translate_element select:hover,
#google_translate_element_mobile select:hover {
  background: var(--secondary);
  color: #fff;
}
            
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 5px 0;
    transition: all 0.3s ease;
}
/* News Ticker */
        .news-ticker {
            background: var(--gradient);
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
        }
        
        .news-content {
            display: inline-block;
            padding-left: 100%;
            white-space: nowrap;
            animation: ticker 25s linear infinite;
        }
   /* Hero Slider */
        .carousel-item {
            height: 550px;
            position: relative;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
            z-index: 1;
        }
        
        .carousel-item img {
            object-fit: cover;
            height: 100%;
        }
        
        .carousel-caption {
            z-index: 2;
            bottom: 30%;
            text-align: left;
            max-width: 600px;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s;
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
            background: var(--primary);
        }
        
        /* Section Styling */
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Cards */
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .event-card img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .event-card:hover img {
            transform: scale(1.1);
        }
        
        /* Contact Section */
      
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        /* Footer */
        .footer-links h5 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 3px;
            background: var(--secondary);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 65px;
        }
        
       .social-icons a {
    width: 30px;
    height: 30px;
    background: #d33c45;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}
      .social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: #000;
}
.button {
    background-image: linear-gradient(red, rgb(255, 2, 2));
    border-radius: 10px;
    padding: 0px 10px;
}
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate {
            animation: fadeIn 1s ease-out;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .carousel-item {
                height: 400px;
            }
            
            .carousel-caption {
                bottom: 20%;
            }
            
            .news-content {
                animation: ticker 15s linear infinite;
            }
            
            .language-selector {
                top: 70px;
                right: 10px;
            }
            
            .lang-btn {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }
        }

.contact-icon img {width: 60px !important;   /* apne design ke hisaab se adjust karo */
  height: 60px !important;  /* fixed size rakho */
  object-fit: contain;      /* image crop na ho */
  display: block;
  margin: 0 auto;
}

.list-unstyled a.hindi {
    color: #fff;
}
.list-unstyled a.hindi:hover {
    color: #d33c45;
}
.hindi {
    text-decoration: none;
}
.footer-bg {
            background:#363737;
            color: white;
            padding: 60px 0 50px;
}
.footer-bg-2 {
    background:#000000;
            color: white;
            padding: 20px 0 0;

}