/* ======================== */
/* 🌟 Main Navigation Style */
/* ======================== */

.main-wrapper {
  /* margin-bottom: -18px !important; */
}

.mainmenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.has-dropdown {
  position: relative;
}

/* 📌 Parent Menu */
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* 🌟 Main Dropdown */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.1); /* 🔥 Transparent White */
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  min-width: 200px;
  z-index: 1000;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

/* 🛠 Courses pe hover karne pe submenu dikhe */
.has-dropdown:hover > .submenu {
  display: block;
  background: rgba(255, 255, 255, 0.9); /* 🔥 White Visible on Hover */
  background-color: rgb(74, 149, 215);
}

/* =============================== */
/* 🎯 Batches Dropdown (Right Side) */
/* =============================== */
.right-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 150px;
  background: rgba(255, 255, 255, 0.1); /* 🔥 Transparent White */
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

/* 🛠 Right-side submenu fix */
.has-dropdown:hover > .right-submenu {
  display: block;
  background: rgba(255, 255, 255, 0.9); /* 🔥 White Visible on Hover */
}

/* ========================= */
/* 💡 General Dropdown Style */
/* ========================= */
/* .submenu li {
  padding: 5px 15px;
} */

.submenu li a {
  display: block;
  /* padding: 10px 15px; */
  font-size: 14px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

/* 🟢 Background Color on Hover */

.submenu li a:hover {
  background: linear-gradient(135deg, grey, rgb(105, 79, 79)); /* Your Colors */
  color: white;
  transform: scale(1.05);
  border-radius: 12px; /* Smooth Corners */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* 🔽 Underline Effect Like in Screenshot */
.submenu li a::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background: white;
  transition: width 0.3s ease-in-out;
}

.submenu li a:hover::after {
  width: 80%;
}

/* ===================== */
/* 📌 Mobile Responsive  */
/* ===================== */
@media (max-width: 768px) {
  .submenu {
    position: static;
    width: 60%;
    background: rgba(255, 255, 255, 0.1); /* 🔥 Transparent White */
    backdrop-filter: blur(6px);
    display: none;
    transition: none;
    font-size: 10px;
  }

  .has-dropdown:hover .submenu {
    display: block;
    background: rgba(255, 255, 255, 0.9); /* 🔥 White on Hover */
  }

  .right-submenu {
    left: 0;
    top: 100%;
  }
}

/* <!--=====================================--> */
/* <!--=        Navigation Area Start       	=--> */
/* <!--=====================================--> */

.navbar {
  background: linear-gradient(to right, #0072ff, #00bfff) !important;
  padding: 6px 0 !important;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  /* overflow-x: auto; */
  white-space: nowrap;
}

/* .navbar-collapse {
    flex-grow: 1;
    justify-content: center;
    overflow-x: hidden; 
} */

.nav-buttons {
  position: absolute;
  right: 145px;
  top: 6px;
  display: flex;
  gap: 10px;
  /* margin-right: 85px; */
}

.navbar-brand .logo-img {
  /* width: 200px !important; Width ko thoda increase kiya */
  /* height: 90px !important; */
  max-width: none !important;
  display: block !important;
  /* margin-top: 15px !important; */
  /* margin-bottom: 0px !important; */
  /* margin-right: 45px !important; */
  margin-left: -70px !important;
  /* padding-top: 10px !important;   
    padding-bottom: 8px !important;  */
}

.nav-item a {
  background-color: #f8e3a1 !important;
  padding: 3px 24px !important;
  font-size: 14px !important;
  border-radius: 6px !important;
  color: black !important;
  font-weight: bold !important;
  text-decoration: none !important;
  margin-top: 24px !important;
  border: 1px solid #d1a456 !important;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) !important;
  white-space: nowrap;
}

/* .nav-item {
  margin: 0 1px !important;
} */

.btn-custom {
  background-color: red !important;
  color: white !important;
  border-radius: 20px !important;
  font-weight: bold !important;
  padding: 3px 12px !important;
  font-size: 12px !important;
  border: none !important;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) !important;
  text-transform: uppercase !important;
}

.btn-custom:hover {
  background-color: darkred !important;
}

.logo-img {
  /* height: 200px; */
  width: 200px;
}

.btn-custom {
  margin: 0 5px;
  background-color: red;
  color: white;
  border-radius: 20px;
  padding: 5px 15px;
}

.navbar-toggler {
  z-index: 1050;
  position: relative;
}

/* Phone number container */
.phone-numbers {
  display: flex;
  align-items: center;
  /* padding: 5px 10px; */
  white-space: nowrap;
  position: absolute;
  right: 535px; /* Move closer to Admission button */
  top: 7px; /* Adjust height */
}

/* Phone icon style */
.phone-icon {
  width: 25px;
  height: 25px;
  background-color: yellow;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  font-size: 13px;
}

/* Phone number text */
.phone-text {
  font-size: 14px;
  color: black;
  color: white;
  font-weight: bold;
}

                            
.btn-store-new {
background-color: yellow !important;
color: red !important;
border-radius: 8px !important;
padding: 10px 20px;
font-weight: bold !important;
transition: all 0.3s ease !important;
font-size: 12px !important;
}

.btn-store i {
margin-right: 8px !important;
}

.btn-store-new:hover {
background-color: #c2364a;
transform: scale(1.05);
}


/* Admission, Contact Us, Login buttons */
.nav-buttons {
  display: flex;
  gap: 10px;
  margin-left: auto; /* Push buttons to right */
}

.btn-custom {
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Navbar links */
.navbar-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Popup Mobile Menu */
.popup-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(to right, white 75%, rgba(0, 0, 0, 0.5) 75%);
  z-index: 1049;
  padding: 30px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

.popup-mobile-menu.active {
  display: flex;
}

/* Mobile Logo */
.mobile-logo {
  height: 52px;
  margin-bottom: 6px;
  display: inline-block;
  border: 2px solid #e3e30c;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.8s;
}


.btn-custom {
background-color: #1ab69d;
color: white;
border-radius: 8px;
padding: 10px 20px;
font-weight: bold;
transition: all 0.3s ease;
}

.btn-custom i {
margin-right: 8px;
}

.btn-custom:hover {
background-color: #128a74;
transform: scale(1.05);
}

.btn-store {
background-color: yellow;
color: red;
border-radius: 8px;
/* padding: 10px 20px; */
font-weight: bold;
transition: all 0.3s ease;
font-size: 12px;
}

.btn-store i {
margin-right: 8px;
}

.btn-store:hover {
background-color: #c2364a;
transform: scale(1.05);
}


/* Close Button */
.close-mobile-menu {
  font-size: 1.8em;
  position: absolute;
  cursor: pointer;
  color: red;
  z-index: 1060;
  margin-right: 90px;
  margin-top: 25px;
  padding: 0px 7px !important;
  background-color: #e3e30c;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.close-mobile-menu:hover {
  display: block;
  opacity: 1;
  transform: translateY(0); /* Ensure it slides in from below */
}

/* Mobile Navbar Items */
.navbar-nav {
  flex-direction: column;
  gap: 7px;
  padding: 0;
}

.navbar-nav .nav-item {
  position: relative; /* Added relative position */
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  width: 65%;
}

.navbar-nav .nav-link {
  display: block;
  padding: 12px 20px;
  background-color: #f0c96c;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  width: 97%;
}

.navbar-nav .nav-item:hover .nav-link {
  background-color: #d9a94d;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* Navbar fixes */
.navbar-nav {
display: flex;
align-items: center;
justify-content: center;
}

/* Default nav link color */
.nav-link {
    color: #000; /* Default color */
    transition: color 0.3s ease-in-out;
}

/* Active dropdown parent text color (except "COURSES") */
.dropdown-submenu.open > a {
    color: yellow !important;
}

                            
 /* Default hidden dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white !important;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden;
}

/* Dropdown Items Styling */
.dropdown-menu .dropdown-item {
    /* padding: 10px 15px !important; */
    /* margin: 0 !important; */
    color: black !important;
    font-weight: 500 !important;
    background: transparent !important;
    border: none !important;
    width: 80%;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    margin-bottom: -3px;
    font-size: 12px;
}

/* Hover Effect */
.dropdown-menu .dropdown-item:hover {
    background: #f8e3a1 !important;
    color: #000 !important;
}

/* Show dropdown on hover */
.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Submenu Fix */
.dropdown-submenu {
    position: relative;
}

/* Default: All submenus open to the right */
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100% !important;
}


.dropdown-submenu:hover > .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* Ensure submenu opens when clicked */
.dropdown-menu.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
}




/* Media Query for Mobile View - Changes ONLY for Mobile */
@media (max-width: 992px) {
  /* Hides the desktop buttons (only mobile) */
  /* .nav-buttons{
        display: none;
    } */

  /* Adjustments to the mobile menu */
  .popup-mobile-menu .navbar-nav {
    flex-direction: column;
    justify-content: center;
    width: 100%; /* Full width for mobile */
    padding: 15px;
  }

  .popup-mobile-menu .nav-link {
    margin-bottom: -10px;
    padding: 10px;
    background-color: #f4c76c;
    border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  }

  .popup-mobile-menu .nav-link:hover {
    background-color: #e0b55a;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
  }

  /* Adjust dropdown for mobile view */
  .nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(0); /* Slide in from left */
  }

  /* Close button adjustments (for mobile) */
  .close-mobile-menu {
    font-size: 2.2em;
    top: 20px;
    right: 25px;
  }

  .nav-item {
    margin: -3px -23px !important;
  }

  .navbar-nav .nav-link {
    width: 115%;
  }

  @media (max-width: 992px) {
    .navbar-brand .logo-img {
      /* width: 100px !important; */
      /* height: 54px !important; */
      max-width: none !important;
      display: block !important;
      /* margin-top: 0px !important; */
      /* margin-bottom: 0px !important; */
      /* margin-right: 45px !important; */
      margin-left: 2px !important;
      /* padding-top: 4px !important; */
      /* padding-bottom: 8px !important; */
    }

    .nav-buttons {
      position: absolute;
      right: 20px;
      top: 10px;
      display: flex;
      gap: 10px;
      margin-right: 85px;
    }

    .btn-custom {
      background-color: red !important;
      color: white !important;
      border-radius: 20px !important;
      font-weight: bold !important;
      padding: 1.5px 13px !important;
      font-size: 11px !important;
      border: none !important;
      box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) !important;
      text-transform: uppercase !important;
      margin-top: 8px;
    }
  }

  @media (max-width: 768px) {
    /* Hide extra buttons in mobile view */
    .nav-buttons a:nth-child(2),  /* Contact Us button */
        .nav-buttons a:nth-child(3) {
      /* Login button */
      display: none !important;
    }

    /* Phone number container in mobile view */
    .phone-numbers {
      position: static; /* Remove absolute positioning */
      text-align: center; /* Center align */
      /* width: 100%; */
      /* justify-content: center;
        flex-direction: column; */
      /* margin-top: 35px; Space below Admission button */
      margin-right: 58px;
    }

    .phone-text {
      font-size: 10px;
      color: white;
      text-align: center;
    }

    .phone-icon {
      margin-bottom: 5px;
      width: 20px;
      height: 20px;
      background-color: yellow;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 3px;
      font-size: 11px;
    }
  }
}

