*{
    transition:
    background 0.3s ease,
    color 0.3s ease,
    border 0.3s ease,
    transform 0.3s ease;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  overflow-x:hidden;
}

html{
  scroll-behavior: smooth;
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 0;
  font-family: 'Poppins', sans-serif;
  background: #f7f8fc;
  color: #222;
  overflow-x: hidden;

}

/* ================= HEADER ================= */

.navbar{
  position: fixed;

  top:0;
  left:0;

  width:100%;
  height:55px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:10px 16px;

  background:#fff;

  z-index:9999;

  border-bottom:1px solid rgba(0,0,0,0.08);
}

.navbar h2 {
  color: #1e293b;
  font-size: 17px;
  margin: 0;
}

.navbar nav {
  display: flex;
}

.navbar nav a {
  color: #334155;
  font-size: 14px;
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #ff7a00;
}

/* MENU ICON */
.menu-icon {
  display: none;
  width: 25px;
  height: 18px;
  position: relative;
  cursor: pointer;
}

.menu-icon span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #1e293b;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 7px; }
.menu-icon span:nth-child(3) { top: 14px; }

/* ANIMATION */
.menu-icon.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}

.menu-icon.active span:nth-child(2) {
  opacity: 0;
}

.menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 7px;
}

/* ================= HERO ================= */

/* HERO SECTION */
.hero{
  position: relative;

  height: 88vh;

  overflow: hidden;

  z-index: 1;
}
.hero-slider {
  position: relative;
  height: 100%;
}

/* SLIDES */
.hero-slide {
  position:  absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE FIX */
.hero-slide img {
  position: absolute;   /* 🔥 IMPORTANT */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

 animation: zoomEffect 18s ease-in-out infinite alternate;}

/* OVERLAY */
.hero-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
  z-index: 1;
}

/* CONTENT FIX */
/* CONTENT */
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  color: white;
  max-width: 700px;
}

/* SMALL TITLE */
.hero-small {
  font-size: 20px;
  letter-spacing: 2px;
  color: #ddd;
  margin-bottom: 10px;
}

/* BIG TITLE */
.hero-big {
  font-size: 55px;
  font-weight: 900;
  color: #ff4d4d;
  margin-bottom: 15px;
}

/* TEXT */
.hero-content p {
  font-size: 18px;
  color: #eee;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(45deg, #ff4d4d, #ff7a00);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ZOOM ANIMATION */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* ===== HERO TEXT STYLE (NEW) ===== */

/* ===== CLEAN HERO TEXT STYLE ===== */

.hero-main {
  font-size: 28px;          /* 🔥 reduced size */
  font-weight: 700;
  color: #fff;
  text-align: center;
  white-space: nowrap;      /* 🔥 keep in single line */
}

.hero-main span {
  color: #ff3b3b;           /* red highlight */
}

.hero-sub {
  font-size: 16px;
  color: #ddd;
  margin-top: 12px;
  margin-bottom: 20px;
  text-align: center;
}

/* BUTTON */
.hero-btn {
  background: #ff3b3b;
  padding: 10px 26px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e62e2e;
}
/* 🔹 Smaller description */
.hero-sub.small {
  font-size: 15px;
  line-height: 1.5;
}

/* 🔹 Better highlight color (no blue) */
.hero-slide:nth-child(2) .hero-main span {
  color: #ffa500; /* 🔥 warm orange (premium + matches travel) */
}

/* 🔹 Button alternate color */
.hero-btn-alt {
  background: linear-gradient(45deg, #ffa500, #ff7a00);
}

.hero-btn-alt:hover {
  background: linear-gradient(45deg, #e69500, #e66800);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* ================= BOOKING ================= */

/* ================= BOOKING PREMIUM UI ================= */

.booking {
  margin-top: -60px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  z-index: 10; 
  position: relative;
}

/* CARD */
.booking-box {
  background: linear-gradient(135deg, #ffffff, #f9fbff);
  padding: 25px;
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);

  box-shadow: 0px 15px 40px rgba(0,0,0,0.15);

  transition: 0.3s ease;
}

.booking-box:hover {
  transform: translateY(-5px);
}

/* TITLE */
.booking-box h2 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #0f172a;
}

.subtext {
  color: #64748b;
  font-size: 14px;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

/* INPUT GROUP */
.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #334155;
}

/* INPUT DESIGN */
.input-group input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  outline: none;

  transition: 0.3s;
  font-size: 14px;
}

/* FOCUS EFFECT */
.input-group input:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255,122,0,0.2);
}

/* BUTTON */
.button-group {
  display: flex;
  align-items: end;
}

