
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Nunito", sans-serif;
      }

      /* TOPBAR */
      .topbar {
        background: #2f2b5c;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 60px;
        font-size: 18px;
      }

      /* LEFT SIDE */
      .top-left {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .top-left a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #fff;
        text-decoration: none;
      }

      /* RIGHT SIDE */
      .top-right {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      /* SOCIAL ICONS */
      .social-icons {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      /* SEARCH BOX */
      .search-box {
        display: flex;
        align-items: center;
        overflow: hidden;
        margin-right: 30px;
      }

      /* INPUT */
      .search-box input {
        padding: 10px 30px;
        border: none;
        outline: none;
        font-size: 16px;
      }

      /* BUTTON (ICON BG) */
      .search-box button {
        background: #999; /* grey background */
        border: none;
        padding: 13px 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* ICON */
      .search-box i {
        color: #fff; /* white icon */
        font-size: 18px;
      }

      /* HOVER EFFECT */
      .search-box button:hover {
        background: #777;
      }

      .social-icons a {
        color: #fff;
        font-size: 14px;
        transition: 0.3s;
      }

      /* HOVER EFFECT */
      .social-icons a:hover {
        color: #f4a623;
        transform: translateY(-2px);
      }

      /* ICON SIZE ALIGN */
      .topbar i {
        font-size: 13px;
      }

      /* ================= NAVBAR ================= */
      .navbar {
        background: #feb526;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 70px;
        position: relative;
      }
      /* Container */
.destination-menu {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 30px;
  left: 0;
  width: 750px;
  display: flex;
  border-radius: 10px;
  border: 1px solid orange;
  overflow: hidden;

  /* Background image */
  background: url("../images/study-in-aus.jpg");
  background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.07;

  /* overlay effect */
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 1000;
}

/* Show on hover */
.destination-menu:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
}

/* LEFT SIDE */
.mega-left {
  width: 60%;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  background: rgba(255,255,255,0.9);
}

/* ITEM */
.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eee;
  padding: 12px;
  font-weight: 900;
  border-radius: 6px;
  border: 1px solid black;
  cursor: pointer;
  transition: 0.3s;
}

.mega-item img {
  width: 24px;
  height: 24px;
}

/* RIGHT SIDE IMAGE */
.mega-right {
  width: 40%;
}

.mega-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Container */
.study-menu {
  position: relative;
}

/* Dropdown */
.study-dropdown {
  position: absolute;
  top: 60px;
  left: 0;
  width: 1100px;
  display: flex;
 background: url("../images/study-in-aus.jpg");
  background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.07;
  border-radius: 10px;
  border: 1px solid orange;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

/* Overlay for readability */
.study-dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}

/* Show on hover */
.study-menu:hover .study-dropdown {
  opacity: 1;
  visibility: visible;
}

/* Columns */
.study-col {
  flex: 1;
  padding: 25px;
  border-right: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

/* Headings */
.study-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-decoration: underline;
  color: #2c2850;
}

/* List */
.study-col ul {
  list-style: none;
  padding: 0;
}

.study-col li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  padding-left: 18px;
}

/* Arrow bullet */
.study-col li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #4e9c7c;
  font-size: 12px;
}

/* No heading column */
.no-heading li {
  margin-top: 10px;
}

/* Image section */
.study-image {
    display: flex;
  position: relative;
  z-index: 1;
}

.study-image img {
  width: 180px;
}
.study-col a {
  text-decoration: none;
  color: #333;
  display: block;
  transition: 0.3s;
}

/* Hover effect */
.study-col a:hover {
  color: #4e9c7c;
  transform: translateX(3px);
}

/* Heading links */
.study-col h3 a {
    font-size: 16px;
  color: #2c2850;
  font-weight: 900;
}

