      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', sans-serif;
    }
    
  body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

  header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: white;
  padding: 7px 40px;
  border-bottom: 2px solid #ccc;
}

.nav-container {
  display: flex;
  align-items: center;
  font-family: 'Times New Roman';
}

.logo {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
}

.logo img {
  width: auto;
  height: 50px;
}

nav {
  margin-right: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
  transition: background 0.2s ease;
}

nav a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  z-index: 999;
  flex-direction: column;
  border-radius: 10px;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu li a {
  padding: 2px 8px;
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  color: black;
  font-weight: 400;
  border-radius: 10px;
  display: block;
  transition: background 0.2s ease;
  text-align: center;
}

.dropdown-menu li a:hover {
  background-color: #e0e0e0;
}


.dropdown-menu li a:hover {
  background-color: #e0e0e0;
}

/* Show dropdown on hover */
nav li:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}
        /* Banner */
    .banner {
    background: url("../img/banner999.png") no-repeat center center;
    background-size: cover;
   padding: 80px 10px 10px;
    color: #fff; /* You can use #000 if your background is light */
    height: 530px;
    }

    .left-content {
    padding-left: 50px;
    }

    .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px; /* ↓ Change this */
    column-gap: 30px;
    }

    .left-content h2 {
    font-size: 30px;
    line-height: 1.4;
    }

    .left-content .highlight {
    color: #ffce00;
    }

    .left-content p {
    font-size: 19px;
    margin: 15px 0;
    }
.banner-btns {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 20px;
      background-color:transparent; /* Make background transparent */
      color: white; /* Change if needed for contrast */
      border: 2px solid white; /* Optional: keep border */
      border-radius: 20px;
      text-decoration: none;
      font-weight: 600;
    
      }
  
    .right-image img {
      max-width: 100%;
      height: auto;
      display: block;
      margin-right: 200px;
      margin-top: 40px;
    }
.card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .card-title {
      font-weight: 600;
      color: #0074ff;
      font-size: 16px;
    }

    .tag {
      background-color: #63a8d9;
      color: #003973;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 12px;
      font-weight: 600;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      font-size: 32px;
      font-weight: 700;
      margin: 10px 0 20px;
      gap: 6px;
    }

    .price-row .permanent {
      font-size: 14px;
      font-weight: 500;
      color: #666;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }

   ul li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  margin-bottom: 16px;
}

.icon {
  background-color: #b3e0ff;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 12px;
}
.cta-btn {
      display: inline-block;
      margin-top: -10px;
      padding: 10px 5px;
      background-color: #003973; /* Make background transparent */
      color: white; /* Change if needed for contrast */
      border: 2px solid white; /* Optional: keep border */
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      margin-left: 40px;
      font-size: 15px;
      }

    .cta-btn.primary {
      background-color: #0074ff;
      color: #fff;
      border: none;
      font-size: medium;
    }

    .cta-btn.primary:hover {
      background-color: #005fd1;
    }

    .cta-btn.outline {
      background-color: #fff;
      color: #0074ff;
      border: 2px solid #0074ff;
    }

    .cta-btn.outline:hover {
      background-color: #f0f8ff;
    }

    .modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

/* Modal Content Box */
.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 40px 30px;
  border-radius: 12px;
  width: 80%;
 max-width: 450px;
  text-align: center;
  align-items: center;
  font-size: 24px;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Close Button */


   .info-box {
  background-color: white;
  margin: 0 30px ;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 20px;
  max-width: 95%;
  border: 2px solid #960070;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 200px;
  margin-right: 10px;
}

.info-item img {
  width: 50px;
  height: 50px;
}

.label {
  font-size: 20px;
  color: #ff6600;
  font-weight: 600;
}

