
      * {
        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: 1000px;
  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: 10px;
  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;
}

.study-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;

  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;
}

/* 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: 90px;
        height: 80px;
      }

      /* 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 {
        padding: 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;
}
.visa-section {
    width: 1300px;
    margin: 0px auto;
  padding: 20px;
}

/* HERO */
.visa-hero {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
  align-items: center;
}

.visa-hero-left {
  width: 30%;
}

.visa-hero-left h1 {
  font-size: 45px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 60px;
    color: #302A5A;
}

.breadcrumb {
  display: inline-block;
  margin: 10px 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 12px;
}
.heading h2{
    font-size: 50px;
    font-weight: 700;
    color: #302A5A;
}
.sub-heading {
    font-size: 22px;
    font-weight: 600;
    text-decoration: underline;
    color: #000000;
  font-weight: bold;
  margin-top: 10px;
}
.sub-heading-text{
     font-size: 18px;
    font-weight: 600;
}

/* IMAGE STRIP */
.visa-hero-right {
  width: 70%;
  display: flex;
  gap: 10px;
}

.visa-hero-right img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* TABLE */
.visa-table {
    width: 70%;
  margin-top: 20px;
}

.visa-table table {
  width: 100%;
  border-collapse: collapse;
}

.visa-table th {
  background: #4e8f73;
  border: 2px solid black;
  color: white;
  padding: 12px;
}

.visa-table td {
  border: 2px solid black;
  padding: 12px;
}

