/* ===== Top Bar ===== */
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", sans-serif;
    }
    body {
      background: #f9fafc;
      color: #333;
    }
.top-bar {
    background: linear-gradient(90deg, #00695c, #009688);
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #fff;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.top-bar a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
    /* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}
/* =
/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
/* .......header//// */
header {
     background: #fff;
      padding: 15px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
      flex-wrap: wrap;
      gap: 15px;
    }
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
}

.logo-text small {
    display: block;
    font-size: 12px;
    color: #555;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.login-btn {
    padding: 6px 12px;
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
}

.modal .close {
    float: right;
    cursor: pointer;
    font-size: 20px;
}

/* 📱 Responsive: Small screens */
@media (max-width: 480px) {
  .modal-content {
    padding: 16px;
    width: 95%;
    max-width: 340px;
  }
  .modal-content input,
  .modal-content button {
    font-size: 15px;
  }
}

/* ✨ Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* .............nav........== */
nav {
  background: #009688;
  padding: 10px 20px;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
   justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  display: block;
}

nav ul li a:hover {
  background: #009688;
  border-radius: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #009688;
  min-width: 180px;
  border-radius: 4px;
  z-index: 1000;
  flex-direction: column;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 10px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}
.a{
      display:none ;
    }

/* Responsive */
  @media (max-width: 480px) {
    .a {
      display: inline-block;
      color:white;
      text-decoration: none;
      padding: 8px 12px;
    }
  }
@media (max-width: 768px) {
  nav ul {
    /* display: none; */
    flex-direction: column;
    width: 100%;
  }
nav ul li {
    width: 100%;
  }
nav ul li a {
    padding: 12px 20px;
  }
.menu-toggle {
    display: block;
  }
nav ul.active {
    display: flex;
  }
}

/* Submenu (subjects as buttons) */
.dropdown-submenu {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 5px 0;
  flex-direction: column;
}

.dropdown-submenu.open {
  padding: 10px;
  max-height: 500px; /* adjust according to content */
}

/* Course button style */
.dropdown-submenu li {
  margin: 5px 0;
}

.dropdown-submenu a {
  display: block;
  background: #fff;
  color: #333;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-align: left;
  transition: 0.3s;
}

.dropdown-submenu a:hover {
  background: #ff9800;
  color: #fff;
  border-color: #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  #menu.show {
    display: flex;
  }

  nav ul {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
  }
}
/* /..................................... */
/* Overlay for COURSES */
.courses-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  z-index: 3000;
  padding: 40px 20px;
}

/* Show overlay */
.courses-overlay.show {
  display: flex;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Header with Close button */
.courses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.courses-header h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.courses-header .close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Category list */
.courses-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Category item */
.courses-overlay .category {
  margin-bottom: 20px;
}

.courses-overlay .category > a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  padding: 10px;
  background: #f4f4f4;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.courses-overlay .category > a:hover {
  background: #ff9800;
  color: #fff;
}

