/* =====================================
   DATA ANALYTICS INTERNSHIP PAGE (DARK)
===================================== */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: white;
}

/* =====================================
   HERO BANNER
===================================== */

.internship-hero {
  width: 100%;
  height: 320px;
  background: url("../images/banners/internship-banner.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}

.internship-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.internship-overlay h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  color: white;
}

.internship-overlay p {
  margin-top: 10px;
  font-size: 15px;
  color: #ccc;
}

/* =====================================
   IMAGE SECTION (Reference Style)
===================================== */

.internship-image-section {
  width: 100%;
  padding: 60px 0;
  background: #0d0d0d;
  text-align: center;
}

.internship-image-section img {
  width: 85%;
  max-width: 1050px;
  border-radius: 18px;
  box-shadow: 0px 0px 25px rgba(255, 165, 0, 0.15);
}

/* =====================================
   INTERNSHIP CONTENT SECTION
===================================== */

.internship-content {
  padding: 80px 12%;
  background: #111;
  color: white;
}

.internship-box {
  max-width: 1000px;
}

/* Headings */
.internship-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
}

.internship-box h3 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: orange;
}

/* Paragraph */
.internship-box p {
  font-size: 15px;
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 18px;
}

/* Lists */
.internship-box ul {
  margin-top: 15px;
  margin-bottom: 25px;
  padding-left: 20px;
}

.internship-box ul li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
}

/* =====================================
   TABLE SECTION
===================================== */

.internship-table {
  margin-top: 50px;
  overflow-x: auto;
}

.internship-table table {
  width: 100%;
  border-collapse: collapse;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
}

.internship-table th {
  background: orange;
  color: black;
  padding: 14px;
  text-align: left;
  font-size: 14px;
  width: 35%;
}

.internship-table td {
  padding: 14px;
  font-size: 14px;
  color: #eee;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 768px) {

  .internship-overlay h1 {
    font-size: 32px;
  }

  .internship-content {
    padding: 60px 8%;
  }

  .internship-box h2 {
    font-size: 26px;
  }

  .internship-box h3 {
    font-size: 18px;
  }

  .internship-box p,
  .internship-box ul li {
    font-size: 14px;
  }

  .internship-image-section img {
    width: 92%;
  }

  .internship-table th,
  .internship-table td {
    font-size: 13px;
    padding: 10px;
  }
}


/* ==============================
   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;
  }
}