/* TABS */
.visa-tabs {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.tabs-left {
  width: 17%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-btn {
     font-family: "Nunito", sans-serif;
  padding: 15px;
  background: #5fa382;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
}

.tab-btn.active {
  background: black;
}

.tabs-right {
  height: fit-content;
     font-family: "Nunito", sans-serif;
  width: 51%;
  background: #f4efec;
  padding: 20px;
  border-radius: 10px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* CTA */
.visa-cta {
     font-family: "Nunito", sans-serif;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content:left;
  gap: 20px;
  text-align: center;
}
/* hide all tables */
.table-content {
  display: none;
}

/* show active */
.table-content.active {
  display: block;
  margin-top: 20px;
}

/* spacing */
.visa-table-wrapper {
  margin-top: 20px;
}
.visa-cta h3 {
    text-decoration: underline;
  font-size: 20px;
  margin-bottom: 15px;
}

.cta-btn {
    margin-top: 0px;
  display: inline-block;
  background: #4e8f73;
  color: white;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.footer-logo img{
  width: 200px;
}
/* MAIN WRAPPER */
.abx-premium-wrapper {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

/* LEFT */
.abx-premium-left {
  width: 45%;
  border-radius: 12px;
}

/* RIGHT */
.abx-premium-right {
  width: 55%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* IFRAME */
.abx-premium-right iframe {
  width: 100%;
  height: 700px;
  border: none;
}
/* SECTION BACKGROUND */
.abx-control-section {
  padding: 30px 20px;
}

/* CONTAINER */
.abx-control-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.abx-control-image {
  width: 50%;
}

.abx-control-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* CONTENT */
.abx-control-content {
  width: 50%;
}

.abx-control-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #2d2a5a;
  margin-bottom: 20px;
}

.abx-control-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
.abx-currency-section {
  padding: 40px 20px;
  background: #f5f1ef;
}
.abx-currency-section h2{
   width: 80vw;
  margin: 0px auto;
  font-size: 35px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 60px;
    color: #302A5A;
}
.currency-text{
   width: 80vw;
  margin: 20px auto;
}
.bg-greenn{
  background-color: #4A9C76;
  padding: 60px 40px
}
.bg-green-text{
  text-align: center;
  font-size: 45px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 60px;
    color: #FFFFFF;
}

/* GRID */
.abx-currency-grid {
   width: 80vw;
  margin: 0px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.abx-currency-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(25 25 25 / 42%);
}

.abx-currency-card img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.abx-currency-card h4 {
  margin: 0;
  font-size: 15px;
}

.abx-currency-card p {
  margin: 2px 0 0;
  color: #777;
  font-size: 14px;
}

/* NOTE */
.abx-note {
  width: 80vw;
  margin: 40px auto;
  color: #8a2c5d;
  font-size: 14px;
}

/* CONVERTER */
.abx-converter-box {
  width: 80vw;
  margin: 0px auto;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.abx-converter-header {
  background: #c8d8b8;
  padding: 12px 15px;
  font-weight: 600;
}

.abx-converter-body {
  padding: 10px;
}

/* IFRAME */
.abx-converter-body iframe {
  width: 100%;
  height: 320px;
}
.abx-offerings-section {
  background: #3b3566;
  padding: 70px 20px;
  text-align: center;
}

.abx-offerings-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.abx-offerings-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* GRID */
.abx-offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.abx-offer-card {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 35px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.abx-offer-card img {
  width: 60px;
  margin-bottom: 20px;
}

.abx-offer-card p {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* HOVER EFFECT */
.abx-offer-card:hover {
  background: #fff;
  transform: translateY(-5px);
}

.abx-offer-card:hover p {
  color: #3b3566;
}
.flex-content{
  padding: 60px 10px;
  display: flex;
  gap: 50px;
}
.heading h3{
  color: #3b3566;
  font-size: 20px;
  font-weight: 800;
}
.countries-section {
  padding: 30px 15px;
}

.countries-section .container {
  max-width: 1250px;
  margin: auto;
}

/* GRID */
.countries-section .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Desktop like your design */
  gap: 20px;
}

/* CARD */
.countries-section .card {
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.countries-section .card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.countries-section .card p {
  margin: 10px 0 14px;
  color: #000000;
    font-size: 19px;
    font-weight: 700;
    font-style: normal;
}

/* HOVER */
.countries-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.countries-section .card:hover img {
  transform: scale(1.08);
}
.usa-section {
  background: #f3ebe7;
  padding: 60px 20px;
}

.usa-section .container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #2d2a63;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* GRID */
.usa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.usa-card {
  background: transparent;
  border: 1px solid #d8ccc6;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  min-height: 220px;
}

/* ICON */
.usa-card .icon {
  width: 50px;
  height: 50px;
  border: 3px solid #2bb673;
  color: #2bb673;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* TEXT */
.usa-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.usa-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.usa-university-section {
  background: #ffffff;
  padding: 60px 20px;
}

.usa-university-section  .container {
  max-width: 1200px;
  margin: auto;
}

/* LAYOUT */
.usa-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.usa-left {
  flex: 1;
}

.usa-right {
  flex: 1;
  overflow: hidden;
}

/* TEXT */
.usa-university-section h2 {
  font-size: 38px;
  font-weight: 800;
  color: #2d2a63;
  margin-bottom: 20px;
}

.intro {
  font-size: 15px;
  line-height: 40px;
  margin-bottom: 20px;
}

.uni h4 {
  margin-top: 15px;
  font-size: 16px;
}

.uni ul {
  padding-left: 18px;
  font-size: 14px;
}

/* LOGO SCROLLER */
.logo-row {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 20px;
}

.logo-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 60px;
  object-fit: contain;
}

/* ANIMATION */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* LEFT TO RIGHT */
.scroll-left .logo-track {
  animation-direction: normal;
}

/* RIGHT TO LEFT */
.scroll-right .logo-track {
  animation-direction: reverse;
}
.cost-clean-section{
  background: #f3ebe7;
}
.cost-clean {
  max-width: 1250px;
  padding: 20px 10px;
  margin: 0px auto;
  background: #f3ebe7;
}

/* HEADING */
.cost-clean h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2d2a63;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* SUBHEADINGS */
.cost-clean h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #000;
}

.cost-clean h5 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

/* TEXT */
.cost-clean p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* LIST */
.cost-clean ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.cost-clean ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* NOTE */
.cost-clean .note {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}
.uk-courses {
  background: #f3ebe7;
  padding: 60px 20px;
}

.uk-courses .container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.uk-title {
  font-size: 40px;
  font-weight: 800;
  color: #2d2a63;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* INTRO */
.uk-intro p {
  font-size: 15px;
  margin-bottom: 10px;
}

.uk-intro ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.uk-intro li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* GRID */
.uk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.uk-card {
  border: 1px solid #d8ccc6;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  background: transparent;
  transition: 0.3s;
}

.uk-card .icon {
  font-size: 40px;
  color: #4b3c88;
  margin-bottom: 10px;
}

.uk-card p {
  font-size: 15px;
  font-weight: 500;
}

/* HOVER */
.uk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.uk-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}

.uk-card .icon svg {
  width: 100%;
  height: 100%;
  fill: #4b3c88; /* purple like your UI */
}

.signup-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  background-image: url("../images/login-bg.jpeg");
    background-position: center center;
    background-size: cover;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
/* WHITE OVERLAY */
.signup-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background:rgb(255 255 255 / 65%);
  top: 0;
  left: 0;
}

/* MAIN CARD */
.signup-container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 950px;
  background: #fff;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* LEFT SIDE */
.signup-left {
  width: 60%;
  position: relative;
  padding: 30px 40px;
  background-image: url("../images/sign-board-2.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
  color: #000;
}

.left-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
}

.left-content {
  position: relative;
  z-index: 2;
}

.logo1 {
  width: 140px;
  margin-bottom: 20px;
}

.signup-left p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.uni-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.uni-logos img {
  width: 140px;
}

/* RIGHT SIDE */
.signup-right {
  background-color: #FEF4F2;
  width: 40%;
  padding: 20px 20px;
  text-align: center;
}

.signup-right h2 {
  font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 60px;
    color: #302A5A;
  margin-bottom: 25px;
}

.signup-right input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 25px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.signup-right button {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: #2b2b5e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.signup-right button:hover {
  opacity: 0.9;
}

.login-link {
  display: block;
    text-align: left;
    margin-top: 35px;
    font-size: 12px;
    color: #2b2b5e;
}
.geo-section {
  padding: 0px;
}

/* TABS */
.geo-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.geo-section h2{
  font-size: 45px;
    font-weight: 900;
    line-height: 60px;
    color: #302A5A;
    margin-bottom: 40px;
}

.geo-tab img {
  width: 18px;
  height: auto;
  border-radius: 2px;
}

.geo-tab {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #000000;
  background: #fff;
  cursor: pointer;
}

.geo-tab.active {
  background: #ffffff;
  color: #000000;
}

/* GRID */
.geo-grid {
  padding: 20px;
  border-radius: 10px;
  background-color: #FEF4F2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.geo-card {
  position: relative;
  cursor: pointer;
}

.geo-card img {
  width: 100%;
  border-radius: 12px;
}

.geo-label {
  position: absolute;
  bottom: 30px;
  left: 45px;
  background: #fff;
  color: #302A5A;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 15px;
}

/* MODAL */
.geo-modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.geo-modal__box {
  width: 800px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.geo-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* MODAL CONTENT */
.geo-modal__content {
  display: flex;
  gap: 20px;
}

.geo-modal__left,
.geo-modal__right {
  width: 50%;
}

.geo-modal__left input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.geo-modal__left button {
  width: 100%;
  padding: 10px;
  background: #2b2b5e;
  color: #fff;
  border: none;
}
.progress-section {
  position: relative;
  padding: 80px 20px;
  color: #2b2b5e;

  /* BG IMAGE + GRADIENT */
 background-image: url("../images/our-team-bg-web.png");
 background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

/* CONTENT */
.progress-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.progress-title {
  font-size: 45px;
    font-weight: 900;
    color: #302A5A;
  margin-bottom: 50px;
}

/* GRID */
.progress-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.progress-card img {
  width: 60px;
}

.progress-card h3 {
  font-size: 40px;
    font-weight: 700;
    color: #000;
  margin: 10px 0;
}

.progress-card h4 {
  font-size: 30px;
  font-weight: 700;
  color: #2a8f6f;
}

.progress-card p {
  font-size: 16px;
  color: #2f2f2f;
  font-weight: 600;
  line-height: 1.6;
}
.edx-booking {
  padding: 30px 20px;
}

.edx-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.edx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

/* TITLES */
.edx-title {
  font-size: 45px;
  font-weight: 900;
  color: #2c2850;
  margin-bottom: 30px;
}

/* STEPS */
.edx-step-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.edx-step-icon {
  font-size: 22px;
  color: #2aa876;
}

/* HELP */
.edx-subtext {
  margin-bottom: 20px;
}

.edx-help-wrap {
  display: flex;
  gap: 20px;
}

.edx-help-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.edx-help-icon {
  font-size: 20px;
}

/* LOGOS */
.edx-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.edx-logos img {
  height: 40px;
  object-fit: contain;
}

/* CTA */
.edx-cta {
  margin-top: 40px;
  display: flex;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid black;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.516);
}

.edx-cta-text {
  padding: 30px;
  flex: 1;
}

.edx-cta-text h3 {
  font-size: 45px;
  font-weight: 900;
  color: #2c2850;
  margin-bottom: 10px;
}

.edx-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #f1f1f1;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.edx-cta-img img {
  width: 320px;
  height: 100%;
  object-fit: cover;
}
/* ===== COMMON ===== */
.cu-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HERO ===== */
.cu-hero {
  background: #f4f4f6;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.cu-hero .cu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.cu-left h1 {
  font-size: 40px;
  color: #2f2c6a;
  margin-bottom: 15px;
}

.cu-breadcrumb {
  display: inline-block;
  background: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* RIGHT IMAGE */
.cu-right img {
  width: 200px;
}

/* SECTION */
.cu-info {
  padding: 60px 20px;
  background: #f7f7fb;
}

/* CONTAINER */
.cu-container {
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.cu-info-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e0e0e0;
}

/* CARD */
.cu-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid #e0e0e0;
  transition: 0.3s;
  background: #fff;
}

.cu-card:last-child {
  border-right: none;
}

/* ICON */
.cu-icon {
  font-size: 40px;
  color: #2f8f5b;
  margin-bottom: 15px;
}

.cu-icon i {
  transition: 0.3s;
}

/* TITLE */
.cu-card h3 {
  color: #2f2c6a;
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 1px;
}

/* TEXT */
.cu-card p {
  color: #333;
  font-size: 15px;
}

/* HOVER */
.cu-card:hover {
  background: #f0f4ff;
}

.cu-card:hover .cu-icon i {
  transform: scale(1.2);
  color: #ff9800;
}
/* ===== SECTION ===== */
.contact-sec {
  background: #f4f4f6;
  padding: 60px 0;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  color: #2f2c6a;
  margin-bottom: 10px;
}

.contact-header p {
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* ===== BOX ===== */
.contact-box {
  display: flex;
  background: #e9e4e1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== LEFT FORM ===== */
.contact-form-area {
  flex: 1;
  padding: 40px;
}

.contact-form-area h3 {
  color: #2f2c6a;
  margin-bottom: 20px;
}

/* INPUTS */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form-area input,
.contact-form-area select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  background: #fff;
  outline: none;
}

/* SINGLE INPUT */
.contact-form-area > form > input {
  width: 100%;
  margin-bottom: 15px;
}

/* CHECKBOX */
.checkbox {
  margin: 10px 0;
}

/* TERMS */
.terms {
  font-size: 13px;
  color: #333;
  margin-bottom: 20px;
}

/* BUTTON */
.contact-form-area button {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-area button:hover {
  background: #333;
}

/* ===== MAP ===== */
.contact-map {
  flex: 1;
  min-height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .contact-box {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-map {
    height: 300px;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .cu-info-wrap {
    grid-template-columns: 1fr;
  }

  .cu-card {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .cu-card:last-child {
    border-bottom: none;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .cu-hero .cu-container {
    flex-direction: column;
    text-align: center;
  }

  .cu-right img {
    margin-top: 20px;
  }

  .cu-info-wrap {
    flex-direction: column;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .edx-grid {
    grid-template-columns: 1fr;
  }

  .edx-help-wrap {
    flex-direction: column;
  }

  .edx-cta {
    flex-direction: column;
  }

  .edx-cta-img img {
    width: 100%;
    height: 200px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .progress-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .progress-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .progress-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media(max-width:768px){
  .geo-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .geo-modal__content {
    flex-direction: column;
  }

  .geo-modal__box {
    width: 90%;
  }
}
/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

  .signup-container {
    flex-direction: column;
  }

  .signup-left {
    width: 100%;
    padding: 25px;
    text-align: center;
  }

  .signup-right {
    width: 100%;
    padding: 30px 20px;
  }

  .logo1 {
    margin: 0 auto 15px;
  }

  .signup-left p {
    font-size: 13px;
  }

  .uni-logos {
    justify-content: center;
  }

  .uni-logos img {
    width: 60px;
  }

}

/* ========================= */
/* 📲 SMALL MOBILE */
/* ========================= */

@media (max-width: 480px) {

  .signup-right h2 {
    font-size: 18px;
  }

  .signup-right input {
    padding: 10px;
    font-size: 13px;
  }

  .signup-right button {
    padding: 10px;
    font-size: 14px;
  }

  .signup-left {
    padding: 20px;
  }

}

/* ================= */
/* 📱 RESPONSIVE */
/* ================= */

/* Tablet */
@media (max-width: 992px) {
  .uk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .uk-title {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .uk-grid {
    grid-template-columns: 1fr;
  }

  .uk-title {
    font-size: 24px;
  }

  .uk-card {
    padding: 20px;
  }

  .uk-card .icon {
    font-size: 32px;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .cost-clean h2 {
    font-size: 28px;
  }

  .cost-clean p,
  .cost-clean ul li {
    font-size: 14px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .usa-wrapper {
    flex-direction: column;
  }

  .usa-left h2 {
    font-size: 28px;
  }

  .logo-track img {
    height: 50px;
  }
}

@media (max-width: 600px) {
  .logo-track img {
    height: 40px;
  }
}

/* ===================== */
/* 📱 RESPONSIVE */
/* ===================== */

/* Tablet */
@media (max-width: 992px) {
  .usa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .usa-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .usa-card {
    padding: 20px;
  }
}

/* ========================= */
/* 📱 TABLET */
@media (max-width: 992px) {
  .countries-section .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .countries-section {
    padding: 20px 10px;
  }

  .countries-section .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .countries-section .card img {
    height: 110px;
  }

  .countries-section .card p {
    font-size: 14px;
  }
}

/* 📱 SMALL MOBILE */
@media (max-width: 380px) {
  .countries-section .grid {
    grid-template-columns: 1fr;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .abx-offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flex-content{
  flex-direction: column;
  
}
}

@media (max-width: 500px) {
  .abx-offerings-title {
    font-size: 26px;
  }

  .abx-offerings-grid {
    grid-template-columns: 1fr;
  }
}
/* MOBILE */
@media (max-width: 992px) {
  .abx-currency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .abx-currency-grid {
    grid-template-columns: 1fr;
  }
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .abx-control-container {
    flex-direction: column;
    gap: 30px;
  }

  .abx-control-image,
  .abx-control-content {
    width: 100%;
  }

  .abx-control-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .abx-control-content p {
    text-align: center;
  }
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .abx-premium-wrapper {
    flex-direction: column;
  }

  .abx-premium-left,
  .abx-premium-right {
    width: 100%;
  }

  .abx-premium-right iframe {
    height: 600px;
  }
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .visa-hero {
  align-items:flex-start;
}

  .visa-section {
    padding: 20px;
  }
  .heading{
    width: 90vw;
  }
  .visa-section {
    width: 100vw;}

  /* HERO STACK */
  .visa-hero {
    flex-direction: column;
  }

  .visa-hero-left,
  .visa-hero-right {
    width: 90vw;
  }

  /* IMAGE SCROLL */
  .visa-hero-right {
    overflow-x: auto;
  }

  .visa-hero-right img {
    width: 90vw;
  }

  /* TABLE SCROLL */
  .visa-table table {
    display: block;
    overflow-x: auto;
  }
  .visa-table {
    width: 100%;
  }
  .site-footer{
    width: 100vw;
  }
  .sub-heading{
    width: 90vw;
  }
  .footer-container{
    width: 100vw;
  }

  /* TABS MOBILE */
  .visa-tabs {
    flex-direction: column;
  }
  .footer-bottom-bg {
    background-position: bottom;
  }
  .footer-bottom-content {
    gap: 20px;
    width: 80vw;
  }
  .footer-logo {
    margin-bottom: 0px;
  }
  .footer-bottom {
    margin-top: 0px;
  }
  .footer-col{
    width: 80vw;
  }
  .footer-info {
    width: 80vw;}

  .tabs-left {
    width: 90vw;
    overflow-x: auto;
  }

  .tab-btn {
    min-width: 200px;
    text-align: center;
  }

  .tabs-right {
    width: 100%;
  }

  /* CTA */
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
/* ================= 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;
  }
  .marquee-section {
       margin-top: -315px;
    background-size: 180% 100%;
}
.easy-study-section {
    margin-top: -275px;
    padding-top: 200px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
}
.testi-top-shape {
    top: -6px;
}
.testi-top-shape1 {
     top: -6px;}
}
@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-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 {
      height: 70vh;
    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-end;
        }

        .timeline-card:nth-child(even) .timeline-icon {
          right: 10px;
        }

        .timeline-card:nth-child(even)::before {
        left: 190px;
        rotate: 180deg;
          border-width: 4px 0 4px 4px;
          border-radius: 30px 0 0 30px;
        }
      }
      @media (max-width: 992px) {
        .easy-container {
            gap: 0px;
          flex-direction: column;
        }

        .easy-heading {
          font-size: 32px;
        }

        .student-image img {
          height: 120px;
        }

        .circle-image img {
          width: 400px;
        }
      }
      /* 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 {
          background-position: -299px 173px;
        background-repeat: no-repeat;
        background-size: 1000px auto;
          padding: 60px 20px;
        }

        .hero-content h1 {
          font-size: 40px;
          font-weight: 900;
        }
      }
      @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: 120px;
        height: 90px;
    }


  .login-btn{
    position: absolute;
    left: 56%;
    transform: translateX(-50%);
    font-size: 12px;
    padding: 8px 14px;
  }

  .hamburger{
    position: absolute;
    right: 20px;
        top: 43px;
        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;
}
/* SERVICES DROPDOWN */
.services-dropdown {
  position: absolute;
  top: 60px;
  left: 0;
  width: 650px;
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
  z-index: 999;
}

/* SHOW ON HOVER */
.services-menu:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* LEFT */
.services-left {
  width: 45%;
  padding: 10px;
  background: #f8f9fc;
}

.services-item {
  padding: 5px 20px;
  border-radius: 8px;
  font-weight: 900;
  color: #302A5A;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

/* ICON STYLE */
.services-item::before {
  content: "";
  position: absolute;
  left:0px;
  top: 8px;
  width: 12px;
  height: 12px;

  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;
  margin-right: 10px;
  font-weight: bold;
}
/* RIGHT IMAGE */
.services-right {
  width: 55%;
  background: #eef3f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-right img {
  width: 100%;
  object-fit: contain;
}
/* 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) {
        .uni-heading {
    text-align: center;
    font-size: 40px;
  }
  .section-heading {
    font-size: 45px;
  }
  .study-dropdown {
    display: none !important;
  }
  .services-dropdown{
    display: none;
  }
}
/* WhatsApp Button */
.whatsapp-float {
    text-decoration: none !important;
  position: fixed;
  right: 20px;
  bottom: 10px;
   width: 65px;
  height: 65px;
  background-color: #25D366;
  color: #fff;
  font-size: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* Scroll To Top */
.scroll-top-right {
    text-decoration: none !important;
  position: fixed;
  left: 20px;
  bottom: 10px;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, .4);
    color: #fff;
  font-size: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: 0.3s;
}

.scroll-top-right:hover {
  background: #333;
}
.announcement-bar{
    width:100%;
    background:#2f2b5c;
    overflow:hidden;
    padding:12px 0;
    position:relative;
    z-index:99999;
}

.announcement-track{
    display:flex;
    gap:80px;
    width:max-content;
    animation:marquee 30s linear infinite;
}

.announcement-track span{
    color:#fff;
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
}

@keyframes marquee{

    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(-100%);
    }

}
@media (max-width: 768px) {
  .mega-dropdown {
    display: none !important;
  }
  .fc-content {
    width: 90vw;}
    .top-left a {
        font-size:12px;
    }
    .top-right {
    justify-content: center;
        
    }
    .tabs-left {
    width: 100% !important;
}
.visa-hero-left h1 {
    font-size: 40px;}
.tabs-right {
    width: 100% !important;
}
  .course-card {
    padding: 30px 40px;
  }
  .career-section h2 {
    font-size: 32px;}
}