


:root{
  --gold:#F4B400;
  --gold-dark:#C99700;
  --black:#111111;
  --white:#ffffff;
  --gray:#8A8A8A;
  --light:#F5F5F5;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, sans-serif;
}

body{color:#333;background:#fff}




/* HEADER */
:root{
  --gold:#f4c430;
  --gold-dark:#d4a900;
  --black:#111;
  --white:#fff;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 40px;
  background:var(--white);
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

/* LOGO */
.logo{
  height:70px;
}

/* NAV */
.nav{
  display:flex;
  gap:25px;
}

.nav a{
  text-decoration:none;
  color:var(--black);
  font-weight:500;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:var(--gold);
  left:0;
  bottom:-5px;
  transition:0.3s;
}

.nav a:hover::after{
  width:100%;
}

/* RIGHT SIDE */
.header-right{
  display:flex;
  align-items:center;
  gap:20px;
}

/* SOCIAL ICONS */
.social-icons a{
  color:var(--black);
  margin:0 6px;
  font-size:16px;
  transition:0.3s;
}

.social-icons a:hover{
  color:var(--gold);
  transform:translateY(-2px);
}

/* BUTTON */
.btn-outline{
  background:var(--gold);
  color:var(--black);
  padding:10px 24px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.btn-outline:hover{
  background:var(--gold-dark);
}

/* MOBILE MENU ICON */
.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
  .nav{
    position:absolute;
    top:85px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:25px 0;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
  }

  .nav.active{
    display:flex;
  }

  .social-icons{
    display:none;
  }

  .menu-toggle{
    display:block;
  }
}

@media(max-width:480px){
  .btn-outline{
    display:flex;
    padding:8px 18px;      /* smaller padding */
    font-size:14px;        /* smaller text */
  }

  .logo{
    height:55px;
  }
}


/* HERO */
:root{
  --gold: #f5c518;
  --gold-dark: #d9a30a;
  --black: #111;
  --light: #f7f7f7;
}

/* HERO SECTION */
.hero{
  position: relative;
  display:grid;
  grid-template-columns: 1fr;
  padding: 80px 50px;
  align-items:center;
  overflow:hidden;
  min-height: 600px; /* added for better image view */
}

/* Background Slider behind text */
.hero-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
  overflow:hidden;
}

.bg-slider{
  width:100%;
  height:100%;
  position: relative;
}

.bg-slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  animation: slide 16s infinite;
  background-size: cover; /* best for full cover */
  background-position:center;
  background-repeat:no-repeat;
}

.slide1{
  background-image:url('India.jfif');
}

.slide2{
  background-image:url('Australia.jpg');
  animation-delay: 4s;
}

.slide3{
  background-image:url('uk.jpg');
  animation-delay: 8s;
}

.slide4{
  background-image:url('usa.jpg');
  animation-delay: 12s;
}

@keyframes slide{
  0%{opacity:0;}
  10%{opacity:1;}
  30%{opacity:1;}
  40%{opacity:0;}
  100%{opacity:0;}
}

/* TEXT */
.hero-text{
  position: relative;
  z-index:2;
  color:white;
}

.hero h2{
  font-size: 3rem;
  color:black;
}


.highlight{
  color: var(--gold);
}

.hero p{
  margin: 20px 0;
  font-size: 18px;
  color: #f2f2f2;
}

/* BUTTONS */
.hero-btns{
  margin: 20px 0;
  display: flex;
  flex-direction: row;  /* row now */
  gap: 15px;
  align-items: center;
}

.btn-primary,
.btn-outline{
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  font-weight: 600;
  width: 190px;
  text-align: center;
  font-size: 14px;  /* smaller text */
}

.btn-primary:hover{
  background: var(--gold-dark);
}