.study-col h3 a:hover {
  color: #000;
}

      /* MENUS */
      .menu {
        display: flex;
        gap: 25px;
        list-style: none;
      }

      .menu li {
        position: relative;
      }

      .menu a {
        text-decoration: none;
        color: #000000;
        font-weight: 900;
        text-transform: uppercase;
        font-size: 13px;
      }

      .logo img {
    width: 140px;
    height: 120px;
}

      /* LOGIN BUTTON */
      .login-btn {
        background: #2f2b5c;
        color: #fff;
        padding: 10px 18px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
      }

      /* ================= DROPDOWN ================= */

      /* PARENT */
      .dropdown-parent {
        position: relative;
      }

      /* DROPDOWN BOX */
      .dropdown {
        position: absolute;
        top: 120%;
        left: 0;
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        min-width: 230px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 999;
      }

      /* LINKS */
      .dropdown a {
        display: block;
        padding: 8px 10px;
        color: #333;
        border-radius: 6px;
      }

      .dropdown a:hover {
        background: #f4a623;
        color: #fff;
      }

      /* MULTI COLUMN */
      .dropdown.multi {
        display: flex;
        gap: 30px;
      }

      .dropdown.multi div {
        min-width: 120px;
      }

      .dropdown.multi h4 {
        margin-bottom: 10px;
        color: #2f2b5c;
      }

      /* SHOW ONLY ON HOVER */
      .dropdown-parent:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      /* KEEP OPEN WHEN HOVERING INSIDE */
      .dropdown:hover {
        opacity: 1;
        visibility: visible;
      }

      .hero {
        position: relative;
        height: 100vh;
        padding: 120px 60px;
        overflow: hidden;
        z-index: 1;

        /* BASE COLOR */
        background-color: #feb526;

        /* MULTIPLE BACKGROUNDS */
        background-image:
          url("../images/stars-1.png"),
          /* stars */ url("../images/newww-final.gif"); /* full hero gif */

        background-repeat: no-repeat, no-repeat;

        /* POSITIONING */
        background-position:
          center,
          /* stars */ bottom right; /* gif */

        /* SIZE */
        background-size:
          cover,
          1400px auto;
      }

      /* ================= CONTENT ================= */
      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 600px;
      }

      /* HEADING */
      .hero-content h1 {
        font-family: "Nunito", sans-serif;
        font-size: 64px;
        color: #2f2b5c;
        font-weight: 800;
        line-height: 1.1;
      }

      /* TEXT */
      .hero-content p {
        margin-top: 20px;
        font-size: 16px;
        color: #2f2b5c;
      }

      /* BUTTON */
      .cta-btn {
        display: inline-block;
        margin-top: 25px;
        background: #fff;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        color: #2f2b5c;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }
      /* ADD ICON AFTER DROPDOWN MENU */
      .dropdown-parent > a::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 6px;
      }
      /* ROTATE ICON ON HOVER */
      .dropdown-parent:hover > a::after {
        transform: rotate(180deg);
      }
      /* SECTION */
      .marquee-section {
        padding: 80px 0;
        text-align: center;
        margin-bottom: -120px;

        background: url("../images/clouds-5.png") no-repeat center;
        background-size: 100% 100%; /* 🔥 key line */

        margin-top: -150px;
        position: relative;
        z-index: 3;
      }
      /* HEADING */
      .section-heading {
        padding-top: 120px;
        font-size: 55px;
        font-weight: 900;
        color: #302a5a;
        margin-bottom: 40px;
      }

      /* MARQUEE WRAPPER */
      .marquee {
        overflow: hidden;
        position: relative;
        width: 85%;
        margin: 40px auto;
      }

      /* TRACK */
      .marquee-track {
        display: flex;
        gap: 40px;
        width: max-content;
        animation-timing-function: linear;
      }

      /* IMAGES */
      .marquee-track img {
        height: 80px;
        object-fit: contain;
        background: #fff;
        padding: 10px 20px;
        border-radius: 10px;
      }

      /* ANIMATION LEFT (Right → Left) */
      .marquee-left .marquee-track {
        animation: scroll-left 20s linear infinite;
      }

      /* ANIMATION RIGHT (Left → Right) */
      .marquee-right .marquee-track {
        animation: scroll-right 20s linear infinite;
      }
      .study-carousel {
        padding: 150px 15px 0px;
        text-align: center;
        background-repeat: no-repeat;
        background-image: url("../images/world-white-1.png");
        background-color: #302a5a0f;
        background-position: bottom left;
        background-size: contain;
        background-attachment: fixed;
        position: relative;
        z-index: 1;
      }
      /* Bottom Image */
      .bottom-image {
        margin-top: 40px;
        display: flex;
        justify-content: center;
      }

      .bottom-image img {
        width: 1000px;
        max-width: 100%;
      }

      /* Mobile */
      @media (max-width: 768px) {
        .bottom-image img {
          width: 100%;
        }
      }

      .study-carousel h2 {
        font-size: 40px;
        font-weight: 800;
        color: #2e2a5a;
        margin-bottom: 30px;
      }

      /* Wrapper */
      .carousel-wrapper {
        overflow: hidden;
        max-width: 1100px;
        margin: auto;
      }

      /* Track */
      .carousel-track {
        display: flex;
        gap: 20px;
        transition: transform 0.5s ease;
      }

      /* Card */
      .card {
        min-width: calc(33.33% - 14px);
        cursor: pointer;
      }

      .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 20px;
      }

      .card h3 {
        margin-bottom: 20px;
        font-weight: 900;
        font-size: 24px;
        color: #2e2a5a;
      }
      .study-gateway-section {
        background: #4f9b75;
        padding: 120px 20px;
        overflow: hidden;
      }

      .study-gateway-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 10px;
      }

      /* Left */
      .study-gateway-left img {
        width: 100%;
        max-width: 500px;
      }

      /* Right */
      .study-gateway-right {
        color: #fff;
        max-width: 600px;
        position: relative;
      }

      .study-gateway-right h1 {
        font-size: 48px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 20px;
      }

      .study-gateway-right p {
        font-size: 16px;
        width: 420px;
        font-weight: 500;
        line-height: 1.7;
        margin-bottom: 40px;
      }

      /* Bottom right image */
      .study-gateway-sign {
        position: absolute;
        top: 80px;
        right: -140px;
      }

      .study-gateway-sign img {
        width: 150px;
      }

      /* Responsive */
      @media (max-width: 992px) {
        .study-gateway-container {
          flex-direction: column;
          text-align: center;
        }

        .study-gateway-right {
          max-width: 100%;
        }

        .study-gateway-right h1 {
          font-size: 32px;
        }

        .study-gateway-sign {
          position: static;
          margin-top: 20px;
        }
      }

      /* Tablet */
      @media (max-width: 992px) {
        .card {
          min-width: calc(50% - 10px);
        }

        .study-carousel h2 {
          font-size: 32px;
        }
      }

      /* Mobile */
      @media (max-width: 600px) {
        .card {
          min-width: 100%;
        }

        .card img {
          height: 180px;
        }

        .study-carousel h2 {
          font-size: 26px;
        }
      }

      /* Dots */
      .dots {
        margin: 25px 0;
      }

      .dots span {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #bbb;
        margin: 4px;
        border-radius: 50%;
        cursor: pointer;
      }

      .dots .active {
        background: #2e2a5a;
      }

      /* CTA */
      .cta-btn {
        padding: 12px 25px;
        border: none;
        background: #fff;
        border-radius: 40px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* stronger black shadow */
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
      }

      .easy-study-section {
        position: relative;
        margin-top: -180px; /* 🔥 overlap previous section */
        padding: 100px 20px;

        background: url("../images/baby-pink-background-2.png") no-repeat center/cover;
        z-index: 2;
      }

      /* Heading */
      .easy-heading {
        margin-top: 90px;
        text-align: center;
        font-size: 50px;
        font-weight: 900;
        color: #302a5a;
        margin-bottom: 50px;
      }

      /* Layout */
      .easy-container {
        display: flex;
        gap: 60px;
        max-width: 1200px;
        margin: auto;
      }

      /* LEFT */
      .easy-left {
        flex: 1;
      }

      .easy-text {
        font-size: 22px;
        margin-bottom: 20px;
      }

      .student-image {
        margin: 40px 0;
      }

      .student-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        display: block;
      }

      .easy-points li {
        font-size: 20px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
      }

      .easy-points i {
        color: #4f9b75;
        font-size: 18px;
        margin-top: 3px;
      }
      /* Circle Image */
      .circle-image img {
        width: 550px;
      }

      /* RIGHT SIDE */
      .easy-right {
        flex: 1;
        position: relative;
      }

      /* TIMELINE CONTAINER */
      .custom-timeline {
        width: 100%;
        max-width: 650px;
        margin: auto;
        position: relative;
      }

      /* EACH STEP */
      .timeline-card {
        position: relative;
        display: flex;
        padding: 30px 30px; /* spacing for smooth curve */
      }

      /* TEXT */
      .timeline-content {
        font-weight: 900;
        text-decoration: underline;
        font-size: 25px;
        z-index: 2;
      }

      /* ICON COMMON */
      .timeline-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: #000;
        color: #feb526;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3; /* above line */
        font-size: 20px;
      }

      /* LEFT ITEMS */
      .timeline-card:nth-child(odd) {
        margin-top: -4px;
        padding-left: 80px;
      }

      .timeline-card:nth-child(odd) .timeline-icon {
        left: 0;
      }

      .timeline-card:nth-child(odd) .timeline-content {
        text-align: left;
      }

      /* RIGHT ITEMS */
      .timeline-card:nth-child(even) {
        margin-top: -4px;
        justify-content: flex-end;
        padding-right: 80px;
        text-align: right;
      }

      .timeline-card:nth-child(even) .timeline-icon {
        right: 0;
      }

      /* 🔥 MAIN DASHED CURVE */
      .timeline-card::before {
        content: "";
        position: absolute;
        width: 45%;
        border: 4px dashed #feb526; /* thicker line */
        z-index: 1;
      }

      /* 1st item */
      .timeline-card:nth-child(1)::before {
        left: 25px;
        top: 50%; /* no top line */
        bottom: 0;
        border-width: 0px 0 4px 4px;
        border-radius: 30px 0 0 30px;
      }

      /* 2nd item */
      .timeline-card:nth-child(2)::before {
        right: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 4px 4px 0;
        border-radius: 0 30px 30px 0;
      }

      /* 3rd item */
      .timeline-card:nth-child(3)::before {
        left: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 0 4px 4px;
        border-radius: 30px 0 0 30px;
      }

      /* 4th item */
      .timeline-card:nth-child(4)::before {
        right: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 4px 4px 0;
        border-radius: 0 30px 30px 0;
      }
      .timeline-card:nth-child(5)::before {
        left: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 0 4px 4px;
        border-radius: 30px 0 0 30px;
      }
      .timeline-card:nth-child(6)::before {
        right: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 4px 4px 0;
        border-radius: 0 30px 30px 0;
      }
      .timeline-card:nth-child(7)::before {
        left: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 0 4px 4px;
        border-radius: 30px 0 0 30px;
      }
      .timeline-card:nth-child(8)::before {
        right: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 4px 4px 0;
        border-radius: 0 30px 30px 0;
      }
      .timeline-card:nth-child(9)::before {
        left: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 0 4px 4px;
        border-radius: 30px 0 0 30px;
      }
      .timeline-card:nth-child(10)::before {
        right: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 4px 4px 0;
        border-radius: 0 30px 30px 0;
      }
      .timeline-card:nth-child(11)::before {
        left: 25px;
        top: 0;
        bottom: 0;
        border-width: 4px 0px 0px 4px;
        border-radius: 30px 0 0 30px;
      }

      /* OPTIONAL: SMOOTHER LOOK */
      .timeline-card::before {
        border-style: dashed;
      }
      .uni-showcase {
        padding: 60px 20px;
        background-color: #e2e2e2;
        background-image: url("../images/world-white-1.png");

        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
      }
      .uni-showcase1{
        padding: 60px 20px;
        background-color: #FEF4F2;
      }
      .uni-heading1 {
        text-align: center;
        font-size: 40px;
        font-weight: 900;
        line-height: 60px;
        color: #302a5a;
        margin-bottom: 30px;
      }

      .uni-heading {
        text-align: center;
        font-size: 55px;
        font-weight: 900;
        line-height: 60px;
        color: #302a5a;
        margin-bottom: 30px;
      }

      .uni-slider-box {
        margin: 40px auto;
        max-width: 1300px;
        overflow: hidden;
        width: 100%;
      }

      .uni-slider-track {
        display: flex;
        gap: 40px;
        align-items: center;
        width: max-content;
        animation: uniScroll 20s linear infinite;
      }

      .uni-slider-track img {
        border-radius: 15px;
        width: 140px;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
      }

      /* Smooth infinite scrolling */
      @keyframes uniScroll {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      /* Country Grid */
      .uni-country-wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        max-width: 1300px;
        margin: auto;
      }

      .uni-country-item {
        display: flex;
        align-items: center;
        gap: 20px;
        background: #fff;
        text-decoration: none;
        margin-bottom: 2px;
        font-weight: 900;
        color: #000000;
        transition: transform 0.2s ease;
        padding: 9px 9px 9px 9px;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-radius: 10px 10px 10px 10px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
      }

      .uni-country-item img {
        width: 48px;
        height: 48px;
      }

      .uni-country-item:hover {
        transform: translateY(-3px);
      }
      .help-section {
        background: #4e9b78;
        padding: 60px 40px;
      }

      .help-container {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 10px;
        flex-wrap: wrap;
      }

      /* Video */
      .help-video video {
        width: 380px;
        height: 550px;
        object-fit: cover;
        border-radius: 10px;
      }

      /* Content */
      .help-content {
        max-width: 450px;
        text-align: center;
        color: #fff;
      }

      .help-content h2 {
        font-size: 55px;
        font-weight: 900;
        line-height: 60px;
        color: #ffffff;
        margin-bottom: 20px;
      }

      .help-content p {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.6;
        margin-bottom: 25px;
      }

      /* Button */
      .help-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        color: #333;
        padding: 12px 22px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
      }

      .help-btn span {
        background: #f4b400;
        color: #fff;
        border-radius: 50%;
        padding: 4px 8px;
      }

      .help-btn:hover {
        background-color: #2e2a5a;
        color: white;
        transform: translateY(-2px);
      }

      /* Image */
      .help-image img {
        width: 450px;
        max-width: 100%;
      }
      .testi-section {
        position: relative;
        padding: 140px 20px 80px;
        overflow: hidden;
        color: #fff;
      }

      /* SVG TOP SHAPE */
      .testi-top-shape {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
      }
       .testi-top-shape1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
      }

      .testi-top-shape svg {
        width: 100%;
        height: 107px;
        transform: translateX(0%) rotateY(180deg);
        fill: #fef4f2;
      }

      /* BACKGROUND */
      .testi-bg {
        position: absolute;
        inset: 0;
        background-image: url("../images/New-Zealand-e1751704019963.webp");
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 0;
      }

      /* OVERLAY */
      .testi-overlay {
        position: absolute;
        inset: 0;
        background: rgba(35, 30, 90, 0.85);
        z-index: 1;
      }

      /* SNOW */
      .testi-snow {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background-image:
          url("https://abroadedx.com/wp-content/uploads/ac_assets/blox_css_snow_bg/style1-snow1.png"),
          url("https://abroadedx.com/wp-content/uploads/ac_assets/blox_css_snow_bg/style1-snow2.png");
        animation: snowMove 20s linear infinite;
      }

      @keyframes snowMove {
        0% {
          background-position:
            0 0,
            0 0;
        }
        100% {
          background-position:
            1000px 1000px,
            700px 700px;
        }
      }

      /* CONTENT */
      .testi-container {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 1200px;
        margin: auto;
      }

      .testi-container h2 {
        font-size: 40px;
        font-weight: 900;
        margin-bottom: 50px;
      }
      .testi-wrapper {
        position: relative;
        display: flex;
        align-items: center;
      }

      /* viewport hides extra cards */
      .testi-viewport {
        padding-top: 40px;
        padding-bottom: 40px;
        overflow: hidden;
        width: 1200px; /* 4 cards only */
        margin: auto;
      }

      /* slider */
      .testi-slider {
        display: flex;
        gap: 20px;
        transition: transform 0.5s ease;
      }
      .testi-card {
        background: #fff;
        color: #333;
        padding: 20px;
        border-radius: 12px;
        width: 280px;
        flex-shrink: 0;
        text-align: center;
        position: relative;
      }

      /* buttons */
      .testi-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        z-index: 10;
      }

      .testi-btn.left {
        left: -20px;
      }
      .testi-btn.right {
        right: -20px;
      }

      .testi-btn:hover {
        background: #eee;
      }

      .testi-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: bold;
        margin: auto;
        margin-top: -40px;
      }

      .testi-time {
        font-size: 12px;
        color: #777;
      }

      .testi-stars {
        color: gold;
        margin: 8px 0;
      }

      .testi-text {
        font-size: 14px;
        height: 60px;
        overflow: hidden;
      }

      .read-more {
        font-size: 13px;
        color: #777;
        cursor: pointer;
      }
      .site-footer {
        position: relative;
        background-color: #302a5a;
        color: #fff;
        overflow: hidden;
      }

      /* Container */
      .footer-container {
        width: 1350px;
        margin: 0px auto;
        display: grid;
        padding: 60px 40px 20px;
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
      }

      /* Columns */
      .footer-col h3 {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 15px;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
      }

      .footer-col ul li {
        font-weight: 800;
        margin-bottom: 10px;
        font-size: 17px;
      }

      .footer-col ul li a {
        text-decoration: none;
        color: #ffffff;
        transition: 0.3s;
      }

      .footer-col ul li a:hover {
        color: #fff;
      }

      .footer-info {
        list-style: none;
        padding: 0;
      }

      .footer-info li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.5;
      }

      .footer-info i {
        color: #f4b400; /* accent color (yellow/orange like your design) */
        font-size: 20px;
        margin-top: 3px;
        min-width: 20px;
      }

      /* Bottom */
      .footer-bottom {
        position: relative;
        margin-top: 40px;
        padding: 0px 20px 40px; /* increased height */
        background-color: #302a5a;
        overflow: hidden;
      }

      /* Background Image */
      .footer-bottom-bg {
        position: absolute;
        bottom: 0; /* stick to bottom */
        left: 0;
        width: 100%;
        height: 100%;

        background-image: url("../images/page-title-copy.png");
        background-position: 0px 85px;
        background-repeat: no-repeat;
        background-size: 100% auto;
        z-index: 1;
      }

      /* Content */
      .footer-bottom-content {
        width: 1350px;
        margin: 0px auto;
        border-top: 1px solid #aaa;
        position: relative;
        padding: 10px 20px 20px;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        font-weight: 700;
        font-size: 20px;
        color: #fff;
      }

      .footer-social a {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-left: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 16px;
        transition: 0.3s;
      }

      .footer-social a:hover {
        background: #fff;
        color: #302a5a;
        transform: translateY(-3px);
      }
      .footer-logo {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .center-bg-section {
  position: relative;
  background-color: #FEF4F2;
  height: 200px; /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/study-broad-background.png");
  background-repeat: no-repeat;
    background-size: cover;
}

/* Content */
.center-bg-content {
  position: relative;
  z-index: 2;
  color: #302a5a;
}

.center-bg-content h2 {
  font-size: 60px;
    font-weight: 900;
    line-height: 60px;
}
.fc-info-section {
  padding: 80px 20px;
  background: #fff;
}

.fc-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.fc-content {
  flex: 1;
}

.fc-item {
  margin-bottom: 25px;
}
.fc-item h2{
    font-size: 40px;
    font-weight: 900;
    color: #302A5A;
}

.fc-item h3 {
  font-size: 30px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2a2550;
}

.fc-item p {
  margin-top: 8px;
  color: #000000;
  font-size: 18px;
}

.plus-divider {
  width: 100%;
  height: 10px;
  margin: 25px 0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M21.4,9.6h-7.1V2.6c0-0.9-0.7-1.6-1.6-1.6h-1.6c-0.9,0-1.6,0.7-1.6,1.6v7.1H2.6C1.7,9.6,1,10.3,1,11.2v1.6c0,0.9,0.7,1.6,1.6,1.6h7.1v7.1c0,0.9,0.7,1.6,1.6,1.6h1.6c0.9,0,1.6-0.7,1.6-1.6v-7.1h7.1c0.9,0,0.9,0,1.6-1.6v-1.6C23,10.3,22.3,9.6,21.4,9.6z'/%3E%3C/svg%3E");

  background-repeat: repeat-x;
  background-size: 10px;
  background-position: center;
}


.fc-video {
  flex: 1;
  align-self: flex-start; /* forces top alignment */
}
.fc-video video {
  width: 100%;
  border-radius: 12px;
}
.hero-uae {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../images/study-in-dubai-1.jpg');
  background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
}

/* Overlay */
.hero-uae::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(180, 210, 235, 0.75); /* light blue overlay */
}

