.internship-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.internship-hero-section {
  padding: 120px 0;
  background: white;
}

.internship-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-direction: row;
}

.internship-hero-text {
  flex: 1;
}

.internship-hero-title {
  font-size: 3rem;
  font-weight: 900 !important;
  color: #2c3e50;
  margin-bottom: 24px;
  line-height: 1.2;
}

.internship-hero-description {
  font-size: 1.6rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 0;
}

.internship-hero-image {
  flex: 1;
  text-align: center;
}

.internship-hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
}

.internship-cta-section {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: row;
}

.internship-cta-content {
  flex: 1;
  text-align: left;
}

.internship-apply-button {
  display: inline-block;
  background: linear-gradient(45deg, #af7a48);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

.internship-apply-button:hover {
  background: linear-gradient(45deg, #333, #555);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.internship-arrow {
  margin-left: 8px;
  font-size: 16px;
}

.internship-projects-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.internship-project-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.internship-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.internship-project-content {
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 40px;
}

.internship-project-image {
  flex: 0 0 300px;
}

.internship-project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.internship-project-text {
  flex: 1;
}

.internship-project-title {
  font-weight: 200;
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2.7rem;
  line-height: 1.3;
}

.internship-project-description {
  font-size: 1.6rem;
  color: #5a6c7d;
  line-height: 1.7;
}

@media(min-width : 1025px){
.floating-whatsapp-internship-page {
  position: fixed;
  bottom: 5px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;

  /* floating animation */
  animation: floatAround 5s ease-in-out infinite;
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .internship-hero-content,
  .internship-cta-section {
    flex-direction: column;
    gap: 40px;
  }

  .internship-cta-section {
    flex-direction: column;
  }

  .internship-hero-title {
    font-size: 2rem;
    text-align: center;
    font-weight: 700 !important;
  }

  .internship-cta-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .internship-cta-content {
    text-align: center;
  }

  .internship-project-content {
    flex-direction: column;
    padding: 30px;
    gap: 25px;
  }

  .internship-project-image {
    flex: none;
    width: 100%;
  }

  .internship-project-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .internship-project-description {
    text-align: center;
  }
}

.menu_main_nav_area.position {
  display: flex;
  align-items: center; /* centers contents vertically */
  /* height: 10px;  */
}

.menu_main_nav {
  display: flex;
  /* gap: 20px; space between menu items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu_main_nav li a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 800;
  font-size: 12px;
}

@media (max-width: 1372px) {
  .menu_main_nav li a {
    font-size: 11px;
    font-weight: 700;
  }
}

@media (max-width: 1200px) {
  .menu_main_nav li a {
    font-size: 10px;
    font-weight: 600;
  }
}

@media (max-width: 1024px) {
  .logo {
    width: 100px;
    height: 37px;
  }
  .menu_main_nav {
    flex-wrap: nowrap; /* keep in one row */
    /* gap: 5px;              smaller gaps */
  }
  .menu_main_nav li a {
    font-size: 9px; /* shrink font */
    font-weight: 500;
  }
}

@media (max-width: 992px) {
  .menu_main_nav li a {
    font-size: 9px;
    font-weight: 600;
  }

  .logo,
  .logo_text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 80px !important;
    height: 30px !important;
  }
}

@media (max-width: 768px) {
  .menu_main_nav {
    flex-wrap: wrap; /* allow wrapping instead of overflowing */
    justify-content: center;
    gap: 10px;
  }

  .menu_main_nav li a {
    font-size: 9px;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .menu_main_nav {
    flex-direction: column; /* stack links */
    gap: 5px;
  }

  .menu_main_nav li a {
    font-size: 10px; /* slightly bigger since stacked */
    font-weight: 600;
  }
}
