/* =========================== MENU ======================== */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-navbar {
    background: #fff;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.navbar-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 700;
    color: #100568;
}
/* ===== DROPDOWN ===== */
.submenu {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: #fff;
    min-width: 180px;

    display: none;
    list-style: none;
    margin: 0;
    padding: 0;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top: 3px solid #100568;
    z-index: 9999;
}

.submenu:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #100568;
    font-weight: 600;
}

.dropdown-menu li a:hover {
    background: #100568;
    color: white;
}

/* ===== LOGO ===== */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo img {
    height: 95px;   /* adjust size like reference */
    width: auto;
    position: relative;
    top: 30px;       /* 👈 moves logo slightly down */
}

/* ====== RESPONSIVE DESIGN === */
@media (max-width: 992px) {

    .nav-menu {
        gap: 20px;
    }

    .logo img {
        height: 70px;
    }
}

@media (max-width: 768px) {

    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 480px) {

    .nav-menu li a {
        font-size: 15px;
    }

    .logo img {
        height: 55px;
    }
}


/* Smooth link click feel */
.nav-menu li a:active {
    transform: scale(0.95);
    display: inline-block;
}

/* hide mobile elements on desktop */
.mobile-title,
.hamburger {
    display: none;
}

/* ===== MOBILE VIEW ================================ */
    @media (max-width: 768px) {

        /* show mobile elements */
        .mobile-title {
            flex: 1;
            display: block;   /* IMPORTANT */
            text-align: center;
            font-weight: 700;
            color: #100568;
            font-size: 13px;
            font-family: 'Times New Roman', sans-serif;
            line-height: 1.2;
            letter-spacing: 1px;
            padding: 0 8px;
            text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.403);
            overflow: visible;
            text-overflow: unset;  
        }

        .hamburger {
            display: block;
            font-size: 26px;
            cursor: pointer;
        }

        /* hide desktop menus */
        .nav-menu {
            display: none;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            background: #fff;
            padding: 10px 15px;
             /* 👇 IMPORTANT FIX */
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        }

        .nav-menu.active {
            display: flex;
        }

        /* 🔥 REMOVE ALL POSITIONING HACKS */
    .left-menu,
    .right-menu {
        position: static;
        margin: 0;
    }

    /* spacing between menus */
    .right-menu {
        margin-top: 10px;
    }

        /* layout fix */
        .navbar-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            width: 100%;
        }

        /* top bar: hide email */
        .top-bar-content span:nth-child(2) {
            display: none;
        }
        
        .logo {
            flex-shrink: 0;
        }
        
        .logo img {
            height: 60px;
            top: 0;
        }
        
    }


    /* =================================================
   MOBILE HEADER EXTRA (NEW ADDITION)
================================================= */