/* Content */
.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: #2c2c54;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 30px;
}

/* Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #2c2c54;
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.hero-btn span {
  display: inline-block;
  background: orange;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
}

.hero-btn:hover {
  transform: translateY(-2px);
}
.why-uae {
  padding: 80px 20px;
  background: #ffffff;
}

.why-uae-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left */
.why-uae-left {
  flex: 1;
  max-width: 600px;
}

.why-uae-left h2 {
  font-size: 48px;
  font-weight: 800;
  color: #2c2c54;
  margin-bottom: 25px;
}

.why-uae-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* Right */
.why-uae-right {
  flex: 1;
  text-align: center;
}

.why-uae-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.courses-uae {
    position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/study-broad-background.png");
  background-repeat: no-repeat;
    background-size: cover;
  padding: 80px 20px;
}
/* Wrapper */
.courses-wrapper {
  position: relative;
  max-width: 1300px;
  margin: auto;
  text-align: center;
  z-index: 2;
}

.courses-wrapper h2 {
  font-size: 48px;
  font-weight: 800;
  color: #3b2f63;
  margin-bottom: 50px;
}

/* Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.course-card {
  background: #fff;
  padding: 40px 60px;
  border-radius: 15px;
  border: 1px solid #ddd;
  transition: 0.3s ease;
}

.course-card i {
  font-size: 50px;
  color: #4b3a78;
  margin-bottom: 15px;
}

.course-card p {
  font-size: 16px;
  font-weight: 500;
}

/* Hover */
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.testi-top-shape1 svg {
    width: 100%;
    height: 107px;
    transform: translateX(0%) rotateY(180deg);
    fill: #ffffff;
}
.faq-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