.btn-outline{
  background: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover{
  background: var(--gold);
}

/* INFO BOX */
.hero-info{
  display:flex;
  gap: 15px;
  margin-top: 25px;
}

.info-box{
  background: rgba(0,0,0,0.5);
  padding: 12px 15px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display:flex;
  align-items:center;
  gap: 10px;
}

.info-box i{
  font-size: 18px;
  color: var(--gold);
}

.info-box p{
  margin:0;
  font-weight:600;
  color:white;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .hero{
    padding: 60px 25px;
  }

  .hero h2{
    font-size: 2.5rem;
  }

  .hero-btns{
    flex-direction: column; /* stack buttons on mobile */
    width: 100%;
  }

  .btn-primary, .btn-outline{
    width: 100%;
  }

  .hero-info{
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px){
  .hero h2{
    font-size: 2.2rem;
  }

  .hero p{
    font-size: 16px;
  }

  .btn-primary, .btn-outline{
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* SERVICES */
/* =========================
   SERVICES GRID
========================= */

#services h2{
  text-align: center;
  margin-bottom: 40px;
}
.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* =========================
   SERVICE CARD
========================= */

.service-card{
  background: #fff;
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* Icon */
.service-card i{
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Title */
.service-card h3{
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #222;
}

/* Description */
.service-card p{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px){
  .service-grid{
    gap: 25px;
  }

  .service-card{
    padding: 28px 22px;
  }

  .service-card i{
    font-size: 38px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 576px){
  .service-grid{
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 16px;
  }

  .service-card{
    padding: 22px 16px;
  }

  .service-card i{
    font-size: 32px;
    margin-bottom: 12px;
  }

  .service-card h3{
    font-size: 0.95rem;
  }

  .service-card p{
    font-size: 0.85rem;
  }
}

/* DESTINATIONS */
/* =========================
   COUNTRY GRID
========================= */

#destinations h2{
  text-align: center;
  margin-bottom: 40px;
}
.country-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* =========================
   COUNTRY CARD
========================= */

.country-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Image */
.country-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Title */
.country-card h3{
  margin: 16px;
  font-size: 1.15rem;
  text-align: center;
  color: #222;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px){
  .country-grid{
    gap: 25px;
  }

  .country-card img{
    height: 180px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 576px){
  .country-grid{
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 15px;
  }

  .country-card img{
    height: 140px;
  }

  .country-card h3{
    font-size: 0.95rem;
    margin: 12px;
  }
}


/* CONTACT */
.contact-form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:12px;
  border:1px solid #ccc;
  border-radius:8px;
}

/* FOOTER */
footer{
  background:var(--black);
  color:var(--white);
  text-align:center;
  padding:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero{grid-template-columns:1fr}
}


/* HERO DESIGN */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 80px 60px;
  gap: 40px;
  background: linear-gradient(135deg, #0b3d91, #2a7ad8);
  color:#fff;
}

.hero-text h1{
  font-size: 3.2rem;
  line-height: 1.2;
}
.highlight{
  color:#ffd700;
}

.hero-btns{
  margin-top: 20px;
}
.hero-btns .btn-outline{
  margin-left: 15px;
}

.hero-info{
  display:flex;
  gap: 15px;
  margin-top: 25px;
}
.info-box{
  background: rgba(255,255,255,0.15);
  padding: 10px 15px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  gap:10px;
}
.info-box i{
  font-size: 18px;
}

/* ABOUT SECTION */
/* ABOUT SECTION */
#about h2{
  text-align: center;
  margin-bottom: 40px;
}



.about-content h3{
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.about-content p{
  text-align: center;
  line-height: 1.7;
  margin-bottom: 12px;
}



/* COUNTER SECTION */
.counter-section{
  background: #f7f7f7;
  padding: 60px;
}

.counter-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* One counter per row */
  gap: 30px;
}

.counter-card{
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.counter-card h3{
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: #f4b400; /* Yellow accent */
}

.counter-card p{
  font-size: 1rem;
  color: #333;
}

/* ======================
   TABLET RESPONSIVE
====================== */
@media (max-width: 992px){
  .about-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .counter-section{
    padding: 50px 30px;
  }
}

/* ======================
   MOBILE RESPONSIVE
====================== */
@media (max-width: 576px){
  #about h2{
    margin-bottom: 25px;
  }

  .about-content h3{
    font-size: 1.3rem;
  }

  .about-content p{
    font-size: 0.95rem;
  }

  .counter-section{
    padding: 40px 20px;
  }

  .counter-grid{
    grid-template-columns: repeat(2, 1fr); /* 2 counters per row */
    gap: 20px;
  }

  .counter-card{
    padding: 22px;
  }

  .counter-card h3{
    font-size: 1.6rem;
  }

  .counter-card p{
    font-size: 0.9rem;
  }
}


/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-btn{
  position: fixed;              /* FIXED bottom-right */
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect (desktop) */
.whatsapp-btn:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Icon */
.whatsapp-btn i{
  font-size: 22px;
}

/* Text */
.whatsapp-btn span{
  font-size: 0.95rem;
  font-weight: 500;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 576px){
  .whatsapp-btn{
    bottom: 15px;
    right: 20px;
    padding: 12px;
    border-radius: 50%;
  }

  .whatsapp-btn span{
    display: none; /* Icon only on mobile */
  }

  .whatsapp-btn i{
    font-size: 24px;
  }
}





.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}


#contact-right h2{
  text-align: center;
  margin-bottom: 40px;
}
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-left{
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-left h3{
  margin-bottom: 15px;
}

.contact-left ul{
  list-style: none;
  padding: 0;
}

.contact-left li{
  margin: 12px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-left i{
  color: #2a7ad8;
}

/* Responsive */
@media screen and (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

/* --------- SCROLL TO TOP BUTTON --------- */
.scrollTop{
  display: none;
  position: fixed;
  bottom: 150px;
  right: 30px;
  background: #ffcc00;
  color: #111;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.scrollTop:hover{
  transform: translateY(-5px);
}

.scrollTop{
  bottom: 90px;
}

@media (max-width: 576px){
  .scrollTop{
    bottom: 80px;
    right: 15px;
  }
}
/* =========================
   FOOTER
========================= */

.footer{
  background: #111;
  color: #fff;
  padding: 25px 20px;
  margin-top: 60px;
}

.footer-content{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer p{
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
}

/* Social icons */
.footer .social-icons{
  display: flex;
  gap: 12px;
}

.footer .social-icons a{
  width: 36px;
  height: 36px;
  background: #222;
  color: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.footer .social-icons a:hover{
  background: #f4b400;
  color: #111;
}

/* Mobile */
@media (max-width: 576px){
  .footer-content{
    flex-direction: column;
    text-align: center;
  }
}

