* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0b0b0c;
  color: white;
  overflow-x: hidden;
}

/* Header */
.header {
  width: 100%;
  background: linear-gradient(90deg, #111, #1a1a1d);
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  transition: background 0.5s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container img {
  height: 45px;
  transition: transform 0.3s ease;
}

.logo-container:hover img {
  transform: scale(1.05) rotate(-2deg);
}

/* Navigation Links */
.LinksAll {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  transition: all 0.4s ease;
}

.LinksAll div {
  position: relative;
}

.LinksAll a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  padding: 10px 16px;
  border: 1.8px solid #0ff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
  transition: all 0.4s ease, transform 0.3s ease;
  background: linear-gradient(145deg, #0c0c0c, #151515);
}

.LinksAll a:hover {
  background: #0ff;
  color: #000;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 20px #0ff;
}

/* Profile Section */
.profile-view {
  position: relative;
}

.profile-btn {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.profile-btn:hover {
  transform: scale(1.05);
}

.profile-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #0ff;
}

/* Dropdown */
.ProfileCard {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: #1b1b1f;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  width: 240px;
  animation: fadeSlide 0.4s ease forwards;
}

.profile-view:hover .ProfileCard {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ProfileHeader {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #333;
}

.ProfileAvatar {
  width: 45px;
  height: 45px;
  background: #0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #111;
  font-size: 18px;
  margin-right: 10px;
}

.ProfileInfo h3 {
  font-size: 15px;
  margin-bottom: 3px;
}

.ProfileInfo p {
  font-size: 12px;
  opacity: 0.7;
}

.RoleBadge {
  background: #0ff;
  color: #000;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.ProfileLinks {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.ProfileLinks a,
.ProfileLinks button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ProfileLinks a:hover,
.ProfileLinks button:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 950px) {
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .LinksAll {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: stretch;
  }

  .LinksAll div {
    width: 90%;
    display: flex;
    justify-content: center;
  }

  .LinksAll a {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .profile-view {
    margin-top: 12px;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


/* main */

/* 🌟 Hero Section Base */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 50px 8%;
}

/* ========== BACKGROUND VIDEO ========== */
.backvideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

.bgvid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%) blur(1px);
  transform: scale(1.05);
  animation: zoomBg 10s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  from { transform: scale(1.05); }
  to { transform: scale(1.1); }
}

/* ========== SECTION CONTENT ========== */
.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  z-index: 2;
}

/* ========== LEFT TEXT ========== */
.hero-details {
  flex: 1;
  max-width: 550px;
  animation: fadeInLeft 1.2s ease forwards;
}

.title {
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #00e676;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: 0.4s;
}

.subtitle {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #eee;
}

.description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ========== BUTTONS ========== */
.buttons {
  display: flex;
  gap: 20px;
}

.button {
  text-decoration: none;
  padding: 12px 30px;
  border: 2px solid #00e676;
  color: #00e676;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.button:hover {
  background-color: #00e676;
  color: #000;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 15px #00e676;
}

/* ========== RIGHT VIDEO ========== */
.hero-vid-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.2s ease forwards;
}

.vid-wrapper {
  width: 100%;
  max-width: 500px;
  min-height: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
  transform: scale(1);
  transition: all 0.5s ease;
}

.vid-wrapper:hover {
  transform: scale(1.08) rotateY(10deg);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.8);
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 1024px) {
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.4rem;
  }

  .vid-wrapper {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .section-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-details {
    max-width: 100%;
  }

  .vid-wrapper {
    width: 280px;
    margin-top: 30px;
  }

  .buttons {
    justify-content: center;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */

/*Course-section  */
.Course-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #000000;
  background-image: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.8) 0%, transparent 40%),
                  radial-gradient(circle at 80% 80%, rgba(0, 204, 255, 0.6) 0%, transparent 40%);
  font-family: sans-serif;
}

.Course-section h1 {
  font-size: 2.2rem;
  color: blue;
  margin-bottom: 0.5rem;
}


.Course-section h3 {
  font-size: 1.1rem;
  color: white;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .Course-section {
    padding: 2rem 1rem;
  }

  .Course-section h1 {
    font-size: 1.8rem;
  }

  .Course-section h3 {
    font-size: 1rem;
  }

  .Course-cards {
    grid-template-columns: 1fr;
  }

  .hero-img {
    height: 180px;
  }
}

/* 💻 Medium devices (tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
  .Course-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .Course-section h1 {
    font-size: 2rem;
  }

  .Course-section h3 {
    font-size: 1.05rem;
  }
}

/* Course-cards */
.Course-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 1.5rem;
  row-gap: 2rem;
  margin-bottom: 3rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  justify-items: center;
}

