:root{
    --primary:#0a2342;
    --secondary:#0077b6;
    --gold:#f4b400;
    --light:#eef4ff;
    --white:#ffffff;
}
html, body{
    width:100%;
    overflow-x:hidden;
}

/* POPUP BACKGROUND (Glass effect) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

/* POPUP BOX (Premium UI) */
.popup-box {
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
  padding: 35px 30px;
  width: 420px;
  max-width: 95%;
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: pop 0.4s ease;
}

/* HEADING */
.popup-box h2 {
  font-size: 26px;
  color: #0a2342;
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  transition: 0.3s;
}

.close-btn:hover {
  color: red;
  transform: rotate(90deg);
}

/* INPUTS */
.popup-box input {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.popup-box input:focus {
  border-color: #0077b6;
  box-shadow: 0 0 8px rgba(0,119,182,0.3);
}

/* BUTTON */
.popup-box button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: linear-gradient(to right, #0a2342, #0077b6);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,119,182,0.3);
}

/* ANIMATION */
@keyframes pop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* MOBILE */
@media(max-width:500px){
  .popup-box {
    padding: 25px 20px;
  }
}


/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:"Poppins",Arial;}
body{background:#ffffff;color:#222;}


/* FULLSCREEN LOADER WITH BLUR */
#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    z-index:9999;
}

/* 🔥 CIRCLE CONTAINER */
.loader-circle{
    position:relative;
    width:80px;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* 🔥 SPINNER (OUTER RING) */
.spinner{
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    border:4px solid rgba(255,255,255,0.15);
    border-top:4px solid #00c6ff;
    border-right:4px solid #0077b6;
    animation:spin 1s linear infinite;
    box-shadow:0 0 25px rgba(0,198,255,0.6);
    
}

/* 🔥 LOGO CENTER */
/* 🔥 LOGO PERFECT CENTER */
.loader-logo{
    position:absolute;          /* ✅ key fix */
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);  /* ✅ perfect centering */

    width:70px;                /* ⚠️ adjust size to fit inside ring */
    height:auto;

    z-index:2;
    animation:fade 1.5s infinite alternate;
    filter: drop-shadow(0 0 10px rgba(0,198,255,0.6));
}

/* TEXT */
.loader-text{
    margin-top:120px;
    font-size:25px;
    font-weight:600;
    color:#e2e8f0;
    letter-spacing:1px;
}

/* ANIMATIONS */
@keyframes spin{
    100%{transform:rotate(360deg);}
}

@keyframes fade{
    from{opacity:0.6;}
    to{opacity:1;}
}

/* ---------- TOP BAR --------- */
.top-bar{
    background:linear-gradient(to right,#0a2342,#0077b6);
    color:#fff;
    padding:8px 20px;
    font-size:14px;
    display:flex;
    justify-content:center;   /* Center items */
    align-items:center;       /* Vertically center */
    gap:15px;                 /* Space between items */
    flex-wrap:wrap;
}

.top-bar span{
    margin-right:0;           /* Remove old spacing */
    text-align:center;
}

.top-bar i{
    margin-left:5px;
    cursor:pointer;
}

.top-bar i:hover{
    color:#f4b400;
}
/* Mobile devices */
@media (max-width:600px){
    .top-bar {
        font-size: 12px;      /* Smaller text */
        padding: 6px 8px;     /* Less padding */
        gap: 6px;             /* Reduce spacing */
    }

    .top-bar i {
        margin-left: 3px;     /* Adjust icon spacing */
    }

    .top-bar span {
        font-size: 12px;      /* Smaller text */
    }
}







/* ---------- NAVBAR ---------- */
/* Navbar */
.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 50px;
    background:#ffffff;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    position:sticky;
    top:0;
     z-index: 1000; /* higher than tabs */
     }

.logo{
    font-size:28px;
    font-weight:900;
    color:#0a2342;
    letter-spacing:1px;
    text-transform:uppercase;
    white-space:nowrap;
}