/* <!--=====================================--> */
/* <!--=        Navigation Area End       	=--> */
/* <!--=====================================--> */

/* ===============================  */
/* 📌Featured Courses Area Start     */
/* ================================*/

body {
  background: linear-gradient(to right, #a8e6cf, #a8dff0);
}

/* Featured Title Styling */
.featured-title {
  color: yellow;
  /* background-color: #44445e; */
  background-color: #072f62;
  padding: 10px 50px;
  border-radius: 15px;
  display: inline-block;
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: -5px;
}

.featured-title:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.course-card {
  border: 2px solid blue;
  border-radius: 25px;
  background-color: white;
  /* height: 250px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  color: white !important;
}

/* Centering the card title */
.card-title {
  background-color: #0000ff;
  color: white;
  padding: 7px 14px !important;
  border-radius: 5px;
  font-weight: bold;
  align-self: center;
  transition: background-color 0.3s, transform 0.3s;
  /* font-weight: bold; */
  font-size: 1.8rem;
  line-height: 1.5;
}

/* Hover effect */
.course-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  /* border-color: #1ab69d; */
}

.card-title:hover {
  background-color: #1ab69d;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.learn-more {
  color: black;
  align-self: end;
  transition: color 0.3s;
  font-size: 16px;
}

.course-card:hover .learn-more {
  color: blue;
  text-decoration: underline;
}

.book-card {
  /* height: 270px; */
  max-width: 70%;
  margin: 0 auto;
  padding: 24px;
  border: 2px solid blue;
  border-radius: 25px;
  background-color: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-card img {
  width: 100%;
  /* height: auto; Automatically adjusts height */
  max-height: 170px;
  object-fit: cover; /* Maintains aspect ratio */
  border-radius: 10px;
}
/* 
.book-card {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
} */

.book-card p {
  font-size: 1rem;
  line-height: 1.4;
  padding: 5px;
  margin: 10px 0;
  max-width: 90%;
  text-align: justify;
  overflow-wrap: break-word;
  background-color: #f4c27f;
  margin-left: 30px;
  border-radius: 10px;
}


.book-images-carousel {
  display: flex;
  max-width: 30%;
  background-color: #dce4f1;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 8px solid rgb(221, 218, 218);
}

.swiper-slide img {
  height: 280px;
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
}

/* Dot Indicators Styling */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
}

.swiper-pagination-bullet {
  background: white !important; 
  width: 8px !important;
  height: 8px !important;
  opacity: 1 !important;
  /* margin: 0 auto !important; */
}

.swiper-pagination-bullet-active {
  background: black !important; /* Red Active Dot */
}


/* Mobile View ke liye */
@media (max-width: 768px) {
  .book-card {
    max-width: 90%;
    padding: 5px;
  }

  .book-card p {
    font-size: 0.9rem;
    padding: 8px;
    margin: 5px 0;
    margin-left: 15px;
  }

  .book-card h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .featured-title {
    font-size: 2rem; /* Smaller font size for mobile */
    padding: 10px 20px; /* Reduced padding */
    margin-top: -15px;
    border-radius: 50px; /* Smaller border radius */
  }

  .book-images-carousel {
    max-width: 100%; 
    padding: 5px;  
    border: 5px solid rgb(221, 218, 218); 
    margin-top: 90px !important;
  }

  .swiper-slide img {
    height: auto; /* 🔹 Auto height for better fit */
    max-height: 180px; /* 🔹 Mobile ke liye max height set kiya */
    width: 100%;
    border-radius: 5px;
  }

  .swiper-pagination {
    bottom: 5px; /* 🔹 Dots thoda upar shift kiye */
  }

  .swiper-pagination-bullet {
    width: 6px !important; /* 🔹 Smaller dots for mobile */
    height: 6px !important;
  }

}

/* ===============================  */
/* 📌Featured Courses Area End     */
/* ================================*/

body {
  background: linear-gradient(to right, #a8e6cf, #a8dff0);
}

/* Section Heading Style */
/* .section-heading {
  color: yellow !important;
  background-color: #0000ff !important;
  padding: 13px 70px !important;
  border-radius: 100px !important;
  display: inline-block !important;
  font-size: 4rem !important;
  font-family: "Times New Roman", Times, serif !important;
  font-weight: bold !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  margin-top: -100px !important;
}

.section-heading:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
} */

.section-heading {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.section-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .section-heading{
    font-size: 2.2rem;
    padding: 10px 30px;
    border-radius: 12px;
  }
}


/* Tab Container and Tab Styles */
.tab-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
.tab {
  position: relative;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 1.8rem;
  color: white;
  border-radius: 50px;
  background-color: #2c3e50;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: #1ab69d;
  color: #fff;
  cursor: pointer;
}

/* Tab Outline Style */
.tab-outline {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #17a2b8;
  border-radius: 50px;

}

.filter-text{
    color: white;
    font-size: 14px;

}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-heading{
    font-size: 2.2rem;
    padding: 10px 30px;
    border-radius: 12px;
  }
}

.tab-container {
  flex-wrap: wrap;
  flex-grow: 1;
  /* flex-direction: column; */
  align-items: center;
  text-align: center;
}
.tab {
  max-width: 220px;
  width: 70%;
}

p.text-center {
  /* max-width: 90%; Jyada space cover karega */
  text-align: justify; /* Text ko evenly spread karega */
  font-size: 1.5rem; /* Font thoda chhota ho jayega */
  line-height: 1.6; /* Reading ke liye better spacing */
}

.custom-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
  background-color: #2c3e50;
  border-radius: 10px;
  margin-top: 20px;
}