.faq-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.faq-left {
  flex: 1;
}

.faq-left h2 {
  font-size: 48px;
  color: #3b2f63;
  margin-bottom: 30px;
  font-weight: 800;
}

/* FAQ ITEM */
.faq-item {
  border: 2px solid #3b2f63;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.faq-question .icon {
  font-size: 20px;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 10px 0 20px;
  font-size: 15px;
  line-height: 1.7;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  content: "-";
}

/* RIGHT */
.faq-right {
  flex: 1;
}

.faq-right img {
  width: 100%;
  border-radius: 15px;
}
.uae-admission {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: #f4f4f4;
}

/* CLOUD BACKGROUND */
.cloud-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ue_clouds {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ue_clouds-1::before,
.ue_clouds-2::before,
.ue_clouds-3::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 500px;
  background-repeat: repeat-x;
}

/* Animations */
@keyframes cloud1 {
  to { background-position: -1000px 0; }
}
@keyframes cloud2 {
  to { background-position: -1000px 0; }
}
@keyframes cloud3 {
  to { background-position: -1579px 0; }
}

.ue_clouds-1::before {
  background-image: url("https://abroadedx.com/wp-content/uploads/ac_assets/clouds/style_2/style_1_cloud_2.png");
  animation: cloud1 20s linear infinite;
}