.mobile-header-extra {
    display: none;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

    /* SHOW MOBILE HEADER EXTRA */
    .mobile-header-extra {
        display: block;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    /* MOBILE MENU PANEL */
    .mobile-menu-panel {
        display: none;
        background: #fff;
        text-align: center;
        border-top: 1px solid #eee;
    }

    .mobile-menu-panel ul {
        list-style: none;
        padding: 10px 0;
        margin: 0;
    }

    .mobile-menu-panel ul li {
        padding: 12px 0;
    }

    .mobile-menu-panel ul li a {
        text-decoration: none;
        color: #100568;
        font-weight: 600;
        font-size: 15px;
        display: block;
    }

    /* OPEN STATE */
    .mobile-menu-panel.active {
        display: block;
    }
}
/* ===================== HERO SECTION ===================== */

/* SECTION */
.about-section {
    padding: 170px 20px 30px;
    text-align: center;
  }
  
  /* GRADIENT TITLE */
  .about-title h1 {
    font-size: 51px;
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    letter-spacing: 1px;
  
    background: -webkit-linear-gradient(#604ed2, #0f0b2f);
    background: linear-gradient(#604ed2, #0f0b2f);
  
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
  
    -webkit-text-fill-color: transparent;
  
    text-shadow: 4px 4px 4px rgba(16, 5, 104, 0.2);
    
  }
  
  /* TABS */
  .about-tabs {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    border-bottom: 1px solid #ddd;
  }
  
  /* TAB BUTTON */
  .tab-btn {
    flex: 1; /* 👈 makes both tabs equal width (50/50) */
    text-align: center;
    background: none;
    border: none;
    font-size: 18px;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    color: #555;
    outline: none;
  }
  
  /* ACTIVE TAB */
  .tab-btn.active {
    color: #2b2e83;
    font-weight: 600;
    outline: none;
    border: none;
    
  }
  
  /* UNDERLINE EFFECT */
  .tab-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: 0.3s ease;
  }
  
  .tab-btn.active::after {
    background: #2b2e83;
    
  }

  .tab-btn:first-child {
    border-right: 1px solid #eee;
  }

  /* ================= RESPONSIVE ================= */

/* TABLETS (≤ 992px) */
@media (max-width: 992px) {

    .about-title h1 {
      font-size: 40px;
    }
  
    .about-tabs {
      max-width: 90%;
    }
  
    .tab-btn {
      font-size: 16px;
      padding: 12px 0;
    }
  }
  
  /* MOBILE (≤ 768px) */
  @media (max-width: 768px) {
  
    .about-title h1 {
      font-size: 32px;
      line-height: 1.3;
    }
  
    .about-tabs {
        flex-direction: row;
        max-width: 95%;
        overflow-x: auto;
    }
  
    .tab-btn {
        font-size: 14px;   /* smaller text */
        padding: 10px 5px; /* tighter spacing */
        white-space: nowrap;
    }
  
    .tab-btn:first-child {
        border-right: 1px solid #eee;
    }
  
    .tab-btn::after {
        height: 2px;
      }
  
    .tab-btn.active {
      background: #f5f5ff;
    }
  }
  
  
  /* SMALL MOBILE (≤ 480px) */
  @media (max-width: 480px) {
  
    .about-title h1 {
      font-size: 26px;
    }
  
    .tab-btn {
      font-size: 13px;
      padding: 8px 4px;
    }
  }
 
  /* CONTENT WRAPPER */
.tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: flex;
    justify-content: center; /* center the box */
    margin-top: 30px;
  }
  
  /* MAIN CONTAINER BOX */
  .content-box {
    max-width: 800px;
    width: 100%;
    background: #f9f9f9;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
  
    text-align: left; /* 👈 important */
    line-height: 1.7;
  }
  
  /* HEADING */
  .content-box h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* PARAGRAPH */
  .content-box p {
    color: #333;
    font-size: 16px;
  }
  
  /* IMAGE */
  .content-box img {
    display: block;
    margin: 25px auto 0;
    max-width: 200px;
  }

  /* SECTION TITLES */
.rules-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 20px;
  }
  
  /* DIVIDER */
  .rules-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0 25px;
  }
  
  /* LIST BASE */
  .rules-list {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 20px;
  }
  
  /* ARROW STYLE LIST */
  .arrow-list {
    list-style: none;
    padding-left: 0;
  }
  
  .arrow-list li {
    position: relative;
    padding-left: 20px;
  }
  
  .arrow-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #2b2e83;
    font-weight: bold;
  }
  
  /* NUMBER LIST */
  .number-list {
    padding-left: 20px;
  }
  
  .number-list li {
    margin-bottom: 10px;
  }


/* ===================== FOOTER ===================== */
.footer {
    background: #100568;
    color: #f7f7f7;
}

.footer-main {
    padding: 70px 0 30px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 3px;
    background: #00bfff;
    margin-bottom: 20px;
}

/* CONTACT */
.footer-contact p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 10px;

}

.footer-contact a {
    color: #f7f7f7;
    text-decoration: none;
}

/* SOCIAL ICONS (NEW) */
.social-icons {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #00bfff;
    transform: translateY(-3px);
}

/* LOCATIONS LIST (FIXED) */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f7f7f7;
}

.footer-links i {
    color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
    background: #0a043f;
    padding: 20px 0;
    text-align: center;
    color: #ddd;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 992px) {

    .footer-main {
        padding: 60px 0 20px;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .footer-main {
        padding: 50px 0 20px;
        text-align: left;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-links li {
        justify-content: left;
        font-size: 14px;
    }

    .social-icons {
        justify-content: left;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}