/* Submenu (subjects) */
.courses-overlay .dropdown-submenu {
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.courses-overlay .dropdown-submenu.open {
  display: flex;
}
.courses-overlay .dropdown-submenu a {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}
.courses-overlay .dropdown-submenu a:hover {
  background: #ff9800;
  color: #fff;
  border-color: #ff9800;
}
/* Container Box */
.box {
     position: relative;
   background: url('https://images.unsplash.com/photo-1596495577886-d920f1fb7238?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
   height: 80vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: #fff;
      text-align: center;
        margin-bottom: 40px;
}

/* Heading */
.box h1 {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Search Box */
.search-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Select Dropdown */
.search-box select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  min-width: 150px;
  transition: all 0.3s ease;
}

.search-box select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

/* Input Box */
.search-box input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 250px;
  outline: none;
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

/* Search Button */
.search-box button {
  padding: 12px 25px;
  background: #007bff;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-box button:hover {
  background: #0056b3;
  transform: scale(1.05);
}
.updates {
  background: #004d40;
  color: #fff;
  padding: 10px 50px;
}
.marquee span {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  padding: 60px 20px;
  gap: 30px;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text h2 {
  font-size: 36px;
  color: #00695c;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.hero-text p a {
  color: #007bff;
  text-decoration: none;
}

.hero-text p a:hover {
  text-decoration: underline;
}

/* Grid of Cards */
.hero-text .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-text .grid .card {
  background-color: #ffffff;
  padding: 12px 8px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: #00695c;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.hero-text .grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Hero Image */
.hero img {
  flex: 1 1 400px;
  max-width: 450px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.hero img:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text .grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
/* Course Section */
.course-section {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  margin: 30px 5%;
  text-align: center;
}

.course-section h1 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 25px;
}

.course-section .tabs1 {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.course-section .tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  background: #e0e7ff;
  color: #1e293b;
}

.course-section .tab-btn.active {
  background: #6366f1;
  color: #fff;
}

.course-section .controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.course-section .search-box,
.course-section .filter-select {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  outline: none;
  font-size: 1rem;
}
/* ..... */
.login-btn {
    cursor: pointer;
    padding: 8px 15px;
    background: #009688;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
  }

  /* Modal Background */
   .modal {
      display: none; /* hidden by default */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    /* Modal box */
    .modal-content {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 300px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      animation: fadeIn 0.3s ease-in-out;
    }

    /* Close button */
    .close {
      float: right;
      font-size: 20px;
      cursor: pointer;
    }

    .modal-content input {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ddd;
      border-radius: 5px;
    }

    .modal-content button {
      width: 100%;
      padding: 10px;
      border: none;
      background: #009688;
      color: #fff;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
    }

    /* Mobile पर hide */
   @media (max-width: 576px) {
  button,
  .item-btn,
  .tab-btn,
  .login-btn,
  .prev,
  .next,
  .arrow {
    display: none !important;
  }
}
/* Controls */
.controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.search-box {
  padding: 10px;
  width: 250px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.filter-select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* List Buttons */
.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.item-btn {
  padding: 10px 16px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.item-btn:hover {
  background: #007bff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .controls {
    flex-direction: column;
    align-items: center;
  }

  .search-box,
  .filter-select {
    width: 100%;
    max-width: 300px;
  }
}
/* ==== Featured Colleges Section ==== */
.featured-colleges {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  max-width: 1100px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.featured-colleges h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 25px;
}

/* Slider Container */
.slider-container {
  position: relative;
  overflow: hidden;
}

/* Track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each Slide */
.slide {
  min-width: 300px;
  max-width: 300px;
  margin: 0 10px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.slide:hover {
  transform: translateY(-8px);
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slide .info {
  padding: 15px;
  text-align: center;
}
.slide .info h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2563eb;
}
.slide .info p {
  font-size: 0.9rem;
  color: #555;
}

/* Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
  z-index: 10;
}
.prev:hover,
.next:hover {
  background: #1e40af;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    min-width: 240px;
    max-width: 240px;
  }
  .slide img {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .featured-colleges {
    padding: 30px 10px;
  }
  .slide {
    min-width: 200px;
    max-width: 200px;
  }
  .slide img {
    height: 140px;
  }
}

/* Section wrapper */
.section {
  text-align: center;
      padding: 30px 20px;
      max-width: 1200px;
      margin: auto;
}

.section h2 {
   font-size: 26px;
      font-weight: 600;
      margin-bottom: 30px;
      color: #222;
}

/* Container */
.slider-container {
  position: relative;
  /* max-width: 100%;
  margin: auto; */
  overflow: hidden;
}

/* Track */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Slide card */
.city-card {
  position: relative;
      min-width: 280px;
      margin: 0 10px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      cursor: pointer;
}

.city-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
   transition: transform 0.4s ease;
}
  .city-card:hover img {
      transform: scale(1.1);
    }
/* Overlay */
.city-overlay {
 position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
      display: flex;
      align-items: center;
      justify-content: center;
}

.city-overlay h3 {
  color: #fff;
      font-size: 20px;
      font-weight: 600;
      z-index: 2;
}

/* Arrow buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.arrow:hover {
  background: #f1f1f1;
}

.arrow.left {
  left: 15px;
}

.arrow.right {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .city-card {
    min-width: 200px;
  }
}

@media (max-width: 500px) {
  .city-card {
    min-width: 160px;
  }
}

/* Main container */
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #f8f9fb, #ffffff);
}

/* Stats grid */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Card content */
.card img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.card p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #009688;
}

/* Mockup section */
.mockup {
  text-align: center;
}

.mockup img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.mockup img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .card {
    padding: 20px 15px;
  }
}
/* Section Title */
.section-title {
      background-color: #d0d8e3;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Segoe UI", sans-serif;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.section-title p {
  font-size: 1rem;
  color: #666;
  margin-top: 6px;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.tab-btn {
  background: #f5f5f5;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #444;
  font-weight: 500;
}

.tab-btn:hover {
  background: #009688;
  color: #fff;
}

.tab-btn.active {
  background: #009688;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 150, 136, 0.3);
}

/* Section blocks */
.section-block {
       background:lightblue;
  display: none;
  animation: fadeIn 0.6s ease;
}

.section-block.active {
  display: block;
}

/* Grid for cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

/* Card design */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 6px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0;
  color: #333;
  min-height: 45px;
}

/* View Button */
.view-btn {
  display: inline-block;
  margin-top: auto;
  padding: 8px 18px;
  background: #009688;
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #00796b;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .tab-btn {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
  .card img {
    width: 80px;
    height: 80px;
  }
}

/* ........video....... */
.box1{
     margin: 0;
      font-family: "Segoe UI", sans-serif;
      /* background: linear-gradient(135deg, #0f172a, #1e293b); */
      color: #fff;
      padding: 2rem;
}
.video-section {
  padding: 40px;
  background: black;
  text-align: center;
   /* color: #000; */
      margin-top: 3rem;
      border-radius: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 20px;
}

.video-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.main-video iframe {
  width: 650px;
  height: 370px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 370px;
  overflow-y: auto;
  padding-right: 5px;
  width: 250px;
}

.video-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: black;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #ddd;
}

.video-item img {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.video-item:hover {
  background: #ff6600;
  color: #fff;
  transform: scale(1.05);
}
.active-video {
  border: 2px solid #ff6600;
  background: rgba(255, 102, 0, 0.1);
}

/* ===== Footer Styling ===== */
footer {
  background: #00695c;
  color: #ddd;
  font-family: "Segoe UI", sans-serif;
  padding: 50px 20px 20px;
  margin-top: 40px;
}

/* Container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Columns */
.footer-col h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #00c896;
  margin-top: 6px;
  border-radius: 3px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #00c896;
}

/* List */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

/* Social Icons */
.social-icons {
  margin-top: 12px;
  display: flex;
  gap: 14px;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.social-icons img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(85%);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: invert(61%) sepia(88%) saturate(322%) hue-rotate(117deg) brightness(95%) contrast(94%);
}

/* Map */
.footer-col iframe {
  margin-top: 10px;
  border: none;
  width: 100%;
  height: 180px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* Bottom Bar */
.footer-bottom {
  
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
  color:black;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
   font-weight: 800; 
}

/* Responsive */
@media (max-width: 768px) {
  .footer-col h3 {
    font-size: 1rem;
  }
  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 0.85rem;
  }
}
/* ....button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  
  /* background-color:rgb(12, 12, 167); */
  border: none;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background: #218838;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
