:root{
    --primary:#0a2342;
    --secondary:#0077b6;
    --gold:#f4b400;
    --light:#eef4ff;
    --white:#ffffff;
}
html, body{
    width:100%;
    overflow-x:hidden;
}


/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:"Poppins",Arial;}
body{background:#ffffff;color:#222;}

/* ---------- 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: calc(100% + 12px);   /* 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 */
}


.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;
}

.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;
         z-index: 1000; /* higher than tabs */
    }

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        right:-100%;
        width:100%;
        max-width:350px;
        background:#ffffff;
        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;
        overflow:hidden;
         z-index:2000;
    }

    .nav-links a{
        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;
    }
}


/* ---------- 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;
  }
}


/* ---------- 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:#444;
    margin:6px 0;
}

/* 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:800px){
  .contact-box{
      grid-template-columns:1fr;
  }
}


/* ---------- 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}

/* ---------- SERVICES ---------- */
.services{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.service-box{
    padding:22px;
    border-radius:12px;
    background:#fff;
    border:1px solid #ddd;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}
.service-box i{
    font-size:35px;
    color:#0077b6;
}
.service-box h4{color:#0077b6;margin-top:10px}

/* ---------- DESTINATION GRID ---------- */
.travel-visa-section{
    padding:70px 10%;
    background:#ffffff;
}

.section-title{
    text-align:center;
    color:white;
    margin-bottom:25px;
}

.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;
}

/* ---------- VISA GRID ---------- */
.visa-container{
    background:#0a2342;
    padding:70px 10%;
    color:white;
}
.visa-title{text-align:center;margin-bottom:20px;}

.visa-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.visa-card{
    border:1px solid var(--gold);
    padding:20px;
    border-radius:12px;
    transition:.3s;
}
.visa-card:hover{
    background:white;
    color:#0a2342;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials{
    padding:70px 10%;
    text-align:center;
}
.test-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.test{
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}
.test i{color:#f4b400;font-size:20px;}
.test h4{color:#0a2342;margin-top:10px}

/* ---------- CTA BANNER ---------- */
.cta{
    padding:60px 10%;
    text-align:center;
    color:white;
    background:linear-gradient(to right,#0a2342,#0077b6);
}
.cta button{
    padding:10px 20px;
    border:none;
    margin-top:10px;
    border-radius:8px;
    color:white;
    font-weight:600;
    cursor:pointer;
    background:#f4b400;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0b1c2d;
  color: #fff;
   padding:0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding:50px 20px;
}

.footer-box h3 {
  margin-bottom: 12px;
  color: #ffcc00;
}

.footer-box p {
  color: #ddd;
  line-height: 1.6;
}

.footer-box img {
  margin: 10px 0;
  background: white;
  border-radius: 6px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ffcc00;
}

.bottom-bar{
  background:#06121f;
  width:100%;
  text-align:center;
 padding:12px 0;
  margin-top:40px;
  font-size:14px;
  border-top:1px solid #1f3a57;
  box-sizing:border-box;
}
.bottom-content{
  max-width:1200px;
  margin:auto;
  padding:0 20px;   /* padding goes here */
}

.social-box {
    text-align: center;  /* Centers everything inside */
    margin-top: 20px;
}

.social-box h3 {
    margin-bottom: 12px; /* Space between heading and icons */
    font-size: 20px;
     color: #ffcc00;
      margin-top: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    margin-bottom: 25px;   /* 👈 GAP between icons & Office Address */
}


.social-icons a {
    color: #fff;
    font-size: 26px;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: #f4b400;
    transform: scale(1.3);
}
.office-address {
    margin-top: 30px;
}


.whatsapp-link{
  color: inherit;        /* same color as text */
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-link:hover{
  text-decoration: underline;
  color: #25D366;        /* WhatsApp green */
}

/* Mobile adjustments */
@media (max-width:600px){
    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        font-size: 22px;
    }
}





/* ---------- 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%;
  }
}