.logo span{
    color:#0077b6;
}

.dropdown{
  position:relative;
}

/* Make dropdown start clearly below navbar */
.dropdown-menu{
  position:absolute;
  top: 100%; 
  top: 25px;
    /* Push below navbar */
  left:0;
  background:#ffffff;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  border-radius:10px;
  padding:10px 0;
  display:none;
  min-width:200px;
   z-index: 1100; /* above tabs */
   list-style: none;
}


.dropdown-menu a{
  display:block;
  padding:10px 14px;
  color:#0a2342;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.dropdown-menu a:hover{
  background:#0077b6;
  color:#fff;
}

/* Mobile Support */
@media(max-width:900px){
  .dropdown{
      width:100%;
  }
  .dropdown-menu{
      position:relative;
      box-shadow:none;
      border-radius:0;
      min-width:100%;
       z-index: 1100; /* above tabs */
  }
}


/* Show on hover (desktop) */
.dropdown:hover .dropdown-menu{
  display:block;
}

/* Tablet */
@media(max-width:1024px){
    .logo{
        font-size:24px;
        letter-spacing:.5px;
    }
}

/* Mobile */
@media(max-width:768px){
    .logo{
        font-size:22px;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .logo{
        font-size:20px;
    }
}

/* Extra Small */
@media(max-width:360px){
    .logo{
        font-size:18px;
    }
}



/* Links */
.nav-links{
    display:flex;
    align-items:center;
    gap:2px;
     z-index:2000;
     list-style: none;
}

.nav-links a{
    color:#0a2342;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    padding:8px 14px;
    border-radius:10px;
    transition:all .35s ease;
}

.nav-links a:hover{
    background:#0077b6;
    color:#ffffff;
    box-shadow:0 6px 15px rgba(0,119,182,.25);
    transform:translateY(-2px);
}

/* Hamburger Icon */
.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#0a2342;
}

/* Mobile Styling */
@media(max-width:900px){

    .navbar{
        padding:12px 22px;
        position:relative;   /* ✅ FIX (important) */
        z-index:1000;
    }

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        right:-100%;
        width:100%;
        max-width:350px;
        background:#ffffff;

        display:flex;              /* ✅ FIX */
        flex-direction:column;
        gap:0;

        padding:18px 0;
        box-shadow:0 10px 30px rgba(0,0,0,.15);
        transition:all .45s ease;
        border-radius:0 0 16px 16px;

        max-height:80vh;           /* ✅ FIX */
        overflow-y:auto;           /* ✅ FIX */

        z-index:2000;
    }

    .nav-links li{
        width:100%;                /* ✅ FIX */
        list-style:none;
    }

    .nav-links a{
        display:block;             /* ✅ FIX (prevents overlap) */
        width:100%;
        text-align:left;
        padding:14px 22px;
        border-radius:0;
        font-size:15px;
        letter-spacing:.3px;
        border-bottom:1px solid rgba(0,0,0,.07);
        position:relative;
    }

    .nav-links a:last-child{
        border-bottom:none;
    }

    .nav-links a:hover{
        background:#0077b6;
        color:#fff;
        box-shadow:none;
        transform:none;
    }

    /* Active / current page effect */
    .nav-links a.active{
        background:#0077b6;
        color:white;
        font-weight:700;
    }

    /* Smooth open menu */
    .nav-links.show{
        right:0;
    }

    /* ✅ Dropdown Fix for Mobile */
    .dropdown-menu{
        position:relative;
        display:none;
        list-style:none;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }
}

/* Remove default spacing */
.nav-links ul {
  margin: 0;
  padding: 0;
}




/* ---------- HERO ---------- */
/* HERO MAIN SECTION */
.hero-section{
  position:relative;
  width:100%;
  height:700px;
  overflow:hidden;
  color:#fff;
  display:flex;
  align-items:center;
  padding:40px 60px;
}