.ue_clouds-2::before {
  background-image: url("https://abroadedx.com/wp-content/uploads/ac_assets/clouds/style_2/style_1_cloud_1.png");
  animation: cloud2 15s linear infinite;
}

.ue_clouds-3::before {
  background-image: url("https://abroadedx.com/wp-content/uploads/ac_assets/clouds/style_2/style_1_cloud_3.png");
  animation: cloud3 17s linear infinite;
}

/* CONTENT */
.uae-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.uae-wrapper h2 {
  font-size: 42px;
  font-weight: 800;
  color: #3b2f63;
  margin-bottom: 60px;
}

/* GRID */
.uae-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.uae-col {
  flex: 1;
  text-align: left;
}

/* ITEMS */
.uae-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.tick {
  width: 30px;
  height: 30px;
  border: 2px solid #4CAF7D;
  color: #4CAF7D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.uae-item p {
  font-size: 16px;
  color: #222;
  line-height: 1.6;
}

/* Highlight (green text like screenshot) */
.uae-item p:hover {
  color: #2e8b57;
}
.ue_clouds-1::before,
.ue_clouds-2::before,
.ue_clouds-3::before {
  opacity: 0.2; /* softer */
  filter: brightness(1.2);
}
.career-section {
  width: 90%;
  margin: 60px auto;
  text-align: center;
}