.button-group button {
  background: linear-gradient(135deg, #ff4d4d, #ff0000);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  width: 100%;
  font-size: 15px;
  cursor: pointer;

  transition: 0.3s;
}

/* BUTTON HOVER */
.button-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 20px rgba(255,0,0,0.3);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .booking {
    margin-top: -40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-box {
    padding: 20px;
    border-radius: 15px;
  }

  .button-group button {
    margin-top: 10px;
  }

}

/* ================= SERVICES ================= */

.services {
  padding: 80px 20px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  padding: 25px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

/* ================= PACKAGES ================= */

.packages {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.package {
  width: 250px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.package img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ================= WHATSAPP ================= */

.whatsapp {
  position: fixed;
  bottom: 80px;
  right: 15px;
  background: green;
  color: white;
  padding: 12px 16px;
  border-radius: 30px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .menu-icon {
    display: block;
  }

  .navbar nav {
    position: absolute;
    top: 55px;
    right: 10px;
    width: 220px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);

    border-radius: 12px;
    padding: 15px;

    flex-direction: column;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .navbar nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar nav a {
    display: block;
    margin: 10px 0;
    color: #1e293b;
  }

  .hero {
    height: 60vh;
  }

  .overlay h1 {
    font-size: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .package {
    width: 90%;
  }

}
/* ================= ABOUT SECTION ================= */


/* ================= FLOATING BUTTONS (FIXED ALL DEVICES) ================= */

.floating-buttons {
  position: fixed;
  bottom: 90px;
  right: 15px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 9999; /* VERY IMPORTANT */
}

/* BUTTON BASE */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);

  transition: 0.3s;
  position: relative; /* IMPORTANT for animation */
}

/* ICON */
.float-btn img {
  width: 26px;
  height: 26px;
}

/* COLORS */
.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #ff4d4d;
}

/* HOVER */
.float-btn:hover {
  transform: scale(1.1);
}

/* PULSE ANIMATION */
.float-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

  .floating-buttons {
    bottom: 80px;  /* adjust so it doesn't overlap form */
    right: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn img {
    width: 24px;
    height: 24px;
  }

}
.why {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.why h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.why-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why-card {
  width: 220px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 12px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  background: #ff7a00;
  color: white;
}

@media(max-width:768px){
  .why-card{
    width: 90%;
  }
}
/* ================= SERVICES PREMIUM ================= */

/* SECTION */
.taxi-services {
  padding: 80px 20px;
  background: #f5f6f8;
  text-align: center;
}

.top-title {
  color: #e63946;
  font-weight: 500;
  margin-bottom: 10px;
}

.main-title {
  font-size: 34px;
  margin-bottom: 60px;
}

/* GRID */
.taxi-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.taxi-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;

  width: 100%;
  max-width: 320px;

  margin: auto;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  display: block;   /* 🔥 IMPORTANT CHANGE */
  text-align: center;
}
.taxi-card p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

/* IMAGE */
.car-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TITLE */
.taxi-card h3 {
  margin: 15px 0 8px;
  font-size: 20px;
}

/* DESC */
.taxi-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}

/* BLACK BOX */
/* ================= FINAL BOTTOM BOX ================= */

/* ================= FINAL BOTTOM BOX ================= */

.bottom-box {
  margin-top: 15px;

  height: 280px;   /* 🔥 FIXED HEIGHT */

  padding: 70px 20px 20px;

  border-radius: 20px;
  position: relative;
  overflow: visible;

  background: #000;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* GOLD BACKGROUND */
.bottom-box::before {
  content: "";
  position: absolute;

  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;

  background: radial-gradient(circle, rgba(212,175,55,0.35) 1px, transparent 1px);
  background-size: 35px 35px;

  animation: goldMove 18s linear infinite;

  opacity: 0.3;
  z-index: 1;
}

/* KEEP CONTENT ABOVE */
.bottom-box * {
  position: relative;
  z-index: 2;
}

/* GOLD ANIMATION */
@keyframes goldMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(-40px,-40px); }
}

/* ICON CIRCLE */
.circle {
  position: absolute;
  top: -15px;   /* 🔥 change this value */

  left: 50%;
  transform: translateX(-50%);

  width: 75px;
  height: 75px;

  background: #2f4da0;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3;
}



/* GOLD RING */
.circle::before {
  content: "";
  position: absolute;

  width: 110px;
  height: 110px;

  border: 2px dashed #d4af37;
  border-radius: 50%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  animation: rotateRing 6s linear infinite;
}

/* ROTATION */
@keyframes rotateRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ICON */
.circle i {
  color: white;
  font-size: 30px;
}

/* BUTTONS */
.btn-call,
.btn-wa {
  width: 80%;
  padding: 14px;
  border-radius: 30px;
  margin: 10px 0;
  text-decoration: none;
  color: white;
  font-weight: 500;
  text-align: center;
}

/* COLORS */
.btn-call {
  background: linear-gradient(45deg, #ff3b3b, #e63946);
}

.btn-wa {
  background: linear-gradient(45deg, #25D366, #4CAF50);
}


/* ICON STYLE */
.circle i {
  color: white;
  font-size: 30px;
}


/* CALL BUTTON */
.btn-call {
  background: linear-gradient(45deg, #ff3b3b, #e63946);
}

/* WHATSAPP BUTTON */
.btn-wa {
  background: linear-gradient(45deg, #25D366, #4CAF50);
}

/* HOVER GLOW */
.btn-call:hover,
.btn-wa:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
}

/* SHINE EFFECT */
.btn-call::after,
.btn-wa::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.btn-call:hover::after,
.btn-wa:hover::after {
  left: 100%;
}


/* MOBILE */
@media(max-width:768px){
  .main-title {
    font-size: 22px;
  }
}

  .taxi-card {
  transition: 0.4s ease;
}

.taxi-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.taxi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 40px rgba(0,0,0,0.2);
}



@keyframes rotateRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}


.btn-call,
.btn-wa {
  position: relative;
  overflow: hidden;
}
.circle {
  will-change: transform;
}

/* ANIMATION */
@keyframes moveLines {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-60px, -60px);
  }
}
.taxi-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;   /* reduce from big gap */
  max-width: 1100px;  /* container smaller */
  margin: auto;
}
.taxi-card img {
  width: 100%;
  height: 140px;   /* reduce height */
  object-fit: contain;
  margin-bottom: 10px;
}
.taxi-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.taxi-card img {
  height: 140px;
}
/* ================= HEADING DESIGN ================= */

.services-heading {
  text-align: center;
  margin-bottom: 50px;
}

/* SMALL TAG */
.services-heading .tag {
  display: inline-block;
  color: #ff3c3c;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* MAIN HEADING */
.services-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

/* HIGHLIGHT WORDS */
.services-heading h2 span {
  color: #ff7a00;
  position: relative;
}

/* UNDERLINE EFFECT */
.services-heading h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00, #ff3c3c);
  border-radius: 5px;
}