.video-slide {
  width: 100%;
  height: 200px;
  background-color: #d3b08a;
  color: black;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.carousel-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.carousel-indicators {
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 4px; /* Adjust spacing between dots */
}

.carousel-indicators [data-bs-target] {
  width: 6px !important;
  height: 5px !important;
  padding: 2px !important;
}

.carousel-indicators button {
  width: 8px; /* Small width for dots */
  height: 8px; /* Equal height for a perfect circle */
  border-radius: 50%; /* Makes them round */
  background-color: white; /* Visible white dots */
  border: none;
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.carousel-indicators .active {
  background-color: black; /* Active dot in black */
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  background-color: #f5c000;
}
p.text-center {
  max-width: 60%;
  margin: 0 auto;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

@media (max-width: 768px) {
  p.text-center {
    max-width: 85%;
  }

  .carousel-item img {
    height: 50vh !important;
  }
}

/* ===============================  */
/* 📌Sociology Optional Area Start     */
/* ================================*/

body {
  background-color: #cbe6f7;
}
.custom-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
  background-color: #2c3e50;
  border-radius: 10px;
  /* margin-top: 30px; */
}
.combined-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #cbe6f7;
  padding: 45px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 30px;
}
.purchase-box {
  background-color: #d19a57;
  padding: 35px;
  border-radius: 10px;
  color: black;
  font-weight: bold;
  margin-right: 38px;
  margin-right: 100px;
}

.purchase-box h4 {
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.purchase-box li {
  color: grey;
}

.content-section {
  width: 100%;
}
.content-section p {
  width: 100%;
  margin-right: 20px;
}


    /* Custom container for table */
    .batch-container {
        /* max-width: 1100px; Existing box ke barabar width */
        margin: auto; /* Center align */
        padding: 20px;
        background-color: #f8f9fa; /* Light grey background */
        border-radius: 8px;
    }

    /* Custom table design */
    .batch-table {
        font-size: 13px; /* Bada font */
        border-collapse: collapse;
        width: 100%;
        padding: 10px 20px !important;
        border: 1px solid black !important; /* Outer border */
    }

    /* Table header */
    .batch-table thead {
        background-color: #e9ecef;
        font-weight: bold;
        font-size: 15px;
    }

    /* Table hover effect */
  .batch-container .batch-table tbody tr:hover {
    background-color: red !important;
}

.batch-table tbody tr {
  position: relative; /* Ensure proper positioning */
  z-index: 1;
}

.batch-table tbody tr:hover {
  background-color: red !important; /* Force background change */
  color: white !important;
  cursor: pointer;
  z-index: 10; /* Bring hover row on top */
  transition: background-color 0.3s ease-in-out;
}


    /* Custom button design */
    .batch-btn {
    background-color: #2E1A47;
    color: white;
    border-radius: 5px;
    padding: 5px 6px;
    border: none;
    font-size: 10px;
    font-weight: bold;
}

    .batch-btn:hover {
        background-color: #4B2D72;
    }

    .text-heading{
        /* background-color: #dddada; */
    font-size: 13px;
    color: black;
    font-weight: bold;
    width: 50%;
    padding: 5px;
}

.batch-table th,
.batch-table td {
    text-align: center !important; /* Horizontally center */
    vertical-align: middle !important; /* Vertically center */
    border: 1px solid black !important; /* Inner border */
    }

    .batch-table thead th {
      border: 1px solid black;
  }

  /* Responsive Table Adjustments */
@media (max-width: 1024px) {
  .batch-table {
      font-size: 13px;
  }

  .batch-table th,
  .batch-table td {
      padding: 8px;
  }
}

@media (max-width: 750px) {
  .batch-table {
      display: block;
      width: 100%;
  }

  .batch-table thead {
      display: none; /* Hide table headers */
  }

  .batch-table tbody {
      display: block;
      width: 100%;
  }

  .batch-table tr {
      display: flex;
      flex-direction: column;
      background: white;
      border: 1px solid black;
      margin-bottom: 10px;
      padding: 10px;
  }

  .batch-table td {
      display: flex;
      justify-content: space-between;
      padding: 8px;
      font-size: 13px;
      border-bottom: 1px solid black;
  }

  .batch-table td:last-child {
      border-bottom: none;
  }

  /* ✅ Auto Labels for Mobile View */
  .batch-table td::before {
      content: attr(data-label);
      font-weight: bold;
      flex: 1;
      text-align: left;
  }

  /* ✅ Enroll Now Button Fix */
  .batch-btn {
      width: 100%;
      text-align: center;
      padding: 8px 10px;
      font-size: 14px;
      margin-top: 5px;
  }
}

/* Extra Small Screens (480px & below) */
@media (max-width: 480px) {
  .batch-table {
      font-size: 11px;
      min-width: 450px; /* Prevents text from overlapping */
  }

  .batch-table td {
      padding: 5px;
      font-size: 11px;
  }

  .batch-btn {
      font-size: 9px;
      padding: 4px;
  }
}

/* Super Small Screens (375px & below) */
@media (max-width: 375px) {
  .batch-table {
      font-size: 10px;
      min-width: 380px;
  }

  .batch-btn {
      font-size: 8px;
      padding: 3px;
  }
}
  


@media (max-width: 992px) {
  .combined-section {
    flex-direction: column;
    align-items: center;
    /* padding: 30px; */
    margin-left: 0; /* Mobile view me center align hoga */
  }

  .content-section {
    width: 100%;
    text-align: justify; /* Text evenly spread hoga */
    margin-bottom: 20px; /* Purchase box ke sath gap rahe */
  }

  .content-section p {
    width: 90%;
    font-size: 1rem; /* Font thoda chhota hoga */
    line-height: 1.6; /* Text readability ke liye */
  }

  .purchase-box {
    width: 90%;
    text-align: center;
    margin-right: 0; /* Center align hoga */
    padding: 15px;
  }

  .purchase-box ul {
    padding-left: 0;
    list-style: none;
  }
}



@media (max-width: 576px) {
  .custom-section-title {
    font-size: 1.8rem;
    width: 90%;
    padding: 13px;
    margin-top: -28px;
  }

  .combined-section {
    /* padding: 20px; */
  }

  .content-section p {
    font-size: 1.2rem;
    width: 95%;
  }

  .purchase-box {
    width: 95%;
    padding: 10px;
  }
}

/* ===============================  */
/* 📌Sociology Optional Area End     */
/* ================================*/

/* ===============================  */
/*        QUIZ Area Start     */
/* ================================*/

.quiz-date {
  background-color: #95fcb19e !important;
  border-radius: 5px;
  color: rgba(45, 28, 112, 0.804) !important;
  font-size: 1.1rem !important;
  padding: 0.3rem !important;
  width: 100px;
  text-align: center; /* Text center align */
  margin: 0 auto; /* Box ko center align */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: none;
}

.quiz-heading {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto;
  margin-bottom: 35px; 
}

.quiz-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.quiz-heading{
  font-size: 2.2rem;
  padding: 13px 40px;
  border-radius: 12px;
}


/* Mobile ke liye aur adjust */
@media (max-width: 768px) {
  .quiz-container {
    max-width: 30%; /* Mobile par thoda aur chhota */
    padding: 85px !important;
  }

  .quiz-heading{
    font-size: 2.2rem;
    padding: 13px 40px;
    border-radius: 12px;
  }
}

/* ===============================  */
/*        QUIZ Area End     */
/* ================================*/

/* ===============================  */
/*   About Exam Syllabus  Area Start     */
/* ================================*/

.syllabus-heading {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto;
  margin-bottom: 35px; 
}

.syllabus-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ===============================  */
/*   About Exam Syllabus  Area End     */
/* ================================*/


/* ===============================  */
/*        YOJANA Area Start     */
/* ================================*/

.yojana-heading {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto;
  margin-bottom: 35px; 
}

.yojana-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ===============================  */
/*        YOJANA Area ENd     */
/* ================================*/

/* ===============================  */
/*        kurukshetra Area Start     */
/* ================================*/

.kurukshetra-heading {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto;
  margin-bottom: 35px; 
}

.kurukshetra-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ===============================  */
/*        kurukshetra Area End     */
/* ================================*/

/* ===============================  */
/*        short-notes Area Start     */
/* ================================*/

.short-notes-heading {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto;
  margin-bottom: 35px; 
}

.short-notes-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ===============================  */
/*        short-notes Area End     */
/* ================================*/

/* ===============================  */
/*     FREE MATERIAL Area Start     */
/* ================================*/

.free-material-page .section-heading {
  color: white !important;
  font-size: 30px !important;
  border-radius: 15px !important;
}

.free-material-page .btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 245px;
  height: 60px;
  font-weight: bold;
  font-size: 20px !important;
  color: yellow;
  background: linear-gradient(to right, #0099cc, #003366);
  border: 3px solid rgb(148, 207, 65);
  border-radius: 50px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  margin: 6px auto;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  padding: 10px 25px;
}

.section-heading-material{
color: yellow;
    background-color: #072f62;
    padding: 12px 60px;
    border-radius: 15px;
    display: block;
    font-size: 3rem;
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 18px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading-material:hover{
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  
  }

.free-material-page .btn-custom::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: -100%;
  transition: all 0.4s ease-in-out;
}
.free-material-page .btn-custom:hover::before {
  left: 100%;
}
.free-material-page .btn-custom:hover {
  transform: scale(1.1);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.5);
  border: 3px solid #ffffff;
}

@media (max-width: 768px) {
  .section-heading-material {
      font-size: 2rem;
      padding: 10px 20px;
      border-radius: 12px;
  }
  .test-series-page .btn-custom {
    max-width: 180px;
    height: 45px;
    font-size: 14px !important;
  }
  .isotop-button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .test-series-page .section-heading {
    font-size: 20px !important;
  }
  .test-series-page .btn-custom {
    max-width: 180px;
    height: 45px;
    font-size: 14px !important;
  }
  .isotop-button {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .test-series-page .section-heading {
    font-size: 18px !important;
  }
  .test-series-page .btn-custom {
    max-width: 150px;
    height: 40px;
    font-size: 12px !important;
  }
  .isotop-button {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -35px;
  }
}

/* ===============================  */
/*     FREE MATERIAL Area End     */
/* ================================*/

/* ===============================  */
/*     Contact Area Start     */
/* ================================*/


.contact-header {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
  margin-bottom: 60px;
}

.contact-header:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.enquiry-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}
.submit-btn {
  background-color: #ff5722;
  border: none;
  padding: 10px;
  color: white;
  width: 100%;
  border-radius: 5px;
}

.contact-details h4 {
  font-size: 20px !important;
  font-weight: bold;
}

.contact-details i {
  color: #ff5722;
  margin-right: 8px;
}

/* Responsive header width */
@media (max-width: 768px) {
  .contact-header{
    font-size: 2.2rem;
    padding: 12px 40px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .contact-header{
    font-size: 2.2rem;
    padding: 12px 40px;
    border-radius: 12px;
  }
  
}

/* Responsive Form Alignment */
@media (max-width: 768px) {
  .row .col-md-6 {
    width: 100%;
  }
}

/* Adjust margin for smaller screens */
@media (max-width: 480px) {
  .form-control {
    margin-bottom: 12px; /* More space for better readability */
    margin-top: 30px;
  }
}

/* ===============================  */
/*     Contact Us Area End     */
/* ================================*/

/* ===============================  */
/*     About Us Area Start     */
/* ================================*/

body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}
/* .about-header {
  background: linear-gradient(to right, #0052d4, #4364f7);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 5px;
} */

.about-header {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.about-header:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.profile-img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid white;
}
.team-section {
  text-align: center;
  margin: 20px 0;
}
.team-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.team-box div {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  overflow: hidden;
}
.team-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-text {
  background: #0052d4;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 768px) {
  .about-header{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

/* ===============================  */
/*     About Us Area End     */
/* ================================*/

/* ===============================  */
/*    Testimonials Area STart     */
/* ================================*/

.fw-test-bold {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.fw-test-bold:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 20px;
  border: 2px solid #dbd7a7;
  height: 210px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}
.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial-container {
  /* background: #d6e4f0; */
  padding: 40px;
}

@media (max-width: 480px) {
  .fw-test-bold {
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .fw-test-bold {
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
  .testimonial-card {
    height: auto;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  /* .testimonials-section {
    width: 80%;
    font-size: 18px;
  } */
  .testimonial-card {
    padding: 10px;
  }
}
/* ===============================  */
/*    Testimonials Area End     */
/* ================================*/

/* ===============================  */
/*    Blog Area Start     */
/* ================================*/

/* General Page Styling */
body {
  background-color: #22d7d7;
}

/* .blog-header {
  background: blue;
  color: white;
  padding: 17px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border-radius: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; 
  max-width: 300px; 
  margin: 40px auto 60px auto;
  height: 60px;
  transition: all 0.4s ease-in-out;
}


.blog-header:hover {
  background: linear-gradient(to right, #007bff, #0056b3);
  transform: scale(1.05);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
} */

.blog-header {
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
  margin-bottom: 30px;
}

.blog-header:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.category-title {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0;
}

/* Blog Card */
.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 20px; /* Add spacing between blog cards */
  text-align: center; /* Center text */
}

.blog-card:hover {
  transform: scale(1.05);
}

/* Blog Images */
.blog-card img {
  width: 100%; /* Full width for responsiveness */
  border-radius: 8px;
  transition: transform 0.5s ease-in-out;
  object-fit: cover; /* Maintain aspect ratio */
}

.blog-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

/* Blog Text */
.blog-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.blog-card:hover .blog-text {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
    .blog-header{
      font-size: 2.2rem;
      padding: 12px 40px;
      border-radius: 12px;
    }
  
  .blog-text {
    font-size: 16px;
  }
  .col-md-4 {
    flex: 0 0 50%; /* 2 columns on tablets */
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .blog-header{
    font-size: 2.2rem;
    padding: 12px 40px;
    border-radius: 12px;
  }

  .blog-text {
    font-size: 14px;
  }
  .col-md-4 {
    flex: 0 0 100%; /* Full width on mobile */
    max-width: 100%;
  }
}

/* Light Animation for Mobile */
@media (max-width: 768px) {
  .blog-card {
    transition: transform 0.2s ease-in-out;
  }
  .blog-card img {
    transition: transform 0.2s ease-in-out;
  }
  .blog-card:active {
    transform: scale(1.02); /* Small effect on tap */
  }
}
/* ===============================  */
/*    Blog Area End     */
/* ================================*/

body {
  background: linear-gradient(to right, #c7f0e8, #a2c3f4);
}
.book-section {
  background-color: white;
  border: 3px solid blue;
  border-radius: 10px;
  padding: 30px;
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  gap: 70px;
}
.book-content {
  max-width: 50%;
  margin: 25px;
}

.book-title {
  color: #0056b3;
  font-weight: bold;
  font-size: 16px;
}
.book-text {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  width: 120%;
}
.buy-now-btn {
  background-color: #ee4a62;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  margin-bottom: 20px;
}

.book-images {
  display: flex;
  gap: 15px;
  max-width: 35%;
  background-color: #dce4f1;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px; /* Smooth edges */
  transition: all 0.3s ease-in-out;
  margin: 10px;
}

.book-images img {
  height: 220px; /* Apni required height ke according adjust karein */
  object-fit: cover; /* Image ko distort hone se bachane ke liye */
  width: 50%;
  /* border: 3.2px solid rgb(226, 229, 191); */
  border-radius: 5px; /* Thoda curve effect for a smooth look */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.book-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(90, 87, 87, 0.2);
  border-color: #a2c3f4; /* Greenish border on hover */
}

@media (max-width: 768px) {
  .book-section {
    flex-direction: column; /* Mobile pe content stack hoke aaye */
    align-items: center;
    text-align: center;
    width: 90%; /* Box ka width adjust karna */
  }

  .book-content,
  .book-images {
    max-width: 100%; /* Mobile pe full width le */
    height: 110px;
  }

  .book-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Agar zyada images ho toh neeche aaye */
  }

  .book-images img {
    width: 45%; /* Mobile pe thoda chhota dikhane ke liye */
    height: auto;
    padding: 10px 10px;
  }

  @media (max-width: 480px) {
    .your-container {
      width: 90%;
      margin: 0 auto;
      padding: 15px;
    }

    .image-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .image-wrapper img {
      width: 80%;
      margin-bottom: 10px;
    }
  }

  @media (max-width: 450px) {
    .book-section {
      flex-direction: column;
      text-align: center;
    }

    .book-content {
      max-width: 100%;
    }

    .buy-btn {
      display: inline-block !important; /* Ensure visibility */
      width: auto; /* Auto width */
      text-align: center;
      margin-top: 15px;
      padding: 5px 10px;
      font-size: 10px;
      background-color: #ee4a62;
      color: white;
      font-weight: bold;
      border-radius: 5px;
    }

    .book-images {
      margin-top: 100px; /* Adjust this value for more gap */
    }
  }
}

.logo-img {
  width: 260px; /* Apne requirement ke according adjust karein */
  height: auto; /* Aspect ratio maintain karne ke liye */
}

/* ===============================  */
/*    WhatsApp Chat Area Start     */
/* ================================*/

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* WhatsApp Left Side */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
  animation: bounce 0.8s infinite;
}

.whatsapp-button i {
  font-size: 24px;
}

.whatsapp-button:hover {
  background-color: #09e461; /* Thoda halka green */
  color: white;
}

/* Telegram Right Side */
.telegram-button {
  position: fixed;
  bottom: 20px;
  /* right: 20px; */
  background-color: #0088cc;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
  animation: bounce 0.8s infinite;
}

.telegram-button i {
  font-size: 24px;
}

.telegram-button:hover {
  background-color: #006699;
  color: white;
}

/* ===============================  */
/*    WhatsApp Chat Area End     */
/* ================================*/

/* ===============================  */
/*    Admission Form Area Start     */
/* ================================*/

/* Form wrapper to prevent affecting footer */
.form-wrapper {
  max-width: 100%; /* Ensure form does not stretch too much */
  margin: auto; /* Center form */
}

.form-heading-container {
  background-color: blue;
  color: white;
  text-align: center;
  padding: 4px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  margin-bottom: 8px;
  text-align: left;
}

.form-heading-container-2nd {
  background-color: blue;
  color: white;
  text-align: center;
  padding: 4px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  margin-bottom: -8px;
  margin-top: -13px;
  text-align: left;
}

.form-heading-container-3rd {
  background-color: blue;
  color: white;
  text-align: center;
  padding: 4px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  margin-bottom: 8px;
  margin-top: -13px;
  text-align: left;
}

.form-container {
  background: rgb(228, 227, 227);
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  margin-bottom: 20px; /* Fix: Footer ko squeeze hone se roke */
  padding-bottom: 20px;
}

.clearfix {
  overflow: hidden; /* Prevent container collapse */
}

.form-label {
  font-weight: bold;
  font-size: 14px;
}

.form-label::after {
  content: " *";
  color: red;
  font-weight: bold;
}

.form-control,
.form-select {
  border: 1px solid #b3b3b3;
  height: 40px;
  background-color: white !important; /* Background always white */
  color: black !important; /* Text readable रहे */
}

.form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group {
  width: 75% !important;
  display: flex;
  align-items: center; /* Proper vertical alignment */
}

.input-group-text {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: 0 m !important;
  margin-right: 20px;
  margin-left: 10px;
  font-weight: bold !important;
  background-color: rgb(228, 227, 227) !important;
  font-size: 15px !important;
}

::placeholder {
  color: #555 !important;
  opacity: 1;
}

input[type="radio"] ~ label::before {
  border: 2px solid black;
  border-radius: 50%;
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label {
  position: relative;
  font-size: 13px;
  line-height: 26px;
  color: var(--color-heading);
  padding-left: 30px;
  cursor: pointer;
  margin-bottom: 0;
}

input:focus {
  position: relative;
  z-index: 10;
}

input {
  padding-bottom: 5px !important;
  margin-bottom: 5px !important;
}

.bg-light {
  background-color: rgb(228, 227, 227) !important;
}

.custom-file-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.custom-file-input {
  width: 220px; /* Fix width */
  padding: 4px;
  font-size: 14px;
  text-align: left;
}

input[type="file"] {
  overflow: hidden; /* Hide truncation dots */
  white-space: nowrap;
}

.bg-primary {
  font-size: 13px;
  margin-bottom: 8px;
}

.border.p-3.bg-light ol {
  padding-left: 0;
}

.border.p-3.bg-light ol li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
  list-style-position: inside;
}

.custom-container {
  background: rgb(230, 227, 227);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.custom-terms-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 20px;
}

.custom-terms-container input[type="checkbox"] {
  width: 16px;
  height: 16px;
  appearance: none;
  border: 2px solid black;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.custom-terms-container input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: transparent;
  display: block;
  border-radius: 2px;
}

.custom-terms-container input[type="checkbox"]:checked::before {
  background-color: black;
}

.custom-buttons {
  display: flex;
  gap: 10px;
}

.custom-buttons button {
  padding: 6px 12px; /* Bigger Button */
  font-size: 12px;
  font-weight: bold;
  border-radius: 6px;
}

/* Mobile-specific styles (max-width: 768px) */
@media screen and (max-width: 768px) {
  .form-wrapper {
    width: 100%; /* Full width on mobile */
    padding: 10px;
  }

  .form-heading-container,
  .form-heading-container-2nd,
  .form-heading-container-3rd {
    font-size: 12px; /* Smaller text */
    padding: 6px;
    margin-bottom: 10px; /* Ensure spacing */
  }

  .form-container {
    padding: 15px;
    box-shadow: none; /* Remove heavy shadows on mobile */
    margin-bottom: 15px; /* Ensure proper spacing */
  }

  .form-label {
    font-size: 13px;
    display: block;
    /* margin-bottom: 8px; Ensure label is above input */
    margin-top: 20px;
  }

  .form-control,
  .form-select {
    height: 40px;
    font-size: 12px !important;
    width: 100%; /* Full width inputs */
    /* margin-bottom: 15px; Ensure proper spacing */
    padding: 2px;
    margin-top: 10px;
  }

  .input-group {
    flex-wrap: nowrap; /* Ensure items stay in one line */
    align-items: center;
  }

  .input-group-text {
    padding: 10px !important; /* Proper padding */
    font-size: 14px !important;
    min-width: 50px; /* Ensure country code is visible */
    text-align: center;
  }

  .form-control {
    flex: 1; /* Take full remaining space */
    min-width: 0; /* Prevent overflow */
    padding-left: 10px !important; /* Proper spacing inside */
    font-size: 14px;
  }

  .custom-file-input {
    width: 60%; /* Full width file input */
  }

  .custom-container {
    flex-direction: column;
    gap: 15px;
    padding: 12px;
  }

  .custom-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .custom-buttons button {
    width: 100%; /* Full width buttons */
    font-size: 14px;
    padding: 10px;
  }

  .custom-terms-container {
    gap: 8px;
    font-size: 12px;
  }

  input[type="checkbox"] ~ label,
  input[type="radio"] ~ label {
    position: relative;
    font-size: 10px;
    line-height: 26px;
    color: var(--color-heading);
    padding-left: 20px;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 20px;
  }

  .custom-buttons {
    flex-direction: column;
    width: 31%;
    gap: 15px;
  }
}

@media screen and (max-width: 380px) {
  .input-group {
    flex-wrap: nowrap; /* Ensure elements stay in a line */
    align-items: center;
  }

  .input-group-text {
    padding: 8px !important;
    font-size: 12px !important;
    min-width: 45px; /* Ensure country code fits */
    text-align: center;
    margin-right: 10px;
  }

  .form-control {
    flex: 1; /* Take up remaining space */
    min-width: 0; /* Prevent text overflow */
    padding: 10px !important;
    font-size: 12px;
  }

  .form-control::placeholder {
    font-size: 12px; /* Adjust placeholder size */
  }
}

/* ===============================  */
/*    Admission Form Area End     */
/* ================================*/

/* ===============================  */
/*    Latest Update Area STart     */
/* ================================*/

.custom-width {
  width: 50% !important;
}

.updates-container {
  padding: 20px;
  border-radius: 10px;
  background-color: white !important;
  margin-top: 45px;
}

.updates-header {
  background-color: #072f62;
  color: yellow;
  font-weight: bold;
  padding: 12px 27px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  width: fit-content;
  margin: 10px auto;
  border-radius: 7px;
}

.updates-list {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  max-height: 250px;
  overflow-y: auto;
  margin-top: 30px;
}

.update-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 13px;
}

.update-item:last-child {
  border-bottom: none;
}

.update-icon {
  color: red;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .custom-width {
    width: 100% !important; /* Mobile par full width */
    max-width: 100% !important;
    padding: 0 10px; /* Thodi padding for better UI */
  }

  .updates-container {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
  }

  .updates-header {
    font-size: 16px;
    padding: 10px 20px;
    width: auto;
  }

  .updates-list {
    max-height: 200px;
    padding: 10px;
  }

  .update-item {
    font-size: 14px;
    padding: 8px 0;
    font-size: 12px;
  }

  .update-icon {
    font-size: 14px;
    margin-right: 5px;
  }
}

/* ===============================  */
/*    Latest Update Area End     */
/* ================================*/

/* ===============================  */
/*  Download App Area Start     */
/* ================================*/

.app-section {
  width: 100%;
  /* padding: 40px 20px; */
  box-sizing: border-box;
}

.fw-bold {
  color: yellow;
  /* background-color: #44445e; */
  background-color: #072f62;
  padding: 10px 50px;
  border-radius: 15px;
  display: inline-block;
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: -5px;
}

.app-section-container {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  background-color: white;
  padding: 40px 40px;
}

.feature-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 35px auto;
  font-size: 13px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.feature-list div {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 500;
  transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.feature-list div:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.feature-list div span {
  margin-right: 10px;
  color: #007bff;
  font-size: 18px;
}

.app-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.app-links img {
  width: 150px;
  margin: 10px;
  /* transition: all 3.3s ease-in-out;  */
}

.app-links:hover img {
  /* transform: scale(1); Slight zoom */
  box-shadow: 0 4px 15px rgba(28, 28, 28, 0.3); /* Add shadow */
}

/* Responsive: Mobile par 100% width */
@media (max-width: 768px) {
  .app-section-container {
    width: 90%;
    border-radius: 12px;
  }

  .fw-bold {
    font-size: 2rem;
    padding: 10px 20px;
    margin-top: -15px;
    border-radius: 50px;
  }

  .feature-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
  }

  .feature-list div {
    text-align: left;
    font-size: 14px;
    padding: 12px 16px;
  }

  .app-links img {
    width: 140px;
  }
}

/* ===============================  */
/*   Download App Area End     */
/* ================================*/

/* ===============================  */
/*   ADMISSION FORM Area Start     */
/* ================================*/

/* 
body {
  background-color: #b0c4de;
  text-align: center;
} */
.admission-header {
  background-color: #072f62;
  color: yellow;
  padding: 10px 30px;
  border-radius: 15px;
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 45px;
}

.admission-header:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.admission-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.admission-header-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.admission-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  flex-wrap: nowrap;
  padding: 10px;
  max-width: 100%;
}

.admission-nav-line {
  width: 50px;
  height: 4px;
  background-color: black;
  margin: 0;
}

.admission-nav-btn {
  background-color: lightgray;
  border-radius: 20px;
  padding: 10px 50px;
  font-size: 19px;
  font-weight: bold;
  text-decoration: none;
  color: black;
}

.admission-nav-btn.active {
  background-color: black;
  color: white;
}

/* .admission-nav-btn:hover {
  color: blue !important;
} */

/* Mobile View */
@media (max-width: 768px) {
  .admission-nav-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .admission-nav-line {
    display: none;
  }

  .admission-nav-btn {
    width: 100%;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .admission-header {
    font-size: 22px;
    padding: 8px 20px;
  }

  .admission-nav-btn {
    font-size: 16px;
    padding: 8px 15px;
  }
}

/* ===============================  */
/*   ADMISSION FORM Area End     */
/* ================================*/

/* ===============================  */
/*   Youtube Carousel Area Start     */
/* ================================*/

body {
  margin: 0;
  padding: 0;
}

.video-section {
  padding: 40px 20px;
}

/* ====== CAROUSEL ====== */
.carousel {
  position: relative;
}
.carousel-item {
  text-align: center;
  /* padding: 40px 0; */
}
.carousel-item .row {
  justify-content: center;
}

/* ====== CUSTOM ARROWS ====== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}
.carousel-control-prev::after,
.carousel-control-next::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 0, 0, 0.7);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control-prev::after {
  left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px 12px;
}
.carousel-control-next::after {
  right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.646 14.354a.5.5 0 0 1 0-.708L10.293 8 4.646 2.354a.5.5 0 1 1 .708-.708l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px 12px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
}
.carousel-control-prev:hover::after,
.carousel-control-next:hover::after {
  background-color: rgba(255, 0, 0, 0.9);
}

/* ====== VIDEO CARD ====== */
.video-card {
  background-color: #f8f9fa;
  border: none;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button overlay */
.play-button {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url("https://cdn-icons-png.flaticon.com/512/1384/1384060.png")
    no-repeat center center;
  background-size: contain;
  cursor: pointer;
}

@media (max-width: 768px) {
  .video-thumb {
    height: 150px;
  }

  .video-card {
    background-color: #f8f9fa;
    border: none;
    margin: 0 -20px;
  }

  .play-button {
    width: 40px;
    height: 40px;
  }
}

/* ===============================  */
/*   Youtube Carousel Area End     */
/* ================================*/

 /* ===============================  */
/*   Gallery Area STart     */
/* ================================*/


.gallery-header{
  color: yellow;
      background-color: #072f62;
      padding: 12px 60px;
      border-radius: 15px;
      display: block;
      font-size: 3rem;
      font-family: "Times New Roman", Times, serif;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      margin-top: 18px;
      text-align: center;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
  
    .gallery-header:hover{
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    
    }
  
    @media (max-width: 768px) {
      .gallery-header {
          font-size: 2rem;
          padding: 10px 20px;
          border-radius: 12px;
      }
    }  

    @media (max-width: 576px) {
      .gallery-header {
        font-size: 2rem;
        padding: 10px 20px;
        border-radius: 12px;
    }
  }

      @media (max-width: 480px) {
        .gallery-header {
          font-size: 2rem;
          padding: 10px 20px;
          border-radius: 12px;
      }
    }


/* ===============================  */
/*   Gallery Area End     */
/* ================================*/

/* ===============================  */
/*   Login Area Start     */
/* ================================*/


.custom-login-title{
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.custom-login-title:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .custom-login-title{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}


/* ===============================  */
/*   Login Area End     */
/* ================================*/

/* ===============================  */
/*   Faqs Area Start     */
/* ================================*/

.custom-faq-title{
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.custom-faq-title:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .custom-faq-title{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

/* ===============================  */
/*   Faqs Area End     */
/* ================================*/

/* ===============================  */
/*   privacy Policy Area Start     */
/* ================================*/


.custom-privacy-policy-heading{
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.custom-privacy-policy-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.privacy-list li {
  color: #000 !important;
}


@media (max-width: 768px) {
  .custom-privacy-policy-heading{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

/* ===============================  */
/*   privacy Policy Area End     */
/* ================================*/


/* ===============================  */
/*   term-condition Area Start     */
/* ================================*/


.custom-term-condition-heading{
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.custom-term-condition-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.privacy-list li {
  color: #000 !important;
}


@media (max-width: 768px) {
  .custom-term-condition-heading{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

/* ===============================  */
/*   term-conditionArea End     */
/* ================================*/


/* ===============================  */
/*  Refund Policy Area Start     */
/* ================================*/


.custom-refund-policy-heading{
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.custom-refund-policy-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.privacy-list li {
  color: #000 !important;
}


@media (max-width: 768px) {
  .custom-refund-policy-heading{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

/* ===============================  */
/*   Refund Policy Area End     */
/* ================================*/


/* ===============================  */
/*  News Area Start     */
/* ================================*/


.custom-news-heading{
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.custom-news-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.privacy-list li {
  color: #000 !important;
}

.blog-meta li{
  color: black !important;
}


@media (max-width: 768px) {
  .custom-news-heading{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

/* ===============================  */
/*   News Area End     */
/* ================================*/


/* ===============================  */
/*  News Details Area Start     */
/* ================================*/


.custom-news-details-heading{
  color: yellow;
  background-color: #072f62;
  padding: 12px 60px;
  border-radius: 15px;
  display: block; 
  font-size: 3rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 18px;
  text-align: center; 
  width: fit-content; 
  margin-left: auto; 
  margin-right: auto; 
}

.custom-news-details-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.privacy-list li {
  color: #000 !important;
}


@media (max-width: 768px) {
  .custom-news-details-heading{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}

/* ===============================  */
/*   News Details Area End     */
/* ================================*/