.career-section h2 {
  font-size: 50px;
  font-weight: 900;
  color: #3b3561;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.career-container {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ccc;
}

/* Common box styling */
.career-box {
  width: 50%;
  padding: 40px;
  text-align: center;
}

.career-box h3 {
  font-size: 20px;
  text-decoration: underline;
  margin-bottom: 20px;
}

.career-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* Left box */
.career-box.left {
  background: #e8dfd9;
}

.cta-btn {
  margin-top: 25px;
  padding: 12px 25px;
  background: #3b3561;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  background: #2c2850;
}

/* Right box */
.career-box.right {
  background: #4e9c7c;
  color: white;
}

.career-box.right p {
  color: white;
}

.iyo-section {
  margin: 50px auto;
}

/* Heading */
.iyo-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.iyo-heading h2 {
  font-size: 28px;
  color: #2c2850;
  font-weight: 700;
}

/* VS Badge */
.iyo-badge {
  background: linear-gradient(180deg, #ff9a3c, #ff6a00);
  color: white;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
}

/* Text */
.iyo-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.iyo-subtext {
  margin-top: 20px;
  font-weight: 600;
  color: #222;
}

/* Table */
.iyo-table-wrapper {
  margin-top: 25px;
  overflow-x: auto;
}

.iyo-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background: white;
}