/* DESCRIPTION */
.services-heading p {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* ================= MOBILE ================= */

@media(max-width:768px) {
  .services-heading h2 {
    font-size: 26px;
  }

  .services-heading p {
    font-size: 14px;
  }
}
.taxi-card h3 {
  font-size: 18px;
  margin: 8px 0;
}

.taxi-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;   /* reduced */
}

/* SECTION BACKGROUND */
.features {
  position: relative;
  padding: 100px 20px;
  background: url('images/bg3.png') center/cover no-repeat;
  color: white;
}
.features {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* DARK OVERLAY */
.features-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

/* CONTENT */
.features .container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TAG */
.tag {
  color: #ff3b3b;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* TITLE */
.title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);

  padding: 30px 20px;
  border-radius: 20px;

  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255,255,255,0.15);
}

/* ICON */
.icon {
  width: 70px;
  height: 70px;

  margin: auto;
  margin-bottom: 15px;

  border-radius: 50%;
  background: linear-gradient(45deg, #ff3b3b, #ff7a00);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: white;
}

/* TEXT */
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .title {
    font-size: 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px 15px;
  }
}

/* ===== ATTRACTIONS SECTION ===== */
/* ===== ATTRACTIONS SECTION ===== */
/* ===== ATTRACTIONS SECTION ===== */
/* SECTION */
.attractions {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

/* TITLE */
.attr-title {
  font-size: 32px;
  font-weight: 800;
  color: #c5004f;
  margin-bottom: 40px;
}

/* GRID */
.attr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;

  width: 100%;        /* 🔥 ADD THIS */
  max-width: 1200px;  /* 🔥 increase slightly */
  margin: auto;
}

/* CARD */
.attr-card {
  height: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
}

/* IMAGE FIX (IMPORTANT) */
.attr-card img {
  width: 100%;
  height: 180px;          /* 🔥 FIXED HEIGHT = SAME SIZE */
  object-fit: cover;      /* 🔥 NO DISTORTION */
  border-radius: 12px;
}

/* TITLE */
.attr-card h3 {
  font-size: 18px;
  margin: 15px 0;
  font-weight: 600;
}

/* BUTTON CONTAINER */
.btn-group {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1; 
  height: 42px;

  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none;

  transition: all 0.3s ease; /* 🔥 smooth */
}
/* ONLY FOR ATTRACTION CARDS */


/* ONLY FOR ATTRACTIONS */
.attr-btn-wa {
  background: #0aa10a;
}

.attr-btn-call {
  background: #c5004f;
}



/* HOVER */
/* COMMON BUTTON HOVER */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.attr-desc {
  font-size: 17px;
  color: #444;
  margin-bottom: 40px;
  font-weight: 500;
}

