 :root {
      --primary: #000038;
      --secondary: #FF7A00;
      --white: #ffffff;
      --gray: #f4f4f4;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--white);
      color: var(--primary);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    h1, h2, h3 {
      font-weight: 700;
    }
      

    /* -------------------- HERO VIDEO -------------------- */
    .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
    }

    .bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 90%;
    object-fit: cover;
    z-index: 1;
    }

    /* Glass overlay sits directly on top of video */
    .glass-overlay {
    position: relative;
    z-index: 2;
    margin-top: -3vw;
    background: rgba(255, 255, 255, 0.15); /* semi-transparent white */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,56,0.3);
    }

    .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
    }

    .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 25px;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
    }

    .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }

    .cta-buttons a {
    text-decoration: none;
    color: white;
    background-color: #43092d;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    user-select: none;
    }

    .cta-buttons a:hover {
    background-color: white;
    color: #ff6600;
    border: 2px solid #ff6600;
    box-shadow: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
    .glass-overlay {
        padding: 25px 20px;
        max-width: 90%;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    }

    /* -------------------- OVERVIEW -------------------- */
    /* Overview Section */
    .overview {
    background-color: #f8f9fa;
    padding: 80px 5%;
    margin-top: -5vw;
    }

    .overview-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    }

    .overview-text {
    flex: 1;
    min-width: 320px;
    }

    .overview-text h2 {
    font-size: 2.8rem;
    color: #000038;
    margin-bottom: 20px;
    }

    .overview-text p {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
    }

    .key-points {
    margin-top: 25px;
    padding-left: 0;
    list-style: none;
    }

    .key-points li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #000038;
    }

    .key-points i {
    color: #ff6600;
    margin-right: 8px;
    }

    /* Video styling */
    .overview-video {
    flex: 1;
    min-width: 320px;
    }

    .video-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 56, 0.25);
    transition: transform 0.4s;
    }

    .video-box:hover {
    transform: scale(1.02);
    }

    .video-box video {
    width: 100%;
    height: 50vh;
    display: block;
    background-color: #103561;
    }

    /* Responsive */
    @media (max-width: 992px) {
    .overview-container {
        flex-direction: column;
        gap: 40px;
    }

    .overview-text h2 {
        font-size: 2.2rem;
    }
    }


    /* -------------------- DETAILS -------------------- */
    .details {
      padding: 60px 5%;
      text-align: center;
    }

    .details h2 {
      font-size: 2.8rem;
      margin-bottom: 40px;
    }

    .detail-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .card {
      background: var(--primary);
      color: var(--white);
      padding: 30px;
      width: 400px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card img {
      width: 60px;
      margin-bottom: 15px;
    }

    /* -------------------- REQUIREMENTS -------------------- */
    /*--------ACCREDENTIONS section----------*/
    .acc-req{
        background-color: #010144;
        padding: 10px 20px;
        margin: 0 auto;
    }
    .req{
        font-size: 2rem;
        background-color: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
        padding: 20px 40px;
        color: #000238;
        width: auto;
        text-align: center;
        margin-top: 2vw;

    }
    .icon-flashcards-section {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        font-weight: 600;
        margin: 20px 0;
    }

    .icon-flashcard {
        margin-top: 3vw;
        background-color: #ffffff;
        padding: 30px;
        width: 45%;
        text-align: left;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .flashcard-icon {
        margin-top: -5vw;
        width: 80px; /* Adjust the size of the icon */
        height: 80px; /* Adjust the size of the icon */
        margin-bottom: 15px;
        z-index: 1;
    }

    .icon-flashcard h3 {
        margin-top: -2vw;
        background-color: #010144;
        color: #ffffff;
        padding: 20px 15px;
        width: 100%;
        margin-bottom: 15px;
    }
    .icon-flashcard ul{
        text-align: left;
        margin-left: 1vw;
    }
    .icon-flashcard li{
        line-height: 1.7;
    }
    .icon-flashcard p{
        color: #000;
    }
    @media screen and (max-width: 768px) {
        .acc-req .req{
            margin-left: 4vw;
            text-align:center;
            width: 90%;
            padding: 10px 20px;
            font-size: 20px;
        }
        .icon-flashcards-section {
            text-align: center;
            flex-direction: column;
            align-items: center;
        }

        .icon-flashcard {
            width: 90%;
            margin-bottom: 20px;
        }
        .icon-flashcard h3{
            text-align: center;
        }
    }

    /*-------slider part-------------*/
    .slider-section {
        padding: 20px;
        background-color: #010144;
        text-align: center;
    }

    .slider-heading {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #ffffff;
        text-align: left;
        border: 1px solid white;
        padding: 10px 20px;
        width: 450px;
    }

    .logo-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .logo-track {
        display: flex;
        animation: scroll 20s linear infinite;
    }

    .logo-track img {
        height: 100px; /* Adjust this to your desired logo size */
        margin-right: 20px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    @media screen and (max-width: 768px) {
        .slider-heading {
    
        font-size: 18px;
        text-align: left;
        width: 95%;
    }
    }
    /*----------------------structure section--------------------------*/

.course-structure h1 {
  text-align: center;
  color: #010144;
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}
/* ---------------- Course Structure Section ---------------- */
.course-structure {
    padding: 50px 5%;
    background-color: #fff;
}

.course-structure h1 {
    text-align: center;
    color: #010144;
    margin-bottom: 30px;
    font-size: 2.8rem;
}

/* ---------------- Cards Container ---------------- */
.cards-container {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    font-weight: 600;
}
/* ---------------- Course Cards ---------------- */
.course-card {
    background-color: #ffffff;
    border-radius: 20px; 
    padding: 20px;
     width: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

/* ---------------- Headings ---------------- */
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 56, 0.3);
}

.course-card h3 {
  background-color: #000038;
  color: #fff;
  padding: 15px;
  margin: -23px -23px 20px -23px;
  border-radius: 20px 20px 0 0;
  font-size: 1rem;
  text-align: left;
}



/* ---------------- Table Styling ---------------- */
.course-card table {
  width: 100%;
  border-collapse: collapse;
}

.course-card table td {
  padding: 8px 10px;
  border-bottom: 1px solid #c5c5c5;
  color: #333;
  font-weight: 600;
}

.course-card table td:first-child {
  width: 40%;
  color: #000038;
}

.course-card table tr:last-child td {
  border-bottom: none;
}
/* ---------------- Divider ---------------- */
.divider {
    width: 100%;
    text-align: center;
    margin: 60px 0 30px;
    position: relative;
}

.divider span {
    background-color: #000038;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: #ccc;
    z-index: 1;
}

/* Brochure Button */
.brochure-btn-container {
  text-align: center;
  margin-top: 40px;
}

.brochure-btn {
  background-color: #000038;
  color: white;
  padding: 15px 25px;
  width: 20%;
  border-radius: 15px;
  font-size: larger;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.brochure-btn:hover {
  background-color: #ff6600;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 56, 0.3);
}
/* ---------------- Responsive ---------------- */

/* Large Screens (Default) */
/* Width: 30%, flexible */

/* Medium Devices - Tablets */
@media screen and (max-width: 1024px) {
    .course-card {
        width: 45%;
    }
    .brochure-btn {
        width: 50%;
    }
}

/* Small Devices - Mobile */
@media screen and (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    .course-card {
        width: 90% !important;
    }
    .brochure-btn {
        width: 70%;
        font-size: 1rem;
    }
    .course-structure h1 {
        font-size: 2.3rem;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
    .course-structure h1 {
        font-size: 2rem;
    }
    .course-card h3 {
        font-size: 1rem;
    }
}
/* -------- Why Walsh Section -------- */
    .why-walsh {
    background: #ffffff;
    padding: 50px 5%;
    }

    .why-walsh-container {
    max-width: 1900px;
    margin: 0 auto;
    text-align: center;
    }

    .why-walsh h2 {
    font-size: 3rem;
    color: #000038;
    margin-bottom: 10px;
    }

    .why-walsh h2 span {
    color: #ff6600;
    }

    .sub-heading {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 50px;
    }

    .why-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap; /* ❌ No wrapping */
    }


    .why-card {
    width: 500px;   /* Fixed width */
    height: 330px;  /* Fixed height */
    background: linear-gradient(145deg, #000038, #010144);
    color: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 56, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    }


    .why-card::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    top: -30%;
    left: -30%;
    transform: rotate(0deg);
    transition: transform 0.8s ease;
    z-index: 0;
    }

    .why-card:hover::before {
    transform: rotate(45deg);
    }

    .why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 56, 0.6);
    }

    .why-card img {
    width: 55px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    }

    .why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    }

    .why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
    }
    .why-walsh .why-card i {
  display: block;
  text-align: center;
}

    /* -------- Responsive -------- */
   /* ------------------ RESPONSIVE ------------------ */