.value {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

.info-button {
  flex-shrink: 0;
}

.info-apply-btn {
  background-color: #ff6600;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
  transition: background-color 0.3s;
}

.info-apply-btn:hover {
  background-color: #e85b00;
}

.placement-section {
  text-align: center;
  padding: 50px 20px 20px;
}

.placement-title {
  font-size: 25px;
  font-weight: 700;
  color: #002f6c;
  /* dark blue */
  margin-bottom: 10px;
  margin-top: 10px;
}

.underline {
  width: 90%;
  max-width: 730px;
  height: 4px;
  background-color: #f97316;
  /* orange underline */
  margin: 0 auto;
  border-radius: 2px;
}

.marquee {
  display: flex;
  animation: scroll 20s linear infinite;
  margin: 40px;
  gap: 40px;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
   .course-container {
        display: flex;
        flex-wrap: wrap;              /* ✅ Allow wrapping on small screens */
        justify-content: center;      /* ✅ Center cards horizontally */
        gap: 30px;                    /* ✅ Space between cards */
        padding: 30px;
        }

        .course-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 475px;
        width: 300px;                /* ✅ Fixed width ensures 4 cards fit */
        transition: transform 0.3s ease;
        }

        .course-card:hover {
        transform: translateY(-5px);
        border: 2px solid #67615d;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .course-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        }

        .course-card h3 {
        margin: 15px 5px 15px;
        padding: 10px;
        font-size: 20px;
        color: #003973;
        }

        .course-card p {
        padding: 0 10px;
        font-size: 13px;
        background: linear-gradient(to right, #FFFFFF, #DEB900, #FFFFFF);
        width: fit-content;
        border-radius: 4px;
        font-weight: 500;
        margin-top: 5px;
        }

        .course-card ul {
        padding-left: 10px;
        font-size: 14px;
        margin-top: 20px;
        }

        .course-card ul li {
        display: flex;
        align-items: center;
        font-size: 10px;
        gap: 8px;
        margin-bottom: 6px;
        }

        .course-card ul li img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        }

        .apply-row {
        margin-top: auto;
        padding: 15px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #ddd;
        background-color: #00C8FF4A;
        }

        .apply-deadline {
        font-size: 13px;
        color: #555;
        }

        .apply-deadline strong {
        color: #c00;
        }
 .apply-btns a {
              background-color: #ff6600;
              color: white;
              padding: 12px 24px;
              font-weight: 600;
              text-decoration: none;
              border-radius: 6px;
              white-space: nowrap;
              display: inline-block;
              transition: background-color 0.3s;
          }


          .apply-btn {
          background-color: #003973;
          color: white;
          border: none;
          padding: 8px 14px;
          font-size: 13px;
          font-weight: 600;
          border-radius: 5px;
          cursor: pointer;
          }


        .apply-btn:hover {
        background-color: #00204a;
        }


        .internship-section {
        display: flex;
        flex-wrap: wrap;
        background-image: url('../img/banner999.png');
        background-size: cover;
        background-position: center;
        padding: 40px 60px;
        color: white;
        margin-bottom: -20px;
        }

        .internship-left {
        flex: 1 1 45%;
        padding-right: 40px;
        }

        .internship-left h2 {
        font-size: 28px;
        font-weight: 700;
        color: #ffc107;
        }

        .internship-left p {
        font-size: 16px;
        margin-top: 10px;
        color: #e0e0e0;
        }

        .internship-left h3 {
        font-size: 18px;
        margin-top: 25px;
        color: #ffd700;
        }

        .internship-left ul {
        list-style: disc;
        padding-left: 20px;
        margin-top: 15px;
        color: #fff;
        }

        .internship-left ul li {
        margin-bottom: 8px;
        font-size: 15px;
        color:  #b0c4de;
        }

        .enroll-btn {
        background-color: #ffd700;
        color: rgb(0, 0, 0);
        padding: 12px 20px;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 20px;
        transition: background 0.3s ease;
        }

        .mobenroll-btn {
          display: none;
        }

        .internship-right {
        flex: 1 1 50%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        justify-items: center;
        }

        .card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        padding: 15px 20px;
        width: 260px;
        height: 120px;
        display: flex;
        align-items: center;
        color: #fff;
        text-align: left;
        gap: 15px;
        }

        .card img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        }

        .card-content {
        display: flex;
        flex-direction: column;
        gap: 5px;
        }

        .card-content p {
        margin-top: -20px;
        font-size: 18px;
        }

        .card-content span {
        display: block;
        margin-top: 20px;
        font-size: 20px;
        font-weight: bold;
        color: #ffca28;
        text-align: center;
        }
        .footer-section {
            background-color: #0d1e3d; /* Dark blue background */
            padding: 30px 20px;
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            color: #b0c4de; /* Lighter blue for text */
        }

        .footer-column h3 {
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
            font-size: 0.95em;
        }

        .footer-column ul li a {
            color: #b0c4de;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #ffffff;
        }

        .footer-logo-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .footer-logo {
            width: 340px; /* Adjust as per image */
            height: auto;
        }

        .timing-item {
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
            color: #b0c4de;
        }

        .timing-item span {
            font-size: 0.95em;
            padding: 3px;
        }

        .social-media {
            margin-top: 30px;
            text-align: center;
            width: 100%; /* Take full width of its container */
        }

        .social-media h3 {
            border-bottom: 1px solid #b0c4de;
            padding-bottom: 10px;
            margin-bottom: 20px;
            color: #ffffff;
            font-size: 1.2em;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icon {
            width: 30px;
            height: 30px;
           
            transition: filter 0.3s ease;
        }

        .social-icon:hover {
            filter: invert(70%) sepia(30%) saturate(700%) hue-rotate(180deg) brightness(100%) contrast(100%); /* Example hover color */
        }

        .map-container {
            width: 300px; /* Fixed width based on image */
            height: 200px; /* Fixed height based on image */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin-top: 20px; /* Added margin to align with title */
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
}
.menu-icon,
.mobile-menu {
  display: none;
}



.pop-plan {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-top: 5px solid #0052cc;
  max-width: 320px; /* Further reduced width */
  margin: 10% auto; /* center horizontally, no side margin */
  overflow-y: none;
}
.pop-price {
  font-size: 24px;
  font-weight: bold;
  color: #0052cc;
  margin-bottom: 10px;
}
.pop-plan ul {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.pop-plan ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.pop-plan ul li::before {
  content: "✔";
  color: green;
  position: absolute;
  left: 0;
}
.pop-btn {
  background: #0052cc;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  font-weight: 600;
}
.pop-note {
  background: #e6f0ff;
  border-left: 5px solid #0052cc;
  padding: 15px;
  margin: 30px auto;
  max-width: 800px;
  font-size: 15px;
  border-radius: 8px;
}
@media (max-width: 500px) {
  .pop-price {
    font-size: 20px;
  }
}



/* verify popup */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.modal-box {
  position: relative;
  width: 90%;
  max-width: 650px; /* increased width */
  margin: 12% auto;
}

.modal-content h2 {
  font-size: 22px;
  margin-bottom: 22px;
  color: #333;
  text-align: center;
}

.modal-content p {
  margin: 0 10px;
}

.modal-content {
  display: flex;               /* put elements in a row */
  justify-content: center;     /* center them horizontally */
  align-items: center;         /* align vertically */
  gap: 15px;                   /* space between buttons */
  flex-wrap: wrap;             /* allow wrap if screen is small */
}

.modal-content a {
  display: inline-block;
  padding: 10px 15px;
  background: #0073e6;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.modal-content a:hover {
  background: #005bb5;
  text-decoration: none;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}




/* === MOBILE VIEW: Horizontal scroll row for course cards === */
@media (max-width: 1447px) {
  html,body{
    overflow-x: hidden;
  }
  .course-scroll-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    margin-bottom: 20px;
    padding: 0 10px;
  }
.info-box {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  margin: 0 20px;
  padding: 10px 16px;
}

.info-box::-webkit-scrollbar {
  display: none;
}

.info-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 250px;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-button {
  flex: 0 0 auto;
  min-width: 250px;
  scroll-snap-align: start;
  text-align: center;
}
  .course-scroll-row::-webkit-scrollbar {
    display: none; /* Hide scrollbar on mobile */
  }

  .course-card {
    flex: 0 0 auto;
    width: 250px;
    scroll-snap-align: start;
  }
  header {
  padding: 10px 20px;
  position: relative;
  background: white;
  z-index: 999;
}
nav{
  display: none;
}
.menu-icon {
      display: block;
      font-size: 26px;
      color: #333;
      cursor: pointer;
    
    }
  
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100%;
      background-color: #fff;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: right 0.3s ease;
      z-index: 9999;
    }
  
    .mobile-menu.open {
      right: 0;
    }
  
    .mobile-menu .close-btn {
      font-size: 24px;
      cursor: pointer;
      display: block;
      margin-bottom: 20px;
      text-align: right;
    }
  
    .mobile-menu ul {
      list-style: none;
      padding: 0;
    }
  
    .mobile-menu li {
      margin: 15px 0;
    }
  
    .mobile-menu a,
    .mobile-menu span {
      text-decoration: none;
      color: #333;
      font-size: 18px;
      cursor: pointer;
    }
  
    .mobile-submenu {
      display: none;
      padding-left: 15px;
    }
  
    .mobile-submenu li {
      margin: 10px 0;
    }
  
    .mobile-dropdown.open>.mobile-submenu {
      display: block;
    }
   .mobile-menu{
    display: block;
   }
    .logo {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo img {
      width: auto;
      height: 45px;

    }
  


nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  margin-top: 10px;
  width: 100%;
}
.banner {
  padding: 50px 20px 20px;
  height: auto;
  text-align: center;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.left-content {
  margin-left: -40px;
}

 .marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  gap: 15px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 10px 0;
  max-width: 100%;
  box-sizing: border-box; /* ensures padding stays inside */
  scrollbar-width: none; /* Firefox */
}

.marquee img,
.marquee div {
  flex: 0 0 auto;
  /* max-width: 120px;
  max-height: 50px; */
  object-fit: contain;
  scroll-snap-align: start;
}

.marquee::-webkit-scrollbar {
  display: none;
}

 
 .hero {
    padding: 10px;
    text-align: center;
  }

  .hero h1 {
    font-size: 21px;
  }

  .hero p {
    font-size: 16px;
  }
.internship-section {
    flex-direction: column;
    padding: 30px ;
    /* margin-bottom: -20px; */
  }

  .internship-left {
    padding-right: 0;
    flex: 1 1 100%;
  }

  .internship-left h2 {
    font-size: 22px;
  }

  .internship-left h3 {
    font-size: 16px;
  }

  .internship-left ul li {
    font-size: 14px;
  }

 .internship-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 items per row */
    gap: 15px;
    margin-top: 30px;
    width: 100%;
  }

  .card {
    width: 100%; /* ✅ Let grid handle the width */
    padding: 10px;
    gap: 10px;
  }

  .card img {
    width: 40px;
    height: 40px;
  }

  .card-content p {
    font-size: 13px;
    margin: 0;
  }

  .card-content span {
    font-size: 18px;
  }

  .enroll-btn {
    display: none;
  }

  .mobenroll-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .mobenroll-btn button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ffd700;
    color: rgb(0, 0, 0);
    border-radius: 6px;
  }
}
@media (min-width: 769px) {
  .course-scroll-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px;
  }

  .course-card {
    width: 100%;
  }
  .placement-title {
  font-size: 40px;
  font-weight: 700;
  color: #002f6c;
  margin-bottom: 10px;
}

}



