/* ==================================================
   SECTION 1 – HERO
================================================== */

.sec1 {
  width: 100%;
  min-height: 860px;
  padding-bottom: 80px;
  background: url("../img/svg/homeBg.svg") no-repeat center / cover;
}

.nav__logo{
  margin-left: 1.2rem;
}
/* Layout */
.sec1Inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.heroBtns a{
    padding: 5px 20px !important;
}
/* Text */
.sec1Content {
  flex: 1;
}

.sec1Content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #111;
}

.sec1Content p {
  font-size: 18px;
  color: #555;
  max-width: 520px;
  margin-bottom: 16px;
  transform: translate(-1.5rem);
  margin-top: 16px;
}

/* Buttons */
.heroBtns {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  transform: translate(-4.5rem);
}

/* Image */
.sec1Image {
  flex: 0.9;
  display: flex;
  justify-content: center;
}

.sec1Image img {
  width: 460px;
  height: 460px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}
/* ================= HERO CTA BUTTON ================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 5rem !important;
  min-width: 200px;
  height: 56px;
  padding: 0 26px;

  border-radius: 999px;
  background: linear-gradient(180deg, #1b2730, #111a21);
  color: #ffffff;

  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;

  box-shadow:
    0 14px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Small white dot / arrow holder */
.btn::after {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;
  border-radius: 50%;

  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 700;

  transition: transform 0.25s ease, background 0.25s ease;
}

/* Hover */
.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 42px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn:hover::after {
  background: #ffffff;
  color: #111;
  transform: translateX(4px);
}

/* Active */
.btn:active {
  transform: translateY(-1px);
}

/* ================= HERO RESPONSIVE ================= */

@media (max-width: 992px) {
  .sec1Inner {
    padding-top: 120px;
    gap: 40px;
  }

  .sec1Content h1 {
    font-size: 40px;
  }

  .sec1Image img {
    width: 300px;
    height: 300px;
  }
}

/* 🔥 IMPORTANT FIX — STACK BUTTONS HERE */
@media (max-width: 768px) {
  .sec1Inner {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 10px;
  }

  .sec1Content p {
    margin: 0 auto 28px;
    padding-bottom: 2rem;
    transform: translate(0rem);
    margin-bottom: 0;
  }

  .heroBtns {
    display: flex;              /* 🔑 REQUIRED */
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;    /* vertical centering (if needed) */
    gap: 14px;
    transform: translate(0);
    width: 100%;
  }


  .heroBtns .btn {
  width: 260px;
  height: 48px;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  padding: 0;
}


  .sec1Image img {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .sec1Content h1 {
    font-size: 32px;
  }

  .sec1Content p {
    font-size: 16px;
  }

  .heroBtns .btn {
    width: 100%;
    max-width: 300px;
  }

  .sec1Image img {
    width: 220px;
    height: 220px;
  }
}
/* ================= INTERNSHIP GALLERY ================= */
.intern-h1{
  margin-bottom: 2rem;
}
.experience-gallery {
  padding: 20px 0;
  background: #ffffff;
}

.gallery-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 16px;
  color: #555;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Image Card */
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Highlight middle image */
.gallery-item.highlight {
  transform: none;
}


/* Hover */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0,0,0,0.18);
}
.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 48px auto 0;
  padding: 12px 26px;

  font-size: 14px;
  font-weight: 500;

  color: #fff;
  background: #000;

  border-radius: 999px;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* Centering */
.experience-gallery .instagram-btn {
  display: flex;
  width: fit-content;
}

/* Icon */
.instagram-btn i {
  font-size: 18px;
}

/* Hover */
.instagram-btn:hover {
  transform: translateY(-2px);
  background: #111;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.highlight {
    transform: none;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-header h2 {
    font-size: 28px;
  }
}



/* ================= INTERN FEEDBACK ================= */

.intern-feedback-section {
  padding: 30px 0;
  background: #ffffff;
}

/* Layout */
.feedback-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