/* ---------- BACKGROUND SLIDER ---------- */
.hero-slider{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
  z-index:-1;
}

.slides{
  display:flex;
  height:100%;
  width:100%;
  transition:transform .6s ease-in-out;
}

.hero-slide{
  flex:0 0 100%;   /* one slide = full width */
  width:100%;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover; 
}


/* DARK OVERLAY for text readability */
.hero-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,
  rgba(0,0,0,0.5),
  rgba(0,0,0,0.8));
}

/* ---------- LEFT TEXT ---------- */
.hero-left{
  width:55%;
  position:relative;
  z-index:2;
}

.hero-left h1{
  font-size:48px;
  font-weight:800;
  line-height:1.2;
}

.hero-left h1 span{
  color:#00d4ff;
}

.hero-left h2{
  font-size:26px;
  margin-top:10px;
  color:#ffd700;
}

.hero-left p{
  font-size:18px;
  margin-top:10px;
  color:#eaeaea;
}

/* BUTTONS */
.hero-buttons{
  margin-top:25px;
}

.hero-buttons a{
  text-decoration:none;
  padding:12px 22px;
  border-radius:30px;
  margin-right:10px;
  font-size:16px;
  font-weight:600;
  transition:.3s;
}

.primary-btn{
  background:#00c6ff;
  color:#000;
}

.primary-btn:hover{
  background:white;
}

.secondary-btn{
  border:2px solid #fff;
  color:#fff;
}

.secondary-btn:hover{
  background:#fff;
  color:#000;
}



/* MOBILE */
@media(max-width:900px){
  .hero-section{
    height:480px;
    text-align:center;
    padding:30px 20px;
  }

  .hero-left{
    width:100%;
  }

  .hero-left h1{
    font-size:34px;
  }

  .hero-left p{
    font-size:16px;
  }
}





/* ---------- SECTION ---------- */
.section{
    padding:70px 10%;
    text-align:center;
}
.section h2{
    color:#0a2342;
    font-size:28px;
}

/* ---------- STATS ---------- */
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:30px;
}
.stat-box{
    padding:25px;
    border-radius:12px;
    background:white;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}
.stat-box i{
    font-size:35px;
    color:#0077b6;
}
.stat-box h3{
    margin-top:10px;
    font-size:26px;
    color:#0a2342;
}
.stat-box p{color:#555}






/* ---------- DESTINATION GRID ---------- */
.travel-visa-section{
    padding:70px 10%;
    background:#ffffff;
}

.services-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 20px;
    overflow: hidden;
}

/* Subtle glowing background effect */
.services-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(0,119,182,0.25), transparent 70%);
    top:-100px;
    left:-100px;
    z-index:0;
}

.services-section::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(0,212,255,0.2), transparent 70%);
    bottom:-100px;
    right:-100px;
    z-index:0;
}

/* Keep content above glow */
.services-section *{
    position: relative;
    z-index: 2;
}

/* TITLE */
.section-title{
    text-align: center;
    color: #0a2342;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

/* Fancy underline */
.section-title::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    margin:12px auto 0;
    background: linear-gradient(to right, #00c6ff, #0077b6);
    border-radius:10px;
}

/* Optional subtitle */
.section-subtitle{
    text-align:center;
    color:#cbd5e1;
    font-size:16px;
    margin-bottom:40px;
}

/* Hover animation (if used with cards) */
.services-section:hover .section-title{
    letter-spacing:2px;
    transition:.3s ease;
}

.tv-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

/* Card */
.tv-card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.25);
    transition:.4s ease;
}

.tv-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 26px rgba(0,0,0,.35);
}

/* Image */
.tv-card img{
    width:100%;
    height:190px;
    object-fit:cover;
}

/* Text */
.tv-info{
    padding:15px;
}

.tv-info h3{
    color:#0a2342;
    font-size:20px;
}