@media (max-width: 1520px) {
  .why-card {
    width: 90%;
    height: auto;
  }
   .why-cards {
    flex-direction: column;
    align-items: center;
  }

}

@media (max-width: 768px) {
  .why-cards {
    flex-direction: column;
    align-items: center;
  }

  .why-card {
    width: 90%;
    height: auto;
  }

  .why-walsh h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .why-walsh h2 {
    font-size: 2rem;
  }

  .sub-heading {
    font-size: 1rem;
  }
}
/* ---------- GLOBAL OPPORTUNITIES ---------- */
       .global-hero {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 85vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .global-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 56, 0.36); /* Dark blue transparent overlay */
    backdrop-filter: blur(2px);
    }

    .global-overlay {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    }

    .global-overlay h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    }

    .global-overlay p {
    max-width: 700px;
     color: white;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
    }

    .global-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    }
    .global-highlights .highlight i {
    display: block;
    text-align: center;
    }

    .highlight {
    background-color:rgba(255, 255, 255, 0.59);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(8px);
    width: 300px;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.4s;
    }

    .highlight:hover {
    transform: translateY(-10px);
    }

    .highlight img {
    width: 50px;
    margin-bottom: 15px;
    }

    .highlight h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color:rgb(41, 40, 40);
    }

    .highlight p {
    color:rgb(42, 39, 39);
    font-size: 1rem;
    font-weight: 500;
    }
    /* ---------------- Responsive ---------------- */