.attr-desc span {
  background: linear-gradient(45deg, #c5004f, #ff7a00);

  -webkit-background-clip: text; /* for Chrome */
  background-clip: text;         /* for standard */

  -webkit-text-fill-color: transparent;

  font-weight: 700;
}
@media (max-width: 768px) {
  .attr-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  /* GRID → SINGLE COLUMN */
  .attr-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CARD */
  .attr-card {
    padding: 12px;
  }

  /* IMAGE */
  .attr-card img {
    height: 160px;
  }

  /* TITLE */
  .attr-card h3 {
    font-size: 16px;
  }

  /* BUTTONS → STACKED */
  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* FULL WIDTH BUTTONS */
  .btn {
    width: 90%;
    height: 42px;
    font-size: 15px;
  }

  /* HEADING */
  .attr-title {
    font-size: 24px;
  }

  /* DESCRIPTION */
  .attr-desc {
    font-size: 14px;
    padding: 0 10px;
  }

}

/* ABOUT SECTION */

/* BOOK NOW BUTTON */
.btn-book {
  display: inline-block;
  width: 72%;              /* slightly bigger */
  text-align: center;

  background: linear-gradient(45deg, #ff3b3b, #ff7a00);
  color: #fff;

  padding: 14px 0;         /* increased height */
  border-radius: 12px;

  font-weight: 600;
  font-size: 17px;         /* slightly bigger text */

  box-shadow: 0 8px 18px rgba(255, 100, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: linear-gradient(45deg, #ff1e56, #ff0066);  /* premium pink-red tone */

  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(255, 0, 100, 0.4);
}

/* CENTER BUTTON */
.btn-group {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

/* HOVER EFFECT */
.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
.attr-card {
  transition: 0.3s ease;
}


.attr-card h3 {
  margin: 12px 0 10px;
  font-size: 19px;
  font-weight: 600;
}
/* ================= REVIEWS SLIDER ================= */

.reviews-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  overflow: hidden;
}

/* HEADING */
.reviews-heading {
  text-align: center;
  margin-bottom: 55px;
}

.reviews-heading span {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;

  background: linear-gradient(45deg, #ff3b3b, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-heading h2 {
  font-size: 42px;
  font-weight: 800;
  margin-top: 15px;
  color: #111;
}

.reviews-heading h2 span {
  background: linear-gradient(45deg, #ff0057, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-heading p {
  margin-top: 15px;
  color: #666;
  font-size: 16px;
}

/* SLIDER */
.reviews-slider {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 25px;
  width: max-content;

  animation: scrollReviews 45s linear infinite;
}

/* PAUSE ON HOVER */
.reviews-slider:hover .reviews-track {
  animation-play-state: paused;
}

/* REVIEW CARD */
.review-card {
  width: 320px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* TOP */
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

/* PROFILE */
.review-profile {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: linear-gradient(45deg, #ff3b3b, #ff7a00);

  color: white;
  font-size: 24px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 18px rgba(255,100,0,0.3);
}

.review-top h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.review-top small {
  color: #777;
}

/* STARS */
.stars {
  color: #ffb400;
  font-size: 20px;
  margin-bottom: 15px;
}

/* TEXT */
.review-card p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* ANIMATION */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .reviews-heading h2 {
    font-size: 28px;
  }

  .review-card {
    width: 280px;
  }

  .reviews-track {
    animation-duration: 25s;
  }
}

/* ================= CLEAN FOOTER ================= */

.footer {
  background: #04103a;
  color: white;

  width: 100%;

  padding-top: 55px;

  margin: 0;
}

/* CONTAINER */
.footer-container {
  max-width: 1400px;

  margin: auto;
  padding: 0 50px 35px;

  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr;

  gap: 60px;

  padding-bottom: 35px;
}

/* LEFT SIDE */
.footer-box h2 {
  font-size: 42px;

  color: #ff6b00;

  line-height: 1.2;

  margin-bottom: 20px;
}

.footer-box p {
  color: #d1d5db;

  font-size: 16px;

  line-height: 1.9;
}

/* HEADINGS */
.footer-box h3 {
  font-size: 28px;

  margin-bottom: 22px;
}

/* LINKS */
.footer-box a {
  display: block;

  color: #d1d5db;

  text-decoration: none;

  margin-bottom: 16px;

  transition: 0.3s ease;

  font-size: 17px;
}

.footer-box a:hover {
  color: #3b82f6;
}

/* RATING */
.footer-rating {
  margin-top: 25px;

  color: #ffb400;

  font-size: 32px;

  letter-spacing: 3px;
}

.rating-text {
  display: block;

  margin-top: 10px;

  color: #d1d5db;

  font-size: 15px;
}

/* CONTACT */
.contact-item {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 22px;
}

.contact-item i {
  color: #ff7a00;

  font-size: 18px;

  min-width: 18px;
}

.contact-item a,
.contact-item span {
  color: #d1d5db;

  text-decoration: none;

  font-size: 17px;

  transition: 0.3s ease;
}

.contact-item a:hover {
  color: #3b82f6;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);

  max-width: 1400px;

  margin: auto;

  padding: 22px 50px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

/* COPYRIGHT */
.copyright {
  color: #94a3b8;

  font-size: 15px;
}

/* DEVELOPER */
.developer-section {
  text-align: right;
}

.developer-section span {
  display: block;

  color: #94a3b8;

  font-size: 12px;

  margin-bottom: 6px;

  letter-spacing: 1px;
}

/* DEVELOPER LINK */
.developer-link {
  color: #25d366;

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-weight: 600;

  transition: 0.3s ease;
}

.developer-link:hover {
  color: #3b82f6;
}

/* MOBILE */
@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 40px;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 18px;

    text-align: center;
  }

  .developer-section {
    text-align: center;
  }

}
html,
body{
  overflow-x: hidden;
}

/* ===== PAGE HERO ===== */

.page-hero{
  height: 420px;

  position: relative;

  overflow: hidden;
}

.page-hero img{
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.page-overlay{
  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.55);
}

.page-hero-content{
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;

  color: white;

  z-index: 2;
}

.page-hero-content h1{
  font-size: 60px;

  font-weight: 700;

  margin-bottom: 15px;
}

.page-hero-content p{
  font-size: 22px;

  letter-spacing: 2px;
}

/* ===== INTRO ===== */

.services-intro{
  max-width: 1100px;

  margin: auto;

  text-align: center;

  padding: 90px 25px 70px;
}

.service-tag{
  color: #ff6b00;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 15px;

  position: relative;
}

.services-intro h2{
  font-size: 58px;

  line-height: 1.25;

  margin: 22px 0 28px;

  font-family: 'Playfair Display', serif;

  font-weight: 700;

  color: #04103a;

  position: relative;
}

.services-intro p{
  color: #555;

  line-height: 2.1;

  font-size: 18px;

  max-width: 950px;

  margin: auto;
}

/* ===== CTA ===== */

.service-cta{
  background: linear-gradient(45deg,#ff5f00,#ff8a00);

  color: white;

  text-align: center;

  padding: 80px 20px;
}

.service-cta h2{
  font-size: 46px;

  margin-bottom: 18px;
}

.service-cta p{
  font-size: 18px;

  margin-bottom: 30px;
}

.service-cta a{
  display: inline-block;

  background: white;

  color: #ff5f00;

  padding: 16px 38px;

  border-radius: 10px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.service-cta a:hover{
  background: #04103a;

  color: white;
}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px){

  /* HERO */
  .page-hero{
    height: 300px;
  }

  .page-hero-content h1{
    font-size: 38px;
  }

  .page-hero-content p{
    font-size: 16px;
  }

  /* INTRO */
  .services-intro{
    padding: 60px 20px;
  }

  .services-intro h2{
    font-size: 34px;
  }

  .services-intro p{
    font-size: 15px;

    line-height: 1.8;
  }

  /* TAXI CARDS */
  .taxi-container{
    grid-template-columns: 1fr;
  }

  .taxi-card{
    width: 100%;
  }

  /* CTA */
  .service-cta{
    padding: 60px 20px;
  }

  .service-cta h2{
    font-size: 32px;
  }

  .service-cta p{
    font-size: 15px;
  }

  .service-cta a{
    padding: 14px 28px;

    font-size: 15px;
  }

}

.active-link{
  color: #ff6b00 !important;

  font-weight: 700;
}

/* ===== ATTRACTIONS ===== */

.attractions{
  padding: 90px 5%;
}

.attractions-container{
  display: grid;

  grid-template-columns:
  repeat(auto-fit, minmax(320px,1fr));

  gap: 35px;

  margin-top: 60px;
}

.attraction-card{
  background: white;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

  transition: 0.4s;
}

.attraction-card:hover{
  transform: translateY(-10px);
}

.attraction-card img{
  width: 100%;

  height: 240px;

  object-fit: cover;
}

.attraction-card h3{
  font-size: 28px;

  padding: 25px 25px 10px;
}

.attraction-card p{
  padding: 0 25px;

  line-height: 1.8;

  color: #555;
}

.attraction-card a{
  display: inline-block;

  margin: 25px;

  background: linear-gradient(45deg,#ff5f00,#ff8a00);

  color: white;

  padding: 14px 30px;

  border-radius: 10px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.attraction-card a:hover{
  background: #04103a;
}

/* PREMIUM GRADIENT TEXT */
.gradient-text{
  background: linear-gradient(
    45deg,
    #ff5f00,
    #ff9500
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

/* ===== CONTACT CARDS ===== */

.contact-cards{
  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap: 35px;

  padding: 40px 5% 80px;
}


.contact-card:hover{
  transform: translateY(-12px);
}


.contact-icon i{
  color: white;

  font-size: 34px;
}

.contact-card h3{
  font-size: 30px;

  margin-bottom: 15px;
}

.contact-card a,
.contact-card p{
  color: #555;

  text-decoration: none;

  font-size: 18px;
}

/* ===== FORM ===== */

.contact-form-section{
  padding: 80px 5%;
}

.contact-form-container{
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.contact-form-content h2{
  font-size: 54px;

  line-height: 1.3;

  margin: 20px 0;

  font-family: 'Playfair Display', serif;
}

.contact-form-content p{
  line-height: 2;

  color: #555;

  font-size: 17px;
}

/* FORM */
.contact-form{
  background: white;

  padding: 45px;

  border-radius: 20px;

  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
  width: 100%;

  padding: 18px;

  border: 1px solid #ddd;

  border-radius: 10px;

  margin-bottom: 20px;

  font-size: 16px;

  font-family: inherit;
}

.contact-form textarea{
  height: 150px;

  resize: none;
}

.contact-form button{
  width: 100%;

  background: linear-gradient(
    45deg,
    #ff5f00,
    #ff9500
  );

  color: white;

  border: none;

  padding: 18px;

  border-radius: 10px;

  font-size: 17px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover{
  background: #04103a;
}

/* ===== MAP ===== */

.map-section{
  padding: 0 5% 90px;
}

.map-section iframe{
  width: 100%;

  height: 450px;

  border: none;

  border-radius: 20px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  .contact-form-container{
    grid-template-columns: 1fr;
  }

  .contact-form-content{
    text-align: center;
  }

  .contact-form-content h2{
    font-size: 38px;
  }

}

/* ===== CONTACT CARDS ===== */

.contact-cards{
  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap: 35px;

  padding: 40px 5% 80px;
}

.contact-card{
  background: white;

  border-radius: 22px;

  padding: 45px 30px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: 0.4s;
}

.contact-card:hover{
  transform: translateY(-12px);
}

/* ICON BOX */
.contact-icon{
  width: 90px;
  height: 90px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  margin: auto auto 28px;
}

.contact-icon i{
  color: white;

  font-size: 36px;
}

/* CALL */
.call-card .contact-icon{
  background: linear-gradient(
    45deg,
    #2563eb,
    #3b82f6
  );
}

.call-card:hover{
  background: rgba(37,99,235,0.06);
}

/* WHATSAPP */
.whatsapp-card .contact-icon{
  background: linear-gradient(
    45deg,
    #25d366,
    #128c7e
  );
}

.whatsapp-card:hover{
  background: rgba(37,211,102,0.08);
}

/* LOCATION */
.location-card .contact-icon{
  background: linear-gradient(
    45deg,
    #ff5f00,
    #ff9500
  );
}

.location-card:hover{
  background: rgba(255,95,0,0.08);
}

/* TEXT */
.contact-card h3{
  font-size: 30px;

  margin-bottom: 15px;
}

.contact-card a,
.contact-card p{
  color: #555;

  text-decoration: none;

  font-size: 18px;

  transition: 0.3s;
}

.contact-card a:hover{
  color: #04103a;
}

nav a{
  position: relative;
}

nav a::after{
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: #ff6b00;

  transition: 0.3s;
}

nav a:hover::after,
.active-link::after{
  width: 100%;
}

.hero-slide img,
.page-hero img{
  transform: scale(1.05);

  transition: 8s ease;
}

.hero-slide.active img{
  transform: scale(1);
}

.hero-btn,
.btn-book,
.btn-call,
.btn-wa{
  position: relative;

  overflow: hidden;
}

.hero-btn::before,
.btn-book::before{
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: rgba(255,255,255,0.2);

  transition: 0.5s;
}

.hero-btn:hover::before,
.btn-book:hover::before{
  left: 100%;
}

/* ================= MOBILE NAVBAR ================= */

.menu-icon{
  display: none;

  flex-direction: column;

  cursor: pointer;

  gap: 6px;
}

.menu-icon span{
  width: 28px;

  height: 3px;

 background: #04103a;

  border-radius: 5px;

  transition: 0.3s;
}

/* ===================================================== */
/* ================ FINAL MOBILE VERSION =============== */
/* ===================================================== */

@media screen and (max-width: 768px){

  /* BODY */
  body{
    overflow-x: hidden;
    padding-top: 0;
  }

  /* ================= NAVBAR ================= */

  .navbar{
    height: 72px;

    padding: 0 18px;
  }

  .navbar h2{
    font-size: 16px;

    line-height: 1.4;

    max-width: 230px;
  }

  /* MENU ICON */
  .menu-icon{
    display: flex;

    flex-direction: column;

    gap: 5px;
  }

  .menu-icon span{
    width: 28px;

    height: 3px;

    background: #04103a;

    border-radius: 5px;
  }

  /* MOBILE MENU */
  .navbar nav{
    position: absolute;

    top: 72px;

    right: 15px;

    width: 230px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    padding: 20px;

    display: flex;

    flex-direction: column;

    gap: 15px;
  }

  .navbar nav a{
    color: #04103a;

    font-size: 16px;

    font-weight: 600;
  }

  /* ================= HERO ================= */

 .hero{
  height: 60vh;
}

  /* HERO IMAGE */
  .hero-slide img{
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;
  }

  /* SECOND SLIDE */
  .hero-slide:nth-child(2) img{
    object-position: center center;
  }

  /* HERO CONTENT */
  .hero-content{
  width: 100%;

  max-width: 300px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  text-align: center;

  padding: 0 15px;
}

  /* HERO HEADING */
  .hero-main{
  font-size: 15px;

  line-height: 1.6;

  font-weight: 800;

  text-transform: uppercase;

  margin-bottom: 12px;

  white-space: normal;
}

  /* HERO DESCRIPTION */
  .hero-sub{
  font-size: 12px;

  line-height: 1.8;

  margin-bottom: 20px;

  color: rgba(255,255,255,0.92);
}

  /* HERO BUTTON */
 .hero-btn{
  padding: 12px 28px;

  font-size: 14px;

  border-radius: 40px;
}

  /* ================= BOOKING ================= */

 .booking{
  margin-top: -20px;

  padding: 0 14px;

  position: relative;

  z-index: 10;
}

  .booking-box{
    width: 100%;

    border-radius: 28px;

    padding: 24px 20px;
  }

  .booking-box h2{
    font-size: 24px;

    line-height: 1.4;

    margin-bottom: 10px;
  }

  .subtext{
    font-size: 14px;

    line-height: 1.8;
  }

  /* FORM */
  .form-grid{
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .input-group label{
    font-size: 15px;
  }

  .input-group input{
    height: 54px;

    font-size: 15px;

    border-radius: 12px;
  }

  .button-group button{
    height: 54px;

    font-size: 16px;

    border-radius: 12px;
  }

  /* ================= SERVICES ================= */

  .services-heading h2,
  .main-title,
  .title,
  .attr-title,
  .reviews-heading h2{
    font-size: 28px;

    line-height: 1.4;
  }

  /* ================= ABOUT ================= */



  /* ================= CARDS ================= */

  .feature{
    padding: 16px;
  }

  /* ================= FLOATING BUTTONS ================= */

 .floating-buttons{
  right: 10px;

  bottom: 80px;

  gap: 12px;
}

  .float-btn{
    width: 58px;

    height: 58px;
  }

  /* ================= FOOTER ================= */

  .footer{
    text-align: center;
  }

  .footer-container{
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 0 22px 35px;
  }

  .footer-box h2{
    font-size: 34px;

    line-height: 1.3;
  }

  .footer-box h3{
    font-size: 24px;
  }

  .footer-box p{
    font-size: 15px;

    line-height: 1.9;
  }

  .footer-bottom{
    flex-direction: column;

    gap: 15px;

    text-align: center;

    padding: 20px;
  }

  .copyright{
    font-size: 14px;

    line-height: 1.7;
  }

  .developer{
    text-align: center;
  }

  /* ================= PAGE HERO ================= */

  .page-hero{
    height: 300px;
  }

  .page-hero-content{
    width: 92%;
  }

  .page-hero-content h1{
    font-size: 36px;

    line-height: 1.3;
  }

  .page-hero-content p{
    font-size: 15px;

    line-height: 1.7;
  }

  /* ================= CONTACT ================= */

  .contact-form{
    padding: 28px 20px;
  }

  .contact-form input,
  .contact-form textarea{
    font-size: 15px;
  }

}

/* ===================================================== */
/* ================== ANIMATIONS ======================= */
/* ===================================================== */

.hero-content{
  animation: heroFade 1.2s ease;
}

.booking-box{
  animation: bookingUp 1.2s ease;
}

@keyframes heroFade{

  from{
    opacity: 0;

    transform: translate(-50%, -40%);
  }

  to{
    opacity: 1;

    transform: translate(-50%, -50%);
  }

}

@keyframes bookingUp{

  from{
    opacity: 0;

    transform: translateY(80px);
  }

  to{
    opacity: 1;

    transform: translateY(0);
  }

}


/* ===================================
   MOBILE SERVICES GAP FIX
=================================== */

@media screen and (max-width: 768px){

  /* ABOUT SECTION */

  .about-section{
    padding-bottom: 12px !important;
  }

  /* SERVICES SECTION */

  .taxi-services{
    padding: 20px 16px 50px !important;
    margin-top: 0 !important;
  }

  /* MAIN TITLE */

  .main-title{
    font-size: 28px;
    margin-bottom: 35px;
    line-height: 1.4;
  }

  /* GRID */

  .taxi-grid{
    gap: 18px;
  }

  /* CARD */

  .taxi-card{
    padding: 18px;
    border-radius: 18px;
  }

  /* IMAGE */

  .car-img{
    height: 160px;
    object-fit: contain;
  }

  /* TITLE */

  .taxi-card h3{
    font-size: 19px;
    margin: 12px 0 8px;
  }

  /* DESCRIPTION */

  .taxi-card p{
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

}

/* ===================================
   MOBILE REVIEW SECTION FIX
=================================== */

@media (max-width: 768px){

  /* SECTION */

  .reviews-section{
    padding: 30px 16px 45px !important;
  }

  /* HEADING */

  .reviews-heading{
    margin-bottom: 28px !important;
  }

  .reviews-heading span{
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .reviews-heading h2{
    font-size: 30px !important;
    line-height: 1.35;
    margin-top: 10px;
    margin-bottom: 12px;
  }

  .reviews-heading p{
    font-size: 14px;
    line-height: 1.8;
    padding: 0 8px;
  }

  /* SLIDER */

  .reviews-slider{
    margin-top: 10px;
  }

  .reviews-track{
    gap: 18px;
    animation-duration: 22s !important;
  }

  /* CARD */

  .review-card{
    width: 260px !important;

    padding: 20px;

    border-radius: 20px;
  }

  .review-card:hover{
    transform: none;
  }

  /* TOP */

  .review-top{
    gap: 12px;
    margin-bottom: 12px;
  }

  /* PROFILE */

  .review-profile{
    width: 52px;
    height: 52px;

    font-size: 20px;
  }

  .review-top h3{
    font-size: 16px;
  }

  .review-top small{
    font-size: 12px;
  }

  /* STARS */

  .stars{
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* TEXT */

  .review-card p{
    font-size: 14px;
    line-height: 1.7;
  }

}

/* ===================================
   MOBILE FOOTER PREMIUM VERSION
=================================== */

/* ===================================
   COMPACT PREMIUM MOBILE FOOTER
=================================== */

@media (max-width: 768px){

  .footer{
    background: #00145c;

    padding-top: 28px;

    border-radius: 22px 22px 0 0;

    overflow: hidden;
  }

  /* CONTAINER */

  .footer-container{
    grid-template-columns: 1fr;

    gap: 22px;

    padding: 0 22px 22px;
  }

  /* FIRST BOX */

  .footer-box:first-child{
    text-align: center;
  }

  /* TITLE */

  .footer-box h2{
    font-size: 24px;

    line-height: 1.4;

    color: #ff6a00;

    margin-bottom: 14px;

    font-weight: 800;
  }

  /* DESCRIPTION */

  .footer-box p{
    font-size: 14px;

    line-height: 1.8;

    color: #dbe4ff;

    margin-bottom: 14px;
  }

  /* RATING */

  .footer-rating{
    margin-top: 10px;

    font-size: 24px;

    letter-spacing: 2px;

    text-align: center;
  }

  .rating-text{
    margin-top: 6px;

    font-size: 13px;

    text-align: center;

    color: #dbe4ff;
  }

  /* HEADINGS */

  .footer-box h3{
    font-size: 18px;

    margin-bottom: 14px;

    color: white;

    font-weight: 700;
  }

  /* QUICK LINKS */

  .footer-box a{
    font-size: 15px;

    margin-bottom: 10px;

    color: #e8ecff;
  }

  /* CONTACT */

  .contact-item{
    gap: 10px;

    margin-bottom: 14px;

    align-items: flex-start;
  }

  .contact-item i{
    font-size: 16px;

    margin-top: 3px;
  }

  .contact-item span,
  .contact-item a{
    font-size: 14px;

    line-height: 1.6;
  }

  /* ICON COLORS */

  .fa-phone{
    color: #ff9800;
  }

  .fa-location-dot{
    color: #ff5252;
  }

  .fa-whatsapp{
    color: #25d366;
  }

  /* BOTTOM */

  .footer-bottom{
    flex-direction: column;

    gap: 12px;

    text-align: center;

    padding: 18px 20px;

    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* COPYRIGHT */

  .copyright{
    font-size: 12px;

    line-height: 1.6;

    color: #dbe4ff;
  }

  /* DEVELOPER */

  .developer-section{
    text-align: center;
  }

  .developer-section span{
    font-size: 11px;

    margin-bottom: 6px;

    color: #cbd5e1;

    letter-spacing: 1px;
  }

  .developer-link{
    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-size: 14px;

    background: rgba(255,255,255,0.08);

    padding: 10px 16px;

    border-radius: 10px;

    color: #25d366;

    font-weight: 600;
  }

}

/* =========================
   ABOUT SECTION
========================= */

/* ===================================
   ABOUT SECTION PERFECT FINAL
=================================== */

.about-section{

    padding: 70px 20px;

    background: #f5f6f8;
}

/* MAIN CONTAINER */

.about-container{

    max-width: 1000px;

    margin: auto;

    text-align: center;
}

/* IMAGE */

.about-image{

    margin-bottom: 35px;
}

.about-image img{

    width: 100%;

    max-width: 850px;

    height: 320px;

    object-fit: cover;

    border-radius: 26px;

    display: block;

    margin: auto;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* TAG */

.about-tag{

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #ffe4ec;

    color: #ff3b6b;

    padding: 12px 24px;

    border-radius: 40px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 22px;
}

/* HEADING */

.about-content h2{

    font-size: 48px;

    line-height: 1.3;

    font-weight: 800;

    color: #07143b;

    margin-bottom: 20px;
}

.about-content h2 span{

    background: linear-gradient(45deg,#ff3b3b,#ff7a00);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */

.about-content p{

    max-width: 900px;

    margin: auto;

    font-size: 18px;

    line-height: 2;

    color: #475569;

    margin-bottom: 45px;
}

/* FEATURES */

.about-features{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    max-width: 1150px;

    margin: 60px auto 0;
}

/* FEATURE CARD */

.feature-item{

    background: #ffffff;

    border-radius: 24px;

    padding: 28px 24px;

    min-height: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 18px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}



/* ICON */

.feature-item i{

    width: 58px;

    height: 58px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 22px;

    flex-shrink: 0;
}

/* ICON COLORS */

.feature-item:nth-child(1) i{
    background: linear-gradient(45deg,#ff4d6d,#ff758f);
}

.feature-item:nth-child(2) i{
    background: linear-gradient(45deg,#ff9800,#ffb347);
}

.feature-item:nth-child(3) i{
    background: linear-gradient(45deg,#7b2ff7,#b06cff);
}

.feature-item:nth-child(4) i{
    background: linear-gradient(45deg,#2196f3,#64b5ff);
}

.feature-item:nth-child(5) i{
    background: linear-gradient(45deg,#00c853,#69f0ae);
}

/* TEXT */
.feature-item span{

    font-size: 24px;

    font-weight: 700;

    color: #07143b;

    line-height: 1.5;

    text-align: center;
}
/* LAST 2 CARDS CENTER */

/* CENTER LAST 2 CARDS */

/* PERFECT CENTER FOR LAST 2 CARDS */

/* =================================
   DESKTOP ONLY FEATURE GRID
================================= */

@media(min-width:769px){

    .about-features{

        display: grid;

        grid-template-columns: repeat(6, 1fr);

        gap: 28px;

        max-width: 1150px;

        margin: 60px auto 0;
    }

    /* TOP 3 */

    .feature-item:nth-child(1){

        grid-column: 1 / 3;
    }

    .feature-item:nth-child(2){

        grid-column: 3 / 5;
    }

    .feature-item:nth-child(3){

        grid-column: 5 / 7;
    }

    /* BOTTOM CENTER 2 */

    .feature-item:nth-child(4){

        grid-column: 2 / 4;
    }

    .feature-item:nth-child(5){

        grid-column: 4 / 6;
    }

}

/* =================================
   MOBILE VERSION PERFECT FINAL
================================= */

@media(max-width:768px){

    /* ABOUT SECTION */

    .about-section{

        padding: 45px 18px;
    }

    .about-container{

        width: 100%;
    }

    /* IMAGE */

    .about-image{

        margin-bottom: 22px;
    }

    .about-image img{

        width: 100%;

        height: 200px;

        object-fit: cover;

        border-radius: 22px;
    }

    /* TAG */

    .about-tag{

        padding: 10px 22px;

        font-size: 11px;

        letter-spacing: 3px;

        margin-bottom: 18px;
    }

    /* HEADING */

    .about-content h2{

        font-size: 30px;

        line-height: 1.4;

        margin-bottom: 18px;
    }

    /* DESCRIPTION */

    .about-content p{

        font-size: 15px;

        line-height: 2;

        color: #475569;

        margin-bottom: 30px;
    }

    /* FEATURES CONTAINER */

    .about-features{

        display: flex !important;

        flex-direction: column !important;

        gap: 16px;

        width: 100%;

        margin-top: 0;
    }

    /* FEATURE CARD */

    .feature-item{

        width: 100% !important;

        padding: 18px;

        border-radius: 18px;

        display: flex;

        flex-direction: row !important;

        align-items: center;

        justify-content: flex-start;

        gap: 16px;

        text-align: left;

        min-height: auto;

        background: #fff;

        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    /* ICON */

    .feature-item i{

        width: 52px;

        height: 52px;

        border-radius: 14px;

        font-size: 18px;

        flex-shrink: 0;
    }

    /* TEXT */

    .feature-item span{

        font-size: 16px;

        font-weight: 700;

        line-height: 1.5;

        text-align: left !important;

        color: #07143b;
    }

}

/* ================= LOGO ================= */

/* ================= LOGO ================= */
/* ================= LOGO ================= */

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;

    margin-left:-6px;   /* move logo little left */
}

.logo img{
    width:190px;        /* desktop size */
    height:auto;

    object-fit:contain;
    display:block;

    margin-top:-2px;    /* move logo slightly up */
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .logo{
        margin-left:-28px;  /* mobile left align */
    }

    .logo img{
        width:200px;        /* smaller mobile logo */
        margin-top:-5px;    /* little higher */
    }

}

/* ================= ACTIVE MENU LINK ================= */

/* DESKTOP ACTIVE LINK */

.navbar nav a.active{
    color:#ff6b00;

    font-weight:700;
}

.navbar nav a.active::after{
    width:100%;
}

/* ================= MOBILE ACTIVE LINK ================= */

@media(max-width:768px){

    .navbar nav a.active{
        background:#fff4eb;

        color:#ff6b00;

        font-weight:700;

        border-left:4px solid #ff6b00;
    }

    .navbar nav a.active::after{
        width:0;
    }

}

/* ================= WEBSITE IMAGE DESIGN ================= */

/* ALL PAGE IMAGES */

img{
    max-width:100%;

    display:block;
}

/* IMAGE BOX */

.image-box{
    position:relative;

    overflow:hidden;

    border-radius:22px;

    border:2px solid rgba(255,255,255,0.6);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.10),
    0 4px 12px rgba(255,106,0,0.08);

    background:#fff;

    transition:0.4s ease;
}

/* IMAGE */

.image-box img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

/* HOVER EFFECT */

.image-box:hover{
    transform:translateY(-6px);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.14),
    0 8px 18px rgba(255,106,0,0.12);
}

.image-box:hover img{
    transform:scale(1.05);
}

/* PREMIUM GLOW BORDER */

.image-box::before{
    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    padding:2px;

    background:
    linear-gradient(
    135deg,
    rgba(255,106,0,0.45),
    rgba(255,255,255,0.4),
    rgba(255,106,0,0.25)
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    pointer-events:none;
}

/* ================= IMAGE GRIDS ================= */

.image-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:28px;

    margin-top:40px;
}

/* ================= ABOUT PAGE IMAGE ================= */

.about-banner{
    width:100%;

    height:420px;

    border-radius:28px;

    overflow:hidden;

    position:relative;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.12);
}

.about-banner img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* DARK OVERLAY */

.about-banner::after{
    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.10)
    );
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .image-grid{
        grid-template-columns:1fr;

        gap:20px;
    }

    .about-banner{
        height:260px;

        border-radius:20px;
    }

    .image-box{
        border-radius:18px;
    }

}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f3f4f6;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
    #ff6b00,
    #ff3b3b
    );

    border-radius:20px;
}

/* ================= SCROLL ANIMATION ================= */

.fade-up{
    opacity:0;

    transform:translateY(40px);

    transition:all 1s ease;
}

.fade-up.show{
    opacity:1;

    transform:translateY(0);
}