* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", sans-serif;
      }
    body {
      background: #f9fafc;
      color: #333;
       width: 100%;  
  
    }
    .header-wrapper { 
    top: 0;            
    left: 0;           
    width: 100%;      
    z-index: 1000; 
    background-color: #fff; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}
.top-bar {
    /* background: linear-gradient(90deg, #00695c, #009688); */
     background:linear-gradient(135deg,#0f2a44,#0b1f35); 
    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(11, 182, 244, 0.386);
    transform: translateY(-2px);
}
    /* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}
@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; */
   background:linear-gradient(135deg,#0f2a44,#0b1f35); 
  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 {
    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; 
}

/* 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;
}

  /* Workshop section default hidden */
.workshop-section {
  display: none;
  background: #fff;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.workshop-section.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.workshop-section table {
  width: 100%;
  border-collapse: collapse;
}
.workshop-section th, 
.workshop-section td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.workshop-section th {
  background: #00695c;
  color: #fff;
}
.workshop-section a {
  background: #009688;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}
.workshop-section a:hover {
  background: #00796b;
}

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

/* 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;
}

.box h1 {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 40px;
  font-weight: 700px;
  height:50px ;
}

/* <!-- Updates --> */
.updates {
  /* background: #004d40; */
   background:linear-gradient(135deg,#0f2a44,#0b1f35); 
  color: #fff;
  padding: 15px 50px;
    display: flex;
  align-items: center;  
  gap: 15px; 
  margin-top: 10px;
}
.updates strong {
  margin: 0;           
  padding: 0;
}
.marquee {
  overflow: hidden;
  flex: 1;                
}
.marquee span {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* .........HOME BANNER */
.banner{
  max-width:1500px;
  height:520px;
  margin:30px auto;
  display:flex;
  margin-top: 20px;
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 25px 50px rgba(0,0,0,.18);
}
.left{
  width:55%;
  padding:50px;
}
.left h5{
  font-size:13px;
  letter-spacing:2px;
  color:#555;
}
.left h1{
  font-size:42px;
  margin:12px 0;
}

.left h1 span{
  color:#f59e0b;
}

.left p{
  font-size:15px;
  line-height:1.7;
  margin-bottom:25px;
  max-width:520px;
}

.buttons{
  display:flex;
  gap:15px;
  margin-top: -10px;
}
.btn{
  padding:13px 26px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
}
.btn.dark{
  background:#0f172a;
  color:#fff;
}

.btn.yellow{
  background:#facc15;
  color:#000;
}
.campus img{
  width:100%;
  max-width: 1400px;
  height:240px;
  object-fit:cover;
  border-radius:22px;
  margin-top:25px;
}
.right{
  width:45%;
  position:relative;
  /* background:linear-gradient(135deg,#0f2a44,#0b1f35); */
   background: linear-gradient(90deg, #00695c, #009688);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.right::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:120px;
  background:#facc15;
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0% 100%);
}
.student{
  width:250px;
  height: 250px;
  position:absolute;
  top:50px;
  left:400px;
  z-index:3;
  border-radius:18px;
}
.admission-box{
  padding:140px 45px 45px;
  color:#fff;
  margin-top: -60px;
  margin-left: 40px;
}

.admission-box h4{
  font-size:14px;
  letter-spacing:2px;
  opacity:.9;
}
.admission-box h2{
  font-size:38px;
  margin:14px 0;
  line-height:1.15;
}
.admission-box span{
  color:#facc15;
}
.admission-box p{
  font-size:14px;
  line-height:1.6;
  max-width:320px;
  margin-bottom:18px;
}
@media(max-width:992px){
  .banner{
    flex-direction:column;
    height:auto;
  }
  .left,.right{
    width:100%;
  }
.right{
    clip-path:none;
  }
  .right::before{
    display:none;
  }
  .student{
    position:relative;
    left:0;
    margin:25px auto;
    display:block;
  }
  .admission-box{
    padding:30px;
    text-align:center;
  }
}
.course-hero {
  /* background: linear-gradient(135deg, #0f172a, #020617); */
   background: linear-gradient(135deg, #0f172a, #020617);
  padding: 80px 40px;
  color: #fff;
  text-align: center;
   border-radius: 40px;
  margin: 30px;
  box-shadow: 0

}
.course-hero h1 {
  font-size: 42px;
  margin-top: 10px;
}
.course-hero p {
  font-size: 18px;
  opacity: 0.8;
}
.tabs {
  margin: 30px 0;
}
.tab {
  padding: 12px 28px;
  margin: 0 8px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}
.tab.university {
  background-color: #2563eb; 
}
.tab.courses {
  background-color: #16a34a; 
}
.tab.active {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.course-list {
  width: 1000px;
  margin: 40px auto;   
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.course-list span {
  padding: 12px 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
    justify-content: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.2);
}
.course-list span:hover {
  background: #3b82f6;
  transform: scale(1.05);
}
/* ..... */
.login-btn {
    cursor: pointer;
    padding: 8px 15px;
    background: #009688;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
  }
  /* Modal Background */
   .modal {
      display: none;
      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;
  /* align-items: center; */
  margin-left: 180px;
}

/* 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;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.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: 30px;
      font-weight: 800;
      margin-bottom: 30px;
      color: #ae0707;
}

/* Container */
.slider-container {
  position: relative;
  /* max-width: 100%;
  margin: auto; */
  overflow: hidden;
}
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.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);
    }
.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;
  }
}
ul#backmenu .arrow {
    display: none !important;
}
.about-section .alt-card h4 {
    font-size: 18px;
    font-weight: bold;
}

/* 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 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 {
  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;
   overflow-x: hidden; 
}

.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;
  font-size: 16px;
}

.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;
  font-size: 20px;
}

.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.3s 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 {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 18px;
  box-shadow: 0 4px 14px 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: 80px;
  height: 80px;
  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;
}

@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....... */
/* ==== MAIN WRAPPER ==== */
.box1{
  width:100%;
  padding:30px 20px;
  background:#f3f4f6;
}
/* ==== SECTION ==== */
.video-section{
  max-width:1500px;
  margin:auto;
  background:#ffffff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
/* ==== TITLE ==== */
.section-title{
  text-align:center;
  font-size:28px;
  font-weight:600;
  margin-bottom:25px;
  color:#ff6a00;
}
/* ==== LAYOUT ==== */
.video-container{
  width:1140px;
  height: 380px;
  display:flex;
  gap:20px;
  align-items:stretch;
}
/* ==== VIDEO LIST (LEFT) ==== */
.video-list{
  width:300px;
  display:flex;
  flex-direction:column;
  gap:15px;
}
/* ==== VIDEO ITEM ==== */
.video-item{
  display:flex;
   width:580px;
  align-items:center;
  gap:12px;
  background:#baafaf;
  padding:10px;
  border-radius:12px;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
}
.video-item:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}
/* ==== THUMBNAIL ==== */
.video-item img{
  width:90px;
  height:65px;
  border-radius:8px;
  object-fit:cover;
}
/* ==== VIDEO NAME ==== */
.video-item p{
  font-size:14px;
  font-weight:500;
  color:#111827;
}
/* ==== MAIN VIDEO (RIGHT) ==== */
.main-video{
  flex:1;
  width: 400px;
  background:#000;
  border-radius:16px;
  overflow:hidden;
}
.main-video iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:none;
}
/* ==== RESPONSIVE (MOBILE) ==== */
@media(max-width:768px){
  .video-container{
    flex-direction:column;
  }
  .video-list{
    width:100%;
    flex-direction:row;
    overflow-x:auto;
  }
 .video-item{
    min-width:220px;
  }
.main-video iframe{
    min-height:260px;
  }
}
/* ....blog..... */
  .blog-section {
    padding: 30px 15px;
    background: rgb(244, 244, 234);
    padding-bottom: 2%;
  }

.blog-section h2 {
  text-align: center;   /* 👈 text center */
  color: #008000;
  font-size: 2em;
  margin-bottom: 30px;
}

  .blog-container{
  display:flex;
  gap:30px;
  padding:40px;
  margin-top: 2%;

}
.blog-posts{
  flex:3;
}
.blog-sidebar{
  flex:1;
}
.blog-card{
  display:flex;
  background:white;
  border-radius:10px;
  overflow:hidden;
  margin-bottom:25px;
  box-shadow:0 4px 15px rgba(0,0,0,.1);
}
.blog-card img{
  width:430px;
  object-fit:cover;
}
.blog-content{
  padding:20px;
}
.blog-content h3{
  margin:10px 0;
}
.category{
  background:#009688;
  color:#fff;
  padding:4px 10px;
  font-size:12px;
  border-radius:15px;
}

/* Mini Blog Card */
.mini-blog{
  display:flex;
  gap:12px;
  margin-bottom:15px;
  cursor:pointer;
}
.mini-blog img{
  width:60px;
  height:60px;
  border-radius:8px;
  object-fit:cover;
}
.mini-blog h6{
  font-size:14px;
  margin:0 0 4px;
}
.mini-blog span{
  font-size:12px;
  color:#009688;
}
/* ===== Footer Styling ===== */
footer {
  /* background: #00695c; */
   background:linear-gradient(135deg,#0f2a44,#0b1f35); 
  color: #ddd;
  font-family: "Segoe UI", sans-serif;
  padding: 50px 20px 20px;
  margin-top: 5px;
   overflow-x: hidden; 
   width: 100%;
}

.logo1 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Segoe UI", sans-serif;
}
.logo1 img {
  width: 60px;           
  height: 60px;
  border-radius: 50%;     
background-color: white; 
  padding: 10px;
  object-fit: contain;
}
.logo1-text {
  font-size: 20px;
  font-weight: bold;
  color:white;          
  line-height: 1.2;
}
.logo1-text small {
  display: block;
  font-size: 12px;
  /* color:black;       */
 color:  #37cab9;
  margin-top: 2px;
  font-size: 15px;
}

/* 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; */
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
   font-weight: 800; 
 overflow-x: hidden; 
  }

/* 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: 10px;
  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: rgb(49, 49, 207);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
/* ✅ Mobile Friendly */
@media (max-width: 600px) {
  .back-to-top {
    display: inline-block;
    bottom: 20px;       
    right: 15px;        
    padding: 10px 12px; 
    font-size: 14px;   
  }
}

/* ........news..... */
 .main{
  /* background-color: rgb(121, 222, 222); */
    background-color: rgb(45, 169, 169);
  width: auto;
  height: 550px;
   margin-bottom: 0;
    /* padding-bottom: 20px; */
 }
  .section-title1 {
    /* background-color: lightcyan; */
      text-align: center;
      font-size: 30px;
      /* color: #0b7a4b; */
      /* margin-top: 20px; */
    }
    
.a1 {
    margin-left: 10px;
    padding: 6px 14px;
    font-size: 17px;
    border: none;
    border-radius: 20px;
    background: #0b7a4b;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
    .news-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 25px;
      margin-top: 30px;
    }

    .news-main {
      background: #fff;
      border-radius: 10px;
        width: 98%;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .news-main img {
      width: 100%;
      height: 320px;
     margin-left: 50px;
      object-fit: cover;
    }

    .news-main .content {
       margin-left: 50px;
       padding: 15px; }

    .news-main h3, .news-main h5 {
      font-size: 20px;
      color: #333;
      margin-bottom: 8px;
    }

    .news-main p {
      font-size: 14px;
      color: #666;
    }

    .news-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 550px;
      margin-right: 20px;
    }

    .news-item {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px;
      transition: 0.3s;
    }

    .news-item:hover { transform: scale(1.02); }

    .news-item img {
      width: 90px;
      height: 70px;
      object-fit: cover;
      border-radius: 6px;
    }

    .news-item .text h4, 
    .news-item .text h5 {
      font-size: 14px;
      color: #222;
      margin: 0 0 5px 0;
    }

    .news-item .text p {
      font-size: 12px;
      color: #666;
      margin: 0;
    }
   @media(max-width: 768px) {
      .news-grid { 
         overflow-x: hidden; 
        grid-template-columns: 1fr; }

    }
/* .......................new avout page */
.about-section {
    background: #eaf2ff;
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #711414;
}

.about-alt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    margin-top:20px;
}