@media screen and (max-width: 1024px) {
    .global-overlay h2 {
        font-size: 2.5rem;
    }

    .highlight {
        width: 250px;
    }
}

@media screen and (max-width: 768px) {
  .global-overlay{
    padding: 50px 10px;
  }
    .global-overlay h2 {
        font-size: 2.2rem;
    }

    .global-overlay p {
        max-width: 90%;
    }

    .highlight {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .global-overlay h2 {
        font-size: 1.8rem;
    }

    .highlight h4 {
        font-size: 1.1rem;
    }

    .highlight p {
        font-size: 0.95rem;
    }
}
   


    /* ---------- CAREER PATHWAYS ---------- */
    .career-path {
    padding: 70px 5%;
    background-color: #f5f7fa;
    text-align: center;
    }

    .career-path h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    }
    .career-path h2 span {
      color: #ff6600;
    }
    .sub-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #000000;
    }
    .career-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    }

    .career-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    width: 390px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    }

    .career-card:hover {
    transform: translateY(-8px);
    }

    .career-card img {
    width: 60px;
    margin-bottom: 15px;
    }

    .career-card h3 {
    color: #000038;
    margin-bottom: 10px;
    }

    .career-card p {
    color: #333;
    font-size: 0.95rem;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 768px) {
    .global-content {
        flex-direction: column;
    }
    }
    
    /* -------------------- Internships -------------------- */
   .internships-enhanced {
  background: linear-gradient(120deg, #000038 0%, #01012d 100%);
  padding: 100px 5%;
  color: #fff;
}

.internships-enhanced h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 15px;
}

.internships-enhanced h2 span {
  color: #ff6600;
}



.internship-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.internship-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 30px 25px;
  width: 320px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.internship-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 56, 0.6);
}

.icon-bg {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-bg img {
  width: 45px;
}

.internship-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.internship-item p {
  font-size: 0.95rem;
  color: #e4e4e4;
}

/* Responsive */
@media (max-width: 1024px) {
  .internship-item {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .internship-grid {
    flex-direction: column;
    align-items: center;
  }

  .internship-item {
    width: 90%;
  }

  .internships-enhanced h2 {
    font-size: 2.4rem;
  }
}
/*-----------------------------Walsh UAE Apart---------------------------*/
  .walsh-difference {
  background-color: #ffffff;
  padding: 100px 5%;
}

.walsh-diff-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.diff-text {
  flex: 1;
  min-width: 320px;
}

.diff-text h2 {
  font-size: 3rem;
  color: #000038;
  line-height: 1.2;
}

.diff-text h2 span {
  color: #ff6600;
}

.diff-text p {
  margin: 20px 0;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
}

.diff-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.diff-text ul li {
  background-color: #f4f4f4;
  padding: 15px 20px;
  border-left: 5px solid #ff6600;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.diff-text ul li:hover {
  background-color: #fefefe;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.diff-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.diff-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 56, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .walsh-diff-container {
    flex-direction: column;
    text-align: center;
  }

  .diff-text h2 {
    font-size: 2.4rem;
  }

  .diff-text ul li {
    text-align: left;
  }
}
/* -------------------- APPLY CTA -------------------- */
    /* --------- Apply CTA Section --------- */
    .apply-cta {
    background: linear-gradient(135deg, #000038, #010144);
    color: white;
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    }

    .apply-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    animation: pulse 6s infinite linear;
    }

    @keyframes pulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }

    .apply-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    }

    .apply-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    }

    .apply-cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
    }

    .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }

    .apply-btn,
    .enquire-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    }

    .apply-btn {
    background-color: #ff6600;
    color: white;
    }

    .apply-btn:hover {
    background-color: #e65c00;
    }

    .enquire-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    }

    .enquire-btn:hover {
    background-color: white;
    color: #000038;
    }

    /* --------- Responsive --------- */
    @media (max-width: 768px) {
    .apply-cta h1 {
        font-size: 2.3rem;
    }
    }


    /* -------------------- RESPONSIVE -------------------- */
    @media(max-width: 768px) {
      .overview {
        flex-direction: column;
      }
      .req-card {
        width: 100%;
      }
      .table-card {
        width: 100%;
      }
    }