.tv-info p{
    color:#555;
    margin-top:5px;
}
.tv-link{
  text-decoration:none;
  color:inherit;
  display:block;
}
.tv-card{
  cursor:pointer;
}


/* Responsive */
@media(max-width:992px){
    .tv-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .tv-grid{
        grid-template-columns:1fr;
    }
}







/* ---------- PROCESS ---------- */
.process{
    background:#f5f7ff;
    padding:70px 10%;
    text-align:center;
}
.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.step{
    padding:18px;
    background:white;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}
.step i{
    font-size:35px;
    color:#0077b6;
}
.step h4{
    color:#0a2342;
    margin-top:10px;
}






/* ---------- FLOAT CONTACT BOX ---------- */
/* Contact Section */
.contact-section{
    width:100%;
    display:flex;
    justify-content:center;
    padding:70px 10%;
    background:#f6f9ff;
}

/* Box */
.contact-box{
    width:100%;
    max-width:900px;
    background:white;
    padding:30px;
    border-radius:14px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* Headings */
.contact-box h3{
    color:#0a2342;
    font-size:26px;
    margin-bottom:8px;
}

/* Left text */
.contact-left p{
    color:#334155;
    margin:10px 0;
    font-size:15px;
    line-height:1.6;
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 12px;
    border-radius:8px;
    transition:all .3s ease;
}

.contact-left p:hover{
    background:#eef4ff;
    transform:translateX(4px);
}

/* Inputs */
.contact-right input,
.contact-right textarea{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ccc;
    margin:8px 0;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.contact-right input:focus,
.contact-right textarea:focus{
    border-color:#0077b6;
    box-shadow:0 0 8px rgba(0,119,182,.3);
}

/* Button */
.contact-right button{
    width:100%;
    padding:12px;
    border:none;
    color:white;
    border-radius:8px;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    background:linear-gradient(to right,#0a2342,#0077b6);
    transition:.3s;
}

.contact-right button:hover{
    transform:translateY(-2px);
}







/* ---------- RESPONSIVE ---------- */
@media(max-width:992px){
.services{grid-template-columns:1fr 1fr;}
.visa-grid{grid-template-columns:1fr;}
.steps{grid-template-columns:1fr 1fr;}
.dest-grid{grid-template-columns:1fr 1fr;}
.test-grid{grid-template-columns:1fr;}
.stats{grid-template-columns:1fr 1fr;}
.contact-box{grid-template-columns:1fr;}
.footer-box{width:100%;margin-top:20px;}
}

/* ====================== FULL RESPONSIVE ENHANCEMENTS ===================== */

/* -------- Top Bar Responsive -------- */
@media(max-width:900px){
    .top-bar{
        justify-content:center;
        text-align:center;
        gap:6px;
    }
}

/* -------- Hero Better Responsive -------- */
@media(max-width:1024px){
    .hero-section{
        padding:40px 40px;
        height:auto;
    }
    .hero-left h1{font-size:40px;}
    .hero-left h2{font-size:22px;}
    .hero-left p{font-size:17px;}
}

/* Tablet + Small Laptop */
@media(max-width:900px){
    .hero-section{
        flex-direction:column;
        gap:25px;
        height:auto;
        padding:35px 25px;
        text-align:center;
    }

    .hero-left{
        width:100%;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:10px;
    }

    .hero-slider{
        width:100%;
        height:380px;
    }
}

/* -------- Mobile Devices -------- */
@media(max-width:768px){

    .navbar{
        padding:10px 16px;
    }

    .hero-left h1{
        font-size:32px;
        line-height:1.2;
    }

    .hero-left h2{
        font-size:20px;
    }

    .hero-left p{
        font-size:15px;
    }

    .hero-slider{
        height:340px;
    }

    .arrow{
        font-size:26px;
        padding:6px 10px;
    }
}

/* -------- Small Mobile -------- */
@media(max-width:520px){

    .hero-section{
        padding:28px 18px;
    }

    .hero-left h1{
        font-size:28px;
    }

    .hero-left h2{
        font-size:18px;
    }

    .hero-left p{
        font-size:14px;
    }

    .hero-slider{
        height:300px;
        border-radius:14px;
    }

    .primary-btn,
    .secondary-btn{
        padding:10px 18px;
        font-size:14px;
    }
}

/* -------- Extra Small -------- */
@media(max-width:400px){

    .hero-left h1{
        font-size:24px;
    }

    .hero-left h2{
        font-size:16px;
    }

    .hero-slider{
        height:260px;
    }

    .arrow{
        font-size:22px;
    }
}


/* ================= FULL RESPONSIVE FIXES ================= */

/* Fix broken media query syntax */
@media(max-width:992px){
    .services{grid-template-columns:1fr 1fr;}
    .visa-grid{grid-template-columns:1fr;}
    .steps{grid-template-columns:1fr 1fr;}
    .test-grid{grid-template-columns:1fr;}
    .stats{grid-template-columns:1fr 1fr;}
    .dest-grid{grid-template-columns:1fr 1fr;}
    .contact-box{grid-template-columns:1fr;}
}

/* -------- Tablets -------- */
@media(max-width:800px){
  .section,
  .process,
  .visa-container,
  .testimonials,
  .cta,
  .travel-visa-section{
      padding:60px 8%;
  }

  .services{
      grid-template-columns:repeat(2,1fr);
  }

  .stats{
      grid-template-columns:repeat(2,1fr);
  }

  .steps{
      grid-template-columns:repeat(2,1fr);
  }

  .visa-grid{
      grid-template-columns:1fr;
  }

  .tv-grid{
      grid-template-columns:repeat(2,1fr) !important;
  }
}

/* -------- Mobile -------- */
@media(max-width:600px){

  .section,
  .process,
  .visa-container,
  .testimonials,
  .cta,
  .travel-visa-section{
      padding:55px 6%;
  }

  .stats{
      grid-template-columns:1fr;
  }

  .services{
      grid-template-columns:1fr;
  }

  .steps{
      grid-template-columns:1fr;
  }

  .tv-grid{
      grid-template-columns:1fr !important;
  }

  .contact-box{
      padding:22px;
  }

  .contact-box h3{
      font-size:22px;
  }

  .test-grid{
      grid-template-columns:1fr;
  }
}

/* -------- Small Mobile -------- */
@media(max-width:420px){

  .section h2{
      font-size:22px;
  }

  .tv-card img{
      height:160px;
  }

  .visa-card{
      padding:15px;
  }

  .cta button{
      width:100%;
  }
}


/* ================= CONTACT RESPONSIVE FIX ================= */

/* Tablet */
@media(max-width:900px){

  .contact-section{
      padding:60px 8%;   /* reduce side spacing */
  }

  .contact-box{
      grid-template-columns:1fr;   /* stack */
      padding:25px;
      gap:20px;
  }
}

/* Mobile */
@media(max-width:600px){

  .contact-section{
      padding:50px 5%;
  }

  .contact-box{
      padding:20px;
      gap:16px;
  }

  .contact-box h3{
      font-size:22px;
      text-align:center;
  }

  .contact-left p{
      font-size:14px;
      padding:6px 10px;
  }

  .contact-right input,
  .contact-right textarea{
      font-size:14px;
      padding:10px;
  }

  .contact-right button{
      font-size:15px;
  }
}

/* Small Mobile */
@media(max-width:400px){

  .contact-section{
      padding:40px 4%;
  }

  .contact-box{
      padding:16px;
  }

  .contact-box h3{
      font-size:20px;
  }

  .contact-left p{
      font-size:13px;
      gap:8px;
  }

  .contact-right input,
  .contact-right textarea{
      font-size:13px;
      padding:9px;
  }
}