.alt-card {
    background: #f4f2f2;
    border-radius: 18px;
    height: 250px;
    gap: 30px;
    width: 260px;
    padding: 60px 50px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.alt-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

/* Icon colors */
/* .bg1 { background: #59b8a5; }
.bg2 { background: #59b8a5; }
.bg3 { background: #59b8a5; }
.bg4 { background: #59b8a5; }
.alt-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
} */
 .bg1, .bg2, .bg3, .bg4 {
  /* background: #59b8a5; */
    background: linear-gradient(90deg, #00695c, #009688);
  border-radius: 50px;
  padding: 40px;
}
.alt-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.description-box p {
  max-width: 1300px;
  margin: 10px auto;    
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-top: -20px;
}

/* SEARCH BOX */
.search_box{
/* background-color: #59b8a5; */
 /* background: linear-gradient(90deg, #00695c, #009688); */
height: 62px;
gap:10px;
  margin-top:0; 
  
    align-items: center;
}
.search-box{

  margin-top:0px;  
  display:flex;
  background:#fff;
  border-radius:50px;
   margin-left: 250px; 
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  max-width:900px;
  margin-bottom: 10px;
}
.search-box input{
  flex:1;
    border:none;
  padding:16px 22px;
  font-size:15px;
  outline:none;
  align-items: center;
  margin-top: 10px;
}
.search-box button{
  background:linear-gradient(135deg,#1e88e5,#1565c0);

  color:#fff;
  border:none;
  padding:0 34px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}
.search-box button:hover{
  opacity:0.9;
}
/* APPLY BUTTON */
.apply-btn{
  display:inline-block;
  margin-top:40px;
  margin-left: 120px;
  background:linear-gradient(135deg,#1976d2,#0d47a1);
  color:#fff;
  padding:14px 34px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(25,118,210,0.4);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-inner{
    grid-template-columns:1fr;
    padding:30px;
  }
.hero-content h1{
    font-size:32px;
  }
}

    /* ............................................ */
    /* GRID */
.partner-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* CARD */
.partner-card{
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Hover */
.partner-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* TOP LINE */
.partner-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#4f46e5,#22c55e);
}

/* LOGO BOX */
.partner-logo{
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* LOGO IMAGE */
.partner-logo img{
  max-width: 130px;
  max-height: 70px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: 0.3s ease;
}

/* Hover Logo */
.partner-card:hover .partner-logo img{
  filter: grayscale(0%);
  transform: scale(1.05);
}
.partner-card h4{
   font-size: 18px;
}
/* TEXT */
.partner-card h6{
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
  min-height: 45px;
}
/* .....online distance... */
/* TOGGLE BUTTON */


.distance{
    padding: 20px 0;      
    margin: 20px 0;       
    background-color: #dbdfe3;
}
 .distance h2{
    padding: 20px 0;      
    margin-top: 10px 0;       
    text-align: center;
    font-size: 35px;
}
.distance p{
    padding: 20px 0;      
    margin-top: -10px;       
    text-align: center;
    font-size: 17px;
}

.toggle-wrap{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-top:30px ;
}

.toggle-btn{
  padding:10px 22px;
  border-radius:30px;
  border:1px solid #e5e7eb;
  background:#fff;
  cursor:pointer;
  font-weight:600;
  font-size: 16px;
  box-shadow:0 6px 15px rgba(0,0,0,0.08);
}

.toggle-btn.active{
  background:#0f766e;
  color:#fff;
  border-color:#0f766e;
}

/* SLIDER */
.slider-wrapper{
  position: relative;
  width: 90%;
 
  padding: 20px 40px;
   margin: auto; 
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.slider::-webkit-scrollbar {
  display: none;
}


.card{
  min-width: 23%;   
  height: 230px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card img{
  width: 140px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card h4{
  color: #0b8b6f;
  font-size: 18px;
  margin-bottom: 8px;
}

.card h6{
  font-size: 15px;
  color: #333;
  line-height: 1.2;
}

/* arrows */
.arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0b8b6f;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.arrow.left{
  left: 5px;
}

.arrow.right{
  right: 5px;
}

/* responsive */
@media(max-width: 992px){
  .card{ min-width: 48%; } 
}

@media(max-width: 576px){
  .card{ min-width: 100%; } 
}


/* ........faq.. */
.faq-page{
  max-width:1200px;
  margin:40px auto;
  display:flex;
  gap:30px;
  align-items:flex-start;
   /* background:#c69e9e; */
}

/* LEFT FAQ */
.faq-container{
  flex:3;
  background:#fff;
  /* background:#c69e9e; */
  padding:25px;
  border-radius:10px;
/* width: 200px; */
max-width: 700px;
  margin-left: -10px;
}

/* RIGHT ADS */
.ads{
  width: 300px;
  flex:1;
  background:#fff;
  padding:15px;
  border-radius:10px;
}

.ads img{
  margin-left: 140px;
  height: 400px;
  width:90%;
  border-radius:8px;
  object-fit:cover;
}

/* FAQ design */
.faq-heading{
  font-size:24px;
  margin-bottom:20px;
}

.faq-item{
  border-bottom:1px solid #ddd;
  padding:15px 0;
}

.faq-question{
  display:flex;
  align-items:center;
  cursor:pointer;
  gap:10px;
  font-weight:700;
}

.faq-number{
  background: #0b8b6f;
  color:#fff;
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}

.faq-toggle{
  margin-left:auto;
  font-size:20px;
}

.faq-answer{
  display:none;
  padding:10px 38px;
  font-size:15px;
  color:#444;
}

/* Responsive */
@media(max-width:768px){
  .faq-page{
    flex-direction:column;
  }
}
/* ...ads page */


/* ADS Heading Wrapper */
.ads_page  {
    text-align: center;
    margin-bottom: 10px;
  
}

/* ADS Heading */
.ads_page .ads h2 {
 margin-left: 700px;
    font-size: 32px;
    font-weight: 700;
    color: red;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

/* Underline Effect */
.ads_page .ads h2::after {
    content: "";
    width: 55%;
    height: 4px;
    background: #ffc107;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}
  .ad-box {
  width: 100%;
  max-width: 1600px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  background: #f5f5f5;
}

.ad-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  object-position: center; 
  display: block;
}
/* ......new page... */
/* body{
  background:#0f172a;
} */
 .section-banner{
  /* background:#0f172a; */
 }
.journey-banner{
  max-width:1200px;
  margin:40px auto;
  padding:60px 40px;
  /* background:#034472; */
   background:#034470;
  border-radius:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
}
.left-img,
.right-img{
  width:220px;
  opacity:0.95;
}
.banner-content{
  text-align:center;
  color:#fff;
  max-width:520px;
}

.banner-content .icon{
  font-size:32px;
  color:#facc15;
  margin-bottom:15px;
}

.banner-content h2{
  font-size:32px;
  color:#facc15;
  margin-bottom:12px;
}

.banner-content p{
  font-size:15px;
  line-height:1.6;
  margin-bottom:25px;
}
.banner-buttons{
  display:flex;
  gap:15px;
  justify-content:center;
}

.btn.outline{
  padding:12px 26px;
  border:2px solid #fff;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:.3s;
}

.btn.outline:hover{
  background:#facc15;
  color:#000;
  border-color:#facc15;
}

/* ===== Responsive ===== */
@media(max-width:900px){
  .journey-banner{
    flex-direction:column;
    gap:30px;
    text-align:center;
  }
.left-img,
  .right-img{
    width:180px;
  }
}