/* Video Card */
.feedback-video-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.15);
  background: #000;
}

.feedback-video-card video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Caption under video */
.video-caption {
  background: #fff;
  padding: 16px 20px;
  text-align: center;
}

.video-caption h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.video-caption span {
  font-size: 14px;
  color: #666;
}

/* Feedback Cards */
.feedback-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.feedback-card {
  background: #fafafa;
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  position: relative;
}

.feedback-card::before {
  content: "“";
  font-size: 60px;
  position: absolute;
  top: -10px;
  left: 18px;
  color: rgba(0,0,0,0.08);
  font-family: serif;
}

.intern-star{
  margin-bottom: 0.8rem;
}
.feedback-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
/* Author Section */
.feedback-author {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e5e5;
}

.feedback-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.feedback-author span {
  font-size: 13px;
  color: #666;
}

/* ================= RESPONSIVE ================= */

.feedback-video-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.15);
  background: #000;
  position: relative;
}

/* Video container for iframe */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 133%; 
  background: #000;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Arrow buttons */
.feedback-video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  border-radius: 4px;
}

.feedback-video-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.feedback-video-arrow.left {
  left: 10px;
}

.feedback-video-arrow.right {
  right: 10px;
}

/* Caption under video */
.video-caption {
  background: #fff;
  padding: 16px 20px;
  text-align: center;
}

.video-caption h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.video-caption span {
  font-size: 14px;
  color: #666;
}

@media (max-width: 992px) {
  .feedback-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .video-container {
    padding-bottom: 120; /* Maintains 9:16 ratio */
  }
}

@media (max-width: 576px) {
  .intern-feedback-section {
    padding-top: 1rem !important;
  }
  
  .video-container {
    padding-bottom: 133%; /* Maintains 9:16 ratio */
  }
  
  .feedback-video-arrow {
    font-size: 18px;
    padding: 8px 12px;
  }
}
/* ==================================================
   INTERN FEEDBACK – FIX VIDEO ARROWS
================================================== */

.feedback-video-card {
  position: relative; /* REQUIRED */
}

/* Arrow buttons */
.feedback-video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  cursor: pointer;
  opacity: 0;

  transition: opacity 0.25s ease, background 0.25s ease;
}

/* Show arrows on hover */
.feedback-video-card:hover .feedback-video-arrow {
  opacity: 1;
}

/* Left arrow */
.feedback-video-arrow.left {
  left: 14px;
}

/* Right arrow */
.feedback-video-arrow.right {
  right: 14px;
}

/* Hover */
.feedback-video-arrow:hover {
  background: rgba(0,0,0,0.85);
}

/* Mobile – always visible */
@media (max-width: 768px) {
  .feedback-video-arrow {
    opacity: 1;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}


/* ==================================================
   DOMAINS SECTION
================================================== */

.domains-section {
  padding: 90px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* Card */
.domain-card-pro {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 40px;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.domain-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.domain-card-pro h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
}

.domain-card-pro p {
  font-size: 16px;
  color: #555;
  margin-bottom: 26px;
}

.btn-black {
  margin-top: auto;
  padding: 14px 22px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

/* ==================================================
   SECTION 3 – TESTIMONIALS
================================================== */

.sec3 {
  margin-bottom: 120px;
  overflow: hidden;
}

.sec3Content {
  padding: 120px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}

.testimonials-list li {
  background: #fafafa;
  border-radius: 18px;
  padding: 22px 26px 22px 54px;
  margin-bottom: 22px;
  position: relative;
}

/* ==================================================
   INTERN SHORTS
================================================== */

.intern-shorts-section {
  padding: 10px 0;
  background: #f9f9f9;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 32px;
  max-width: 1000px;
  margin: auto;
}

.short-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}
.short-card p {
  margin-top: 1rem;
}



/* Vertical video container */
.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
}

/* Vertical video container */
.video-wrapper.vertical {
  aspect-ratio: 9 / 16;
  background: #000;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper.vertical iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 100%;
  border: 0;
}