/* @tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;
  }
}

body {
  color: rgb(var(--foreground-rgb));
  background: linear-gradient(
      to bottom,
      transparent,
      rgb(var(--background-end-rgb))
    )
    rgb(var(--background-start-rgb));
} */



@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

.Logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0d6efd;
}

/* Language Dropdown */
.LangBtn {
  font-size: 0.9rem;
}

.LangMenu button {
  font-size: 0.85rem;
}

/* Search */
.SearchForm {
  max-width: 250px;
}

.SearchInput {
  border-radius: 4px;
}

.SearchBtn {
  border-radius: 4px;
}

/* Social Icons */
.SocialIcons .IconBtn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SocialIcons .IconBtn:hover {
  transform: scale(1.15);
  /* zoom-out thoda bada ho jayega */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* halka sa glow */
}

.SocialIcons .facebook {
  background: #1877f2;
}

.SocialIcons .twitter {
  background: #1da1f2;
}

.SocialIcons .youtube {
  background: #ff0000;
}

.SocialIcons .instagram {
  background: #e1306c;
}




/* ===== General ===== */
.Navbar {
  font-family: "Segoe UI", sans-serif;
  background-color: #0a1832;
  /* Dark navy blue */
}

.Navbar a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.Navbar a:hover {
  color: #ff4c4c !important;
  /* Nice red hover */
}

/* ===== Top Bar ===== */
.TopBar {
  background-color: #0f2247;
  font-size: 0.85rem;
  color: #ddd;
}

/* ===== Logo ===== */
.Navbar .navbar-brand {
  font-weight: bold;
  letter-spacing: 1px;
}

/* ===== Menu Items ===== */
.Navbar ul li a {
  padding: 6px 10px;
  border-radius: 6px;
}

.Navbar ul li a:hover,
.Navbar ul li a.active {
  background: #162c55;
  color: #fff !important;
}

/* ===== Buttons (cute style) ===== */
.Navbar .btn {
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.Navbar .mannu-language:hover {
  color: #ff4c4c !important;
}

.Navbar .btn:active {
  transform: scale(0.95);
}



/* ===== Sidebar (Mobile) ===== */
.Sidebar {
  width: 260px;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
}

.Sidebar.d-block {
  transform: translateX(0%);
}

.Sidebar ul li a {
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.Sidebar ul li a:hover {
  padding-left: 10px;
  background: #162c55;
}

/* ===== Mobile Buttons Inside Sidebar ===== */
.Sidebar .btn {
  border-radius: 20px;
  font-size: 0.9rem;
  width: 48%;
}


/* Search Button */
.SearchBtn {
  background-color: #162c55;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.SearchBtn:hover {
  background-color: #ff4c4c;
  transform: scale(1.1);
}

/* Search Box */
.SearchBox {
  background: #0f2247;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* slider.css */

/* Main slider */
.main-slider img {
  width: 100%;
  height: 40vh;
  /* viewport height ke hisaab se responsive */
  max-height: 500px;
  /* zyada bada image overflow na kare */
  object-fit: cover;
}

/* Side sliders */
.side-slider img {
  width: 100%;
  height: 20vh;
  max-height: 250px;
  object-fit: cover;
}

/* Large screens (1200px se upar) */
@media (min-width: 1200px) {
  .main-slider img {
    height: 56vh !important;
  }

  .side-slider img {
    height: 25.5vh !important;
  }
}

/* Medium screens (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .main-slider img {
    height: 45vh !important;
  }

  .side-slider img {
    height: 20.4vh !important;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .main-slider img {
    height: 35vh !important;
  }

  .side-slider img {
    height: 15.4vh !important;
  }

  .tab-lable-heading {
    font-size: 12px;
  }

  .tab-img-heading {
    width: 16px !important;
  }
}

/* Mobile (<768px) */
@media (max-width: 767px) {
  .main-slider img {
    height: 25vh !important;
  }

  .side-slider img {
    height: 12vh !important;
  }
}





/* Chrome, Safari, Edge */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.hide-scrollbar {
  scrollbar-width: none;
}

/* IE/Edge */
.hide-scrollbar {
  -ms-overflow-style: none;
}














/* NotificationBar-start */
.notification-bar {
  display: flex;
  align-items: center;
  background: #ffcc00;
  /* Yellow bar */
  height: 40px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.notification-bar .label {
  background: #1976d2;
  /* Blue box */
  color: white;
  font-weight: bold;
  padding: 0 5px;
  line-height: 40px;
  white-space: nowrap;
}

.news-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

.news-item {
  margin-right: 50px;
  font-weight: bold;
  color: #000;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* NotificationBar-end */




























.footer-container {
  background: linear-gradient(145deg, #34a853, #2e7d32);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transform-style: preserve-3d;
  z-index: 1000;
}

.footer-icon {
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-icon i {
  font-size: 22px;
  display: block;
  transition: transform 0.3s ease;
}

.footer-icon:hover i {
  transform: rotateY(360deg);
  color: #fff9c4;
}

.footer-icon span {
  font-size: 11px;
  display: block;
  margin-top: 3px;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown-content {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.3s ease forwards;
  min-width: 130px;
}

.dropdown-content a {
  display: block;
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  transition: 0.2s;
}

.dropdown-content a:hover {
  color: #1b5e20;
  transform: translateX(4px);
}

.animate-slide {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

a {
  text-decoration: none !important;
}