/* Header */
.iyo-table thead th {
  background: #4e9c7c;
  color: white;
  padding: 14px;
  font-size: 14px;
  border: 2px solid #222;
}

/* Body */
.iyo-table td {
  padding: 16px;
  border: 2px solid #222;
  font-size: 15px;
  color: #222;
}

/* First column (Feature) */
.iyo-table td:first-child {
  font-weight: 500;
}

/* Zebra optional (very subtle like design) */
.iyo-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.fc-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.fc-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

/* SVG ICON */
.fc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%234A9C76' d='M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z'/%3E%3C/svg%3E");
  
  background-size: contain;
  background-repeat: no-repeat;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .iyo-section {
    width: 95%;
    margin: 30px auto;
  }

  /* Heading */
  .iyo-heading h2 {
    font-size: 20px;
  }

  .iyo-badge {
    font-size: 12px;
    padding: 4px 8px;
  }

  /* Text */
  .iyo-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .iyo-subtext {
    font-size: 14px;
  }

  /* TABLE FIX */
  .iyo-table-wrapper {
    overflow-x: auto;   /* enable horizontal scroll */
    -webkit-overflow-scrolling: touch;
  }

  .iyo-table {
    min-width: 600px;   /* prevents squishing */
  }

  .iyo-table th,
  .iyo-table td {
    font-size: 13px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .career-container {
    flex-direction: column;
  }

  .career-box {
    width: 100%;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .uae-grid {
    flex-direction: column;
    gap: 30px;
  }

  .uae-wrapper h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .uae-wrapper h2 {
    font-size: 26px;
  }

  .uae-item p {
    font-size: 14px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .faq-left h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .faq-left h2 {
    font-size: 28px;
  }
}
/* Tablet */
@media (max-width: 992px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses-wrapper h2 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }

  .courses-wrapper h2 {
    font-size: 28px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .why-uae-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .why-uae-left {
    max-width: 100%;
  }

  .why-uae-left h2 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .why-uae {
    padding: 60px 15px;
  }

  .why-uae-left h2 {
    font-size: 28px;
  }

  .why-uae-left p {
    font-size: 14px;
    line-height: 1.6;
  }

  .why-uae-right img {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-uae {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .fc-container {
    flex-direction: column;
  }
}
      /* Responsive */
      @media (max-width: 1000px) {
        .footer-container {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 600px) {
        .footer-container {
          grid-template-columns: 1fr;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 10px;
        }
      }

      /* Responsive */
      @media (max-width: 900px) {
        .help-container {
          flex-direction: column;
          text-align: center;
        }

        .help-video video {
          width: 100%;
          height: auto;
        }
      }
      /* RESPONSIVE */
      @media (max-width: 768px) {
        .timeline-card {
          padding: 40px 20px;
        }

        .timeline-content {
          font-size: 16px;
        }

        .timeline-icon {
          width: 40px;
          height: 40px;
          font-size: 16px;
        }

        .timeline-card:nth-child(odd),
        .timeline-card:nth-child(even) {
          padding-left: 60px;
          padding-right: 60px;
        }

        .timeline-card:nth-child(even) {
          justify-content: flex-start;
          text-align: left;
        }

        .timeline-card:nth-child(even) .timeline-icon {
          left: 0;
          right: auto;
        }

        .timeline-card:nth-child(even)::before {
          left: 25px;
          right: auto;
          border-width: 4px 0 4px 4px;
          border-radius: 30px 0 0 30px;
        }
      }
      @media (max-width: 992px) {
        .easy-container {
          flex-direction: column;
        }

        .easy-heading {
          font-size: 32px;
        }

        .student-image img {
          height: 120px;
        }

        .circle-image img {
          width: 250px;
        }
      }
      /* KEYFRAMES */
      @keyframes scroll-left {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-33.333%);
        }
      }

      @keyframes scroll-right {
        0% {
          transform: translateX(-33.333%);
        }
        100% {
          transform: translateX(0);
        }
      }

      /* ================= MOBILE ================= */
      @media (max-width: 768px) {
        .hero {
          height: auto;
          padding: 60px 20px;
        }

        .hero-content h1 {
          font-size: 40px;
        }
      }
      @media (max-width: 768px){
  .search-box{
    display: none;
  }
  .topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 15px;
    gap: 10px;
  }

  /* Row 1 */
  .top-left {
    width: 100%;
    justify-content: space-between;
  }

}

      /* ================= MOBILE ================= */

      /* ===== MOBILE NAVBAR FIX ===== */
@media (max-width: 768px){

  .menu{
    display: none;
  }

  .navbar{
    padding: 10px 15px;
    position: relative;
  }

  .logo img{
    width: 140px;
    height: 75px;
  }

  .login-btn{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    padding: 8px 14px;
  }

  .hamburger{
    position: absolute;
    right: 20px;
        top: 30px;
        width: 35px;
        height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .hamburger span{
    height: 3px;
    background: #000;
  }
}

/* ===== DRAWER ===== */
.mobile-drawer{
  position: fixed;
  top: 0;
  right: -101%;
  width: 100vw;
  height: 100%;
  background:#f7f2f2;
  z-index: 9999;
  transition: 0.4s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-drawer.active{
  right: 0;
}

/* HEADER */
.drawer-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.close-btn{
  font-size: 40px;
  cursor: pointer;
}

/* MENU */
.drawer-menu{
  list-style: none;
  padding: 0;
}

.drawer-menu li{
  margin-bottom: 15px;
}

/* LINKS */
.drawer-link{
    font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

/* SUBMENU */
.drawer-sub{
  display: none;
  padding-left: 15px;
  margin-top: 10px;
}

.drawer-sub li a{
    text-decoration: none;
    color: #000;
  font-size: 16px;
  margin-bottom: 8px;
}
.drawer-link a{
    color: #000;
    text-decoration: none;
  font-size: 18px;
  margin-bottom: 8px;
}

/* OVERLAY */
.drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.drawer-overlay.active{
  opacity: 1;
  visibility: visible;
}
      @media (max-width: 768px) {
  .study-dropdown {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .mega-dropdown {
    display: none !important;
  }
}