/* Small screens (≥640px) */
@media (min-width: 640px) {
  .Course-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 2.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Medium screens (≥768px) */
@media (min-width: 768px) {
  .Course-cards {
    column-gap: 2.5rem;
    row-gap: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Large screens (≥1024px) */
@media (min-width: 1024px) {
  .Course-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    row-gap: 3.5rem;
  }
}

/* Extra-large screens (≥1280px) */
@media (min-width: 1280px) {
  .Course-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* card css */
.card {
  width: 25rem;
  /* height: 30rem; */
  margin: 0 auto;
  padding: 1.1rem;
  background: linear-gradient(to bottom right,black,transparent,black);
  border-radius: 1rem;
  box-shadow: 0px 0px 8px rgba(27, 30, 36, 0.08);
  border: none;
  transform: scale(1);
  transition: all 0.5s ease;
}

.card:hover{
transform: scale(1.08) rotateY(10deg);
}

.hero-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
}

.details-row {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0.25rem auto;
  font-size: 0.9rem;
  color: #333;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: linear-gradient(to right, purple, pink);
  color: white;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.total-lec{
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 1.5rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(to right, purple, pink);

}

.truncate {
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking {
  width: 95%;
  /* margin: 0.5rem auto; */
}


.offer-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  /* margin: 0.75rem auto 0; */
  color: white;
  border: none;
  border-radius: 0.75rem;

  /* height: 2.25rem; */
  padding: 0 0.5rem;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  /* pointer-events: none; */
}


/* h1 and he=3 of couse-section */
 .Course-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  display: inline-block;
} 

 .Course-section h3 {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 700px;
  margin: 1.25rem auto 3rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
} 

 @media (max-width: 768px) {
  .Course-section h1 {
    font-size: 2rem;
  }

  .Course-section h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .Course-section h1 {
    font-size: 1.7rem;
  }

  .Course-section h3 {
    font-size: 0.95rem;
    line-height: 1.6;
  }
} 

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.freecourse-section {
  text-align: center;
  background: #0d0d0d;
  padding: 80px 20px;
  color: #fff;
}

.course-color {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #b066ff, #5c26ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
}

.course-subtitle {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
}

.freecourse-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* === Course Card === */
.freecourse-card {
  position: relative;
  width: 400px;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 0 30px rgba(145, 70, 255, 0.3);
  transition: transform 0.3s ease;
}

.freecourse-card:hover {
  transform: translateY(-6px);
}

/* === Course Image === */
.freecourse-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Course Info === */
.freecourse-info {
  padding: 20px;
}

.freecourse-tags {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.freelevel {
  background: #8a2be2;
  padding: 4px 10px;
  border-radius: 20px;
}

.freelectures {
  background: #2a2a2a;
  padding: 4px 10px;
  border-radius: 20px;
}

.freetitle {
  color: #b066ff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.freeinstructor {
  color: #aaa;
  font-size: 0.9rem;
}

.freedesc {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #ccc;
}

.freetopics {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.freetopics span {
  background: #222;
  color: #b066ff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
}

/* === Hover Panel === */
.freecourse-hover, .freecourse-hover3 {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #120022, #1b0033);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s ease;
}

.freecourse-hover h3, .freecourse-hover3 h3 {
  color: #b066ff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.freecourse-hover p, .freecourse-hover3 p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.freehover-menu {
  list-style: none;
  padding: 0;
}

.freehover-menu li {
  color: #b066ff;
  font-size: 1rem;
  margin: 8px 0;
  transition: color 0.3s;
}

.freehover-menu li:hover {
  color: #fff;
}

/* === Animation: Slide from Left === */
.freecourse-card:hover .freecourse-hover {
  left: 0;
  animation: freeslideIn 0.5s ease forwards;
  z-index: 1;
}

@keyframes freeslideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* === Card Two (Top Slide-Out) === */
.freeslide-top, .freespiral-card {
  position: relative;
  width: 400px;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 0 30px rgba(70, 130, 255, 0.3);
  transition: transform 0.3s ease;
}

.freeslide-top:hover {
  transform: translateY(-6px);
}

/* Hidden hover layer (for top slide-out effect) */
.freeslide-top .freecourse-hover, .freeslide-top .freecourse-hover3 {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #120022, #1b0033);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.6s ease;
}

/* Hover animation: Slide out from top */
.freeslide-top:hover .freecourse-hover {
  top: 0;
  animation: freeslideDown 0.6s ease forwards;
}

@keyframes freeslideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



/* card3 */
/* === Spiral Card (3rd) === */
/* .spiral-card {
  position: relative;
  width: 400px;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 255, 153, 0.3);
  transition: transform 0.3s ease;
} */

.freespiral-card:hover {
  transform: translateY(-6px);
}

/* === Reuse same image + info styles === */
.freespiral-card .freecourse-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.freespiral-card .freecourse-info {
  padding: 20px;
}

.freespiral-card .freecourse-tags {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.freespiral-card .freelevel {
  /* background: #00ff99; */
  padding: 4px 10px;
  border-radius: 20px;
}

.freespiral-card .freelectures {
  background: #2a2a2a;
  padding: 4px 10px;
  border-radius: 20px;
}

/* .freespiral-card .freetitle {
  color: #00ff99;
  font-size: 1.3rem;
  margin-bottom: 4px;
} */

.freespiral-card .freeinstructor {
  color: #aaa;
  font-size: 0.9rem;
}

.freespiral-card .freedesc {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #ccc;
}

.freespiral-card .freetopics {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.freespiral-card .freetopics span {
  background: #222;
  /* color: #00ff99; */
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
}

/* === Hover Panel === */
.freespiral-card .freecourse-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: all 0.4s ease;
}

/* === Hover Trigger === */
.freespiral-card:hover .freecourse-hover {
  z-index: 1;
  animation: freespiralFromCenter 0.8s ease forwards;
}

/* === Spiral Animation === */
@keyframes freespiralFromCenter {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}

.freespiral-card .freecourse-hover3 {
  position: absolute;
  /* background: linear-gradient(135deg, #000428, #1a0033); */
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: all 0.4s ease;
}

.freespiral-card:hover .freecourse-hover3 {
  z-index: 1;
  animation: freegrowFromCenter 0.8s ease forwards;
}

@keyframes freegrowFromCenter {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */



/* About us */

/* ========================= ABOUT SECTION ========================= */
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}


.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* IMAGE SIDE */
.about-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0px 12px 35px red;
}

/* TEXT SIDE */
.about-details {
  flex: 1;
  max-width: 550px;
  text-align: center;
}

.about-details .section-title {
  font-size: 2.5rem;
  color: red;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-details .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: red;
  border-radius: 2px;
}

.about-details .text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: white;
  margin: 2rem 0 2.5rem;
  text-align: center;
}

/* SOCIAL LINKS */
.social-link-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-link {
  background: white;
  border: 2px solid red;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  color: red;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: red;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(255, 111, 145, 0.4);
}

/* ========================= RESPONSIVENESS ========================= */

/* Tablet view */
@media (max-width: 992px) {
  .section-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    width: 320px;
    height: 320px;
  }

  .about-details {
    max-width: 100%;
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .about-section {
    padding: 70px 0;
  }

  .about-details .section-title {
    font-size: 2rem;
  }

  .about-details .text {
    font-size: 0.95rem;
    padding: 0 1rem;
    margin: 1.5rem 0 2rem;
  }

  .about-image {
    width: 240px;
    height: 240px;
  }

  .social-link-list {
    flex-direction: column;
    gap: 15px;
  }

  .social-link {
    width: 180px;
    margin: 0 auto;
    font-size: 0.95rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* carrer */

/* Section Layout */
.career-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 50px;
  background-color: #0d0d0d;
  color: #fff;
}

/* Left Text Section */
.career-content {
  flex: 1;
  max-width: 550px;
}

.career-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #00bcd4;
  margin-bottom: 15px;
}

.career-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.career-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.career-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.career-list li:hover {
  background-color: #00bcd4;
  color: #111;
  transform: translateY(-3px);
}

.career-btn {
  display: inline-block;
  background: #00bcd4;
  color: #111;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.career-btn:hover {
  background: #0097a7;
  transform: scale(1.05);
}

/* Right Video Section */
.career-video-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
}

.career-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .career-section {
    flex-direction: column;
    padding: 40px 5%;
    text-align: center;
  }

  .career-content {
    max-width: 100%;
  }

  .career-video-wrapper {
    width: 100%;
    margin-top: 30px;
  }

  .career-btn {
    margin-top: 10px;
  }
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* review */
.reviews-section {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.section-subtitle {
  font-size: 2rem;
  color: #b066ff;
  margin-bottom: 40px;
}

.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 35s linear infinite;
}

.review-card {
  flex: 0 0 350px;
  background: #111;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(145, 70, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(176, 102, 255, 0.4);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-header h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.role {
  font-size: 0.85rem;
  color: #bbb;
}

.review-text {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animation */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hover to pause animation */
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 280px;
  }
}


/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* Contact us */

.contact-section {
background: linear-gradient(135deg, #0f0f0f, #2c2c2c);
  color: #fff;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
  gap: 2rem;
  min-height: 80vh;
}

.contact-container {
  flex: 1 1 400px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out;
  transition: transform 0.3s ease;
}

.contact-container:hover {
  transform: scale(1.02);
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  animation: slideIn 0.8s ease-out;
}

.contact-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background-color: #f0f0f0;
  transform: scale(1.02);
}

.contact-form button {
  padding: 0.8rem;
  background: #ff6ec4;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background: #7873f5;
  transform: translateY(-2px);
}

/* Image Styling */
.contacts-img {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatIn 1.2s ease-out;
}

.contact-img {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.contact-img:hover {
  transform: scale(1.03) rotate(1deg);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .contact-container {
    padding: 1.5rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }

  .contact-img {
    max-width: 280px;
    margin-top: 1rem;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ===== FOOTER STYLES ===== */

.footer {
  background: linear-gradient(135deg, #1f1c2c, #3c3b52);
  color: #fff;
  padding: 3rem 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container > div {
  flex: 1 1 250px;
}

.footer h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ff6ec4;
  transition: color 0.3s ease;
}

.footer p,
.footer a {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff6ec4;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container > div {
    max-width: 400px;
  }

  .footer h2 {
    font-size: 1.2rem;
  }

  .footer p,
  .footer a {
    font-size: 0.9rem;
  }
}
