/* ===== GLOBAL ===== */
body {
    background: #000;
    color: #eee;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* ===== HERO BANNER ===== */
.city-course-banner {
    background: url("../images/banners/internship-banner.jpg") center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.banner-overlay {
    background: rgba(0,0,0,0.75);
    padding: 120px 20px;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-subtext {
    font-size: 20px;
    margin-bottom: 10px;
}

.banner-tagline {
    margin-bottom: 25px;
    font-size: 18px;
}

.banner-buttons a {
    padding: 12px 28px;
    margin: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.primary-btn {
    background: #ff6a00;
    color: #fff;
}

.secondary-btn {
    background: #fff;
    color: #000;
}



/* =============================
   Course Main Image (Dark Mode)
============================= */

.course-image-section {
  padding: 60px 0 30px 0;
  background: #111; /* Dark background */
  text-align: center;
}

.course-main-image {
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  transition: 0.4s ease;
}

.course-main-image:hover {
  transform: scale(1.03);
}

/* ===== MAIN CONTENT ===== */
.city-content {
    padding: 70px 0;
    line-height: 1.9;
    font-size: 17px;
    background: #000;
}

.city-content h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 34px;
    color: #fff;
}

.city-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 24px;
    color: #ff6a00;
}

.city-content p {
    margin-bottom: 20px;
    color: #ccc;
}

.city-content ol,
.city-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.city-content li {
    margin-bottom: 10px;
    color: #ddd;
}

/* ===== CITY LIST ===== */
.city-list-section {
    padding: 70px 0;
    text-align: center;
    background: #111;
}

.city-list-section h3 {
    color: #fff;
    margin-bottom: 25px;
}

.city-buttons a {
    display: inline-block;
    margin: 8px;
    padding: 10px 18px;
    border: 1px solid #ff6a00;
    color: #ff6a00;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.city-buttons a:hover {
    background: #ff6a00;
    color: #fff;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: #000;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #fff;
}

.faq-item {
    background: #111;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    background: #1a1a1a;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.faq-question:hover {
    background: #222;
}

.faq-answer {
    display: none;
    padding: 18px;
    background: #111;
    line-height: 1.8;
    color: #ccc;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .banner-content h1 {
        font-size: 26px;
    }

    .banner-subtext {
        font-size: 16px;
    }

    .banner-overlay {
        padding: 80px 20px;
    }

    .city-content {
        padding: 50px 0;
        font-size: 15px;
    }

    .city-content h2 {
        font-size: 26px;
    }

}







/* ==============================
   MAP + FORM GRID
============================== */

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

/* ==============================
   MAP BOX
============================== */

.map-box iframe {
  width: 100%;
  height: 440px;
  border: none;
  border-radius: 18px;
  filter: grayscale(30%);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.65);
}

/* ==============================
   FORM BOX
============================== */

.form-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.65);
}

.form-box h2 {
  font-size: 34px;
  margin-bottom: 28px;
  color: white;
  font-weight: 700;
}

/* Inputs */
form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: none;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: orange;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.45);
}

/* Placeholder */
form input::placeholder,
form textarea::placeholder {
  color: #888;
}

/* Two Inputs Row */
.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

/* Button */
form button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, orange, #ff5a1f);
  color: black;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
}

form button:hover {
  transform: scale(1.04);
  box-shadow: 0 0 18px rgba(255, 165, 0, 0.55);
}

/* ==============================
   MOBILE RESPONSIVE
============================== */

@media (max-width: 900px) {

  .contact-main {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .form-box {
    padding: 30px;
  }

  .form-box h2 {
    font-size: 26px;
  }

  .map-box iframe {
    height: 320px;
  }
}


/* ==============================
   CERTIFICATE DETAILS TABLE
================================= */

.certificate-details {
  max-width: 600px;
  margin: 40px auto;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  font-size: 15px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #ddd;
}

.detail-row span:first-child {
  font-weight: bold;
  color: #333;
}

.detail-row span:last-child {
  color: #555;
}

.detail-row:last-child {
  border-bottom: none;
}


/* ==============================
   Call Now Banner Dark Mode
============================== */

.call-banner-section {
  padding: 80px 10%;
  background: #111;
}

.call-banner {
  background: linear-gradient(135deg, #001a66, #0033cc);
  border-radius: 18px;
  padding: 35px 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

/* Decorative Circles */
.call-banner::before,
.call-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.call-banner::before {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -60px;
}

.call-banner::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -80px;
}

/* Left Side */
.call-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.call-banner-left i {
  font-size: 42px;
  color: orange;
}

.call-banner-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* Button */
.call-btn {
  padding: 14px 34px;
  background: orange;
  color: #111;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  z-index: 2;
}

.call-btn:hover {
  background: #ff9900;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 768px) {
  .call-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .call-banner-left {
    flex-direction: column;
  }

  .call-banner-left h2 {
    font-size: 22px;
  }
}


.office-info h3 {
  color: orange;
  margin-bottom: 8px;
}

.office-info p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}


/* ==============================
   Placement Slider Section
============================== */

.placement-slider-section {
  padding: 100px 8%;
  background: #0d0d0d;
  text-align: center;
}

.placement-slider-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
}

/* Wrapper */
.placement-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Slider */
.placement-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.placement-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.placement-slide-card {
  min-width: 260px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 15px;
  flex-shrink: 0;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.placement-slide-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 165, 0, 0.4);
}

.placement-slide-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.placement-slide-card h3 {
  margin-top: 15px;
  font-size: 17px;
  font-weight: 700;
  color: orange;
}

.placement-slide-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Arrows */
.place-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 165, 0, 0.15);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  color: orange;
  font-size: 18px;
  z-index: 10;
}

.place-arrow:hover {
  background: orange;
  color: #000;
}

.place-arrow.left {
  left: -20px;
}

.place-arrow.right {
  right: -20px;
}

/* View More Button */
.placement-view-btn {
  margin-top: 50px;
}

.placement-view-btn a {
  display: inline-block;
  padding: 14px 40px;
  background: orange;
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.placement-view-btn a:hover {
  background: #fff;
}