/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  background:
    radial-gradient(at 0% 0%, rgba(219, 24, 263, 7.5) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(189, 218, 254, 7.5) 0px, transparent 50%),
    white;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(at 0% 0%, rgba(211, 163, 255, 0.5) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(181, 209, 246, 0.5) 0px, transparent 50%),
    white;
  background-repeat: no-repeat;
}

/* ===== PAGE WRAPPER ===== */
#pagewrapper {
  padding: 1.5rem;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  width: 90%;
  max-width: 1400px;
  padding: 0.75rem 1.5rem;
  border-radius: 70px;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Logo */
#logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logoimg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
#logotxt {
  font-family: sans-serif;
  font-weight: 1000;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Nav Options */
.option {
  text-decoration: none;
  color: grey;
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.3s;
}
.option:hover {
  color: #333;
}
.optionbox {
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 20px;
}
.optionbox:hover {
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}
#homeoption {
  background: linear-gradient(to bottom right, #9333EA, #2563EB);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Login Button */
#loginbtn {
  background: linear-gradient(to right, #1d4ed8, #9333ea, #db2777);
  color: #ffffff;
  font-family: sans-serif;
  width: 8rem;
  height: 2.6rem;
  border: none;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
#loginbtn:hover {
  opacity: 0.9;
}
#loginbtn2 {
  background: linear-gradient(to right, #1d4ed8, #9333ea, #db2777);
  color: #ffffff;
  font-family: sans-serif;
  width: 9rem;
  height: 3rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  display: block;
  margin: 1rem auto 0;
}

/* Hamburger Menu */
#menu {
  display: none;
}
#menubtn {
  font-size: 1.8rem;
  cursor: pointer;
}
#crossbtn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Nav List */
#navlistdiv {
  background-color: white;
  width: 90%;
  max-width: 1400px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  display: none;
  position: fixed;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: center;
  padding: 1.5rem 1rem;
}
#navlist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#navlist br {
  display: none;
}
.listoptions {
  text-decoration: none;
  color: grey;
  font-family: sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 12px;
  transition: background-color 0.2s;
}
.listoptions:hover {
  background-color: #f5f3ff;
}

/* ===== HERO SECTION ===== */
#container1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8rem 5% 4rem;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
#div1 {
  flex: 1;
  min-width: 0;
}
#div2 {
  flex-shrink: 0;
}
#heading {
  font-family: poppins, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.1;
}
#production {
  background: linear-gradient(to right, #2563eb, #9333ea, #e11d48);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
hr {
  border: 4px solid grey;
  width: 40%;
  border-radius: 30px;
  margin: 1rem 0;
}
p {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: grey;
  margin-top: 0;
  line-height: 1.6;
}
#section1logo {
  width: 100%;
  max-width: 28rem;
  height: auto;
  border-radius: 30px;
  border: 2px white solid;
  object-fit: cover;
}

/* Hero Buttons */
#explorecourses {
  background: linear-gradient(to right, #1d4ed8, #9333ea, #db2777);
  height: 3.5rem;
  padding: 0 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  color: white;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-right: 1rem;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s, transform 0.2s;
}
#explorecourses:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
#callnow {
  height: 3.5rem;
  padding: 0 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  background: linear-gradient(to bottom right, #9333EA, #2563EB);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1.5px solid #9333EA;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: box-shadow 0.3s;
}
#callnow:hover {
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
}

/* Social Media */
#socialmedia {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.socialmediabutton {
  background-color: white;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.socialmediabutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== SECTION 2 — Offers & Events ===== */
#container2 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
}
#offersdiv {
  background: radial-gradient(circle at top right, #fdf2f8 0%, #ffffff 50%, #fff9f0 100%);
  padding: 2rem;
  flex: 1;
  border-radius: 30px;
  min-height: 5rem;
}
#eventsdiv {
  background: linear-gradient(135deg, #dbe3fc 0%, #ebe7fc 50%, #ffffff 100%);
  padding: 2rem;
  flex: 1;
  border-radius: 30px;
  min-height: 5rem;
}
.head {
  background: linear-gradient(to right, #2563eb, #9333ea, #e11d48);
  border-radius: 50px;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}
.head h4 {
  color: white;
  font-size: 0.85rem;
  white-space: nowrap;
}
.section2buttons {
  height: 3rem;
  width: 8rem;
  border-radius: 30px;
  border: none;
  color: white;
  font-weight: 700;
  background-color: black;
  margin-top: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== SECTION 3 — Glimpses ===== */
#container3 {
  padding: 4rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#glimpses {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2rem;
}
#glimpsesheading {
  font-weight: 800;
  font-family: sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
#hr2 {
  border: 4px solid grey;
  width: 100%;
  border-radius: 50px;
  margin-top: 0.5rem;
}
.marquee {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 1rem 0;
}
.marquee-content {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll 50s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.img {
  width: 16rem;
  height: 16rem;
  border-radius: 20px;
  border: 2px solid black;
  object-fit: cover;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 4rem;
}
#section4 {
  background-color: white;
  padding: 4rem 5%;
}
#container4 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
#aboutym {
  flex: 1;
  min-width: 220px;
}
#logoandtext {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.logotext {
  display: flex;
  align-items: center;
}
#logopara {
  font-size: 0.95rem;
  line-height: 1.6;
}
#Quicklinks,
#programs,
#contact {
  min-width: 160px;
}
.footerheadings h2 {
  margin-bottom: 0.5rem;
}
#quicklinkslist,
#programslist,
#contactuslist {
  list-style: none;
  padding: 0;
}
#quicklinkslist li,
#programslist li,
#contactuslist li {
  margin-bottom: 0.3rem;
}
.listitem {
  text-decoration: none;
  color: grey;
  font-family: poppins, sans-serif;
  transition: color 0.2s;
}
a.listitem:hover {
  color: #555;
}
.fontsize {
  font-size: 0.95rem;
}
#programs,
#contact {
  margin-top: 0;
}

/* ===== RESPONSIVE — Tablet (<=1024px) ===== */
@media (max-width: 1390px) {
  .option { display: none; }
  #loginbtn { display: none; }
  #menu { display: block; }
}

@media (max-width: 1024px) {
  #container1 {
    flex-direction: column;
    text-align: center;
    padding: 7rem 5% 3rem;
  }
  #div1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  hr {
    margin: 1rem auto;
  }
  #socialmedia {
    justify-content: center;
  }
  #explorecourses,
  #callnow {
    margin-left: 0;
    margin-right: 0.5rem;
  }
  #section1logo {
    max-width: 24rem;
  }
}

@media (max-width: 768px) {
  #pagewrapper {
    padding: 1rem;
  }
  #navbar {
    width: 94%;
    padding: 0.6rem 1rem;
  }
  #navlistdiv {
    width: 94%;
    top: 5rem;
  }
  .logoimg {
    width: 2.8rem;
    height: 2.8rem;
  }
  #logotxt {
    font-size: 0.8rem;
  }
  #container1 {
    padding: 6rem 4% 2rem;
  }
  #container2 {
    flex-direction: column;
    padding: 1rem 4%;
  }
  #container4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  #section4 {
    padding: 3rem 5%;
  }
  .socialmediabutton {
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.2rem;
  }
  .img {
    width: 12rem;
    height: 12rem;
  }
  .listoptions {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #pagewrapper {
    padding: 0.5rem;
  }
  #navbar {
    width: 96%;
    padding: 0.5rem 0.8rem;
  }
  .logoimg {
    width: 2.4rem;
    height: 2.4rem;
  }
  #logotxt {
    font-size: 0.7rem;
  }
  #container1 {
    padding: 5.5rem 3% 1.5rem;
  }
  #section1logo {
    max-width: 18rem;
  }
  .socialmediabutton {
    height: 2.2rem;
    width: 2.2rem;
    font-size: 1rem;
  }
  .img {
    width: 10rem;
    height: 10rem;
    border-radius: 15px;
  }
  #container3 {
    padding: 2rem 3%;
  }
}

@media (max-width: 360px) {
  .logoimg {
    width: 2rem;
    height: 2rem;
  }
  #logotxt {
    font-size: 0.6rem;
  }
  #section1logo {
    max-width: 14rem;
  }
}


/* 1. Target the specific word "Production" */
.highlight-line {
  position: relative;
  display: inline-block;
  z-index: 1;
  /* Adjust this padding if the line looks too short or long */
  padding: 0 5px; 
}

/* 2. The SVG Underline */
.highlight-line::after {
  content: "";
  position: absolute;
  /* This moves the line left/right to center it */
  left: 0;
  /* This controls the vertical gap - increase 'bottom' if it's too high */
  bottom: -2px; 
  width: 100%;
  height: 15px; /* Adjust thickness */
  
  /* Using your SVG data with the light lavender color */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M5 15 Q 100 10, 195 15' stroke='%23E9D5FF' stroke-width='8' fill='transparent' stroke-linecap='round'/%3E%3C/svg%3E");
  
  background-size: 100% 100%;
  background-repeat: no-repeat;
  
  /* Ensures the line stays behind the letters */
  z-index: -1; 
}