﻿
/* ================= GLOBAL ================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}
html, body {
  overflow-x: hidden !important;
}

.topBar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 4px 60px;
    color: white;
    font-size: 12px;
    background:#0f2027;
    position:relative;
    overflow:hidden;
}

/* glowing animation */
.topBar::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,#00d9ff,transparent);
    animation:shine 4s infinite;
}

/* LEFT SECTION */
.topBarLeft{
    display:flex;
    align-items:center;
}

.phoneItem{
    margin-right:20px;
    position:relative;
    z-index:1;
}

.emailItem{
    position:relative;
    z-index:1;
}

/* make links look same as text */
.phoneItem a,
.emailItem a{
    color:white;
    text-decoration:none;
}

.phoneItem a:hover,
.emailItem a:hover{
    color:#00d9ff;
}

/* RIGHT SECTION */
.topBarRight{
    display:flex;
    align-items:center;
}

/* SOCIAL ICONS */
.facebookIcon,
.instagramIcon,
.twitterIcon{
    margin-left:18px;
    cursor:pointer;
    transition:0.4s;
    position:relative;
    z-index:1;
}

.facebookIcon:hover,
.instagramIcon:hover,
.twitterIcon:hover{
    color:#00d9ff;
    transform:scale(1.3) rotate(8deg);
}

/* ================= HEADER CONTAINER ================= */
.main-header {
    display: flex;
    align-items: center; /* FIX ALIGNMENT */
    
    height:69px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    animation: slideInDown 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* ================= MOVING LINE ================= */
.moving-line {
    position: absolute;
    bottom: 0;
    right: 20%;
    width: 137%;
    height: 9px;
    background: linear-gradient(90deg, transparent, #00d9ff, #ffffff, transparent);
    animation: borderMoveLeft 3s linear infinite;
    z-index: 10;
}

/* ================= LEFT SIDE ================= */
.header-left {
    flex: 1;
    display: flex;
    align-items: center; /* FIX */
    padding-left: 40px;
    border-radius: 15px 0 0 15px;
    z-index: 2;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px; /* tighter alignment */
}

/* 🔥 LOGO COLOR EFFECT ADDED */
.brand img {
    height: 50px;
    border-radius: 8px;
    filter: 
        drop-shadow(2px 4px 6px rgba(0,0,0,0.15))
        saturate(1.2)
        hue-rotate(10deg); /* subtle color boost */
    transition: 0.4s;
}

.brand img:hover {
    transform: scale(1.05);
    filter: 
        drop-shadow(0 0 10px rgba(0,217,255,0.6))
        saturate(1.4);
}

/* TEXT */
.brand h2 {
    color: var(--dark-slate);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0; /* FIX ALIGNMENT */
}

.brand h2 span {
    color: var(--primary-blue);
}

/* ================= RIGHT SIDE ================= */
.header-right {
    flex: 2;
    background: cadetblue;
    clip-path: polygon(4% 0%, 102% 0%, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:12px 69px 0 90px;
    border-radius: 0 15px 15px 0;
    margin-left: -220px;
    position: relative;
    overflow: hidden;
}
/* SHINE EFFECT */
.header-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

/* ================= NAV ================= */
.nav-links {
    display: flex;
    gap: 70px; /* better spacing */
    margin-left: 153px; /* FIX ALIGNMENT */
    margin-bottom: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

/* ACTIVE LINK */
.nav-links a.active {
    color: black !important;
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
}

/* ================= BUTTON ================= */
.btn-book {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-book:hover {
    background: var(--dark-slate);
    color: white;
    transform: scale(1.05);
}

/* ================= ANIMATIONS ================= */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

@keyframes borderMoveLeft {
    0% { right: -100%; }
    100% { right: 100%; }
}
.closeMenu {
    display: none; /* hidden on desktop */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .main-header { margin: 10px; }
    .header-right {
        clip-path: none;
        margin-left: 0;
        padding: 0 20px;
    }
    .nav-links { display: none; }
   
}






@media (max-width: 992px) {

    body {
        overflow-x: hidden;
    }

    /* HEADER */
    .main-header {
        margin: 10px;
        position: relative;
        z-index: 1000;
        overflow: visible;
    }

    .header-right {
        clip-path: none;
        margin-left: 86px;
        padding: 13px 22px;
        position: static;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 3000;
        position: relative;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s ease;
    }

    /* ICON CHANGE (HAMBURGER → X) */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* NAV MENU */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 67%;
        height: 56vh;
        background: cadetblue;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: 0.4s ease-in-out;
        z-index: 2000;
    }

    /* OPEN STATE */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* CLOSE BUTTON FIX */
    .closeMenu {
        position: absolute;
        top: 20px;
        right: 25px;

        font-size: 35px;
        color: white;
        cursor: pointer;

        z-index: 3001;

        display: none;
    }

    /* SLIDER FIX */
    .sliderBox {
        position: relative;
        z-index: 1;
    }

    /* TOP BAR MOBILE */
    .topBar {
        flex-direction: column;
        padding: 6px 10px;
        text-align: center;
    }

    .topBarLeft {
        flex-direction: column;
        gap: 5px;
    }

    .topBarRight {
        justify-content: center;
    }
}






/* ================= SLIDER ================= */
.sliderBox{
height:90vh;
position:relative;
overflow:hidden;
}

/* SLIDE */
.slideItem{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 1s ease;
}

.slideItem.activeSlide{
opacity:1;
}

/* IMAGE ZOOM EFFECT */
.slideImg{
width:100%;
height:100%;
object-fit:cover;
animation:zoomEffect 8s linear infinite;
}

/* DARK OVERLAY */
.darkLayer{
position:absolute;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
}

/* CONTENT */
.textContent{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
animation:fadeUpEffect 1s ease;
}

.textContent h1{
font-size:60px;
letter-spacing:1px;
}

.textContent p{
margin-top:8px;
font-size:20px;
opacity:0.9;
}

/* BUTTON */
.bookBtn{
display:inline-block;
margin-top:15px;
padding:12px 25px;
background:#00d9ff;
color:#000;
text-decoration:none;
font-weight:bold;
border-radius:25px;
transition:0.3s;
}

.bookBtn:hover{
background:#fff;
}

/* ARROWS */
.arrowPrev, .arrowNext{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:28px;
color:white;
background:rgba(255,255,255,0.15);
padding:14px 16px;
border-radius:50%;
cursor:pointer;
transition:0.3s;
backdrop-filter:blur(5px);
}

.arrowPrev{ left:25px; }
.arrowNext{ right:25px; }

.arrowPrev:hover, .arrowNext:hover{
background:#00d9ff;
transform:translateY(-50%) scale(1.2);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUpEffect{
from{transform:translate(-50%,-30%);opacity:0;}
to{transform:translate(-50%,-50%);opacity:1;}
}

@keyframes zoomEffect{
0%{transform:scale(1);}
100%{transform:scale(1.1);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
.textContent h1{
font-size:38px;
}
.textContent p{
font-size:16px;
}
}




/* BACKDROP */
.popupOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* POPUP BOX */
.popupBox {
    background: #fff;
    width: 95%;
    max-width: 500px;

    padding: 25px;
    border-radius: 12px;

    position: relative;
    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* CLOSE */
.closeBtn {
    position: absolute;
    top: 10px;
    right: 15px;

    font-size: 28px;
    cursor: pointer;
}

/* SUB TEXT */
.subText {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* FORM */
.travelForm {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ROW FLEX */
.travelForm .row {
    display: flex;
    gap: 10px;
}

.travelForm input,
.travelForm select,
.travelForm textarea {
    width: 100%;
    padding: 10px;

    border: 1px solid #ccc;
    border-radius: 6px;

    font-size: 14px;
}

/* TEXTAREA */
.travelForm textarea {
    height: 80px;
    resize: none;
}

/* BUTTON */
.travelForm button {
    background: cadetblue;
    color: white;

    padding: 12px;
    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-size: 16px;
}

.travelForm button:hover {
    background: #e65c00;
}

/* MOBILE */
@media (max-width: 600px) {
    .travelForm .row {
        flex-direction: column;
    }
}

/* DATE + TIME */
.travelForm input[type="date"],
.travelForm input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    height: 40px;
}

.travelForm input[type="date"]::-webkit-calendar-picker-indicator,
.travelForm input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}













.header{
flex-direction:column;
gap:10px;
}

.nav{
flex-wrap:wrap;
justify-content:center;
}

.content h1{
font-size:35px;
}

.top-bar{
flex-direction:column;
gap:5px;
text-align:center;
}










/* ===== HERO BASE ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* ===== BACKGROUND ===== */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, #13270f, #8fbfa4);
  z-index: 0;
}

/* ===== FLOATING LIGHTS ===== */
.floating-shapes span {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: floatMove 18s infinite alternate ease-in-out;
}

.floating-shapes span:nth-child(1) {
  width: 350px;
  height: 350px;
  background: #22c55e;
  top: 10%;
  left: 5%;
}

.floating-shapes span:nth-child(2) {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  bottom: 10%;
  right: 5%;
  animation-delay: 3s;
}

.floating-shapes span:nth-child(3) {
  width: 250px;
  height: 250px;
  background: #a855f7;
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes floatMove {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -80px) scale(1.3); }
}

/* ===== CONTAINER ===== */
.hero-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 5%;
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1200px;
}

/* ===== TOP ROW ===== */
.hero-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

/* ===== TEXT ===== */
.hero-text {
  flex: 1;
}

.hero-text h5 {
  letter-spacing: 3px;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 15px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  background: linear-gradient(to right, #22c55e, #3b82f6);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text p {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ===== BUTTON ===== */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(135deg, #22c55e, #8fbfa4);
  color: #fff;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
}

.btn.primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.8);
}

/* ===== IMAGE ===== */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 
    inset 0 0 0 4px #ff9800, 
    inset 0 0 0 5px #ffffff, 
    0 20px 50px rgba(0,0,0,0.6);
}

.image-content {
  position: absolute;
  bottom: 231px;
  left: 30px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 10px 15px;
  border-radius: 10px;
}

.image-content h2 {
  margin: 0;
  font-size: 22px;
}

/* ===== ROUTE INFO ===== */
.route-info {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 54px 40px;
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.2), 
    inset 0 1px 1px rgba(255,255,255,0.3);
  overflow: hidden;
  margin-top: 20px;
}

/* ===== CARS ===== */
.moving-car {
  position: absolute;
  width: 60px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.moving-car svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.car-right-to-left {
  top: 15px;
  right: -120px;
  animation: smoothDriveRightToLeft 14s linear infinite;
}

.car-right-to-left svg {
  transform: scaleX(-1);
}

.car-left-to-right {
  bottom: 0;
  left: -120px;
  animation: smoothDriveLeftToRight 14s linear infinite;
  animation-delay: 7s;
}

@keyframes smoothDriveRightToLeft {
  0% { right: -120px; }
  100% { right: 115%; }
}

@keyframes smoothDriveLeftToRight {
  0% { left: -120px; }
  100% { left: 115%; }
}

/* ===== ROUTE CONTENT ===== */
.route-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: relative;
  z-index: 2;
  margin-top: 41px;
}

.route-card h2 {
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.route-divider {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
  position: relative;
  max-width: 150px;
}

.route-divider::after {
  content: '⇄';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffcc00;
  font-size: 1.2rem;
  font-weight: bold;
}

.price-box {
  background: cadetblue;
  color: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transform: perspective(500px) rotateY(-5deg);
  transition: 0.3s;
}

.price-box:hover {
  transform: perspective(500px) rotateY(0deg) scale(1.05);
}

.price-box h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.price-box span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-main-row {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 { font-size: 32px; }
    .hero-buttons { justify-content: center; }
    .route-content { flex-direction: column; text-align: center; }
    .route-divider { display: none; }
}



/* ===== POPUP ===== */
.popupOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popupBox{
    background:#fff;
    width:95%;
    max-width:500px;
    padding:25px;
    border-radius:12px;
    position:relative;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

.closeBtn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:28px;
    cursor:pointer;
    color:#000;
}

.popupBox h2{
    color:#000;
}

.subText{
    font-size:13px;
    color:#666;
    margin-top:5px;
}

.travelForm{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.travelForm .row{
    display:flex;
    gap:10px;
}

.travelForm input,
.travelForm select,
.travelForm textarea{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

.travelForm textarea{
    height:80px;
    resize:none;
}

.travelForm button{
    background:cadetblue;
    color:white;
    padding:12px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
}

.travelForm button:hover{
    background:#e65c00;
}

@media(max-width:600px){

  .travelForm .row{
    flex-direction:column;
  }

}










/* =========================
   VEHICLE SECTION
========================= */
.vehicle-section{
  position:relative;
  padding:90px 20px;
  overflow:hidden;
  background: linear-gradient(135deg, #eef7ff, #f7fdf9);
}

/* =========================
   BACKGROUND SHAPES
========================= */
.bg-shape{
  position:absolute;
  border-radius:50%;
  filter: blur(60px);
  opacity:0.35;
  z-index:0;
}

.bg-shape.one{
  width:320px;
  height:320px;
  background:#8fbfa4;
  top:-80px;
  left:-80px;
}

.bg-shape.two{
  width:250px;
  height:250px;
  background:#6aa6ff;
  bottom:-80px;
  right:-60px;
}

.bg-shape.three{
  width:200px;
  height:200px;
  background:#ffb3c6;
  top:40%;
  left:60%;
}

/* =========================
   HEADER
========================= */
.vehicle-header{
  text-align:center;
  margin-bottom:50px;
  position:relative;
  z-index:2;
}

.vehicle-header h1{
  font-size:42px;
  letter-spacing:2px;
  color:#111;
}

/* =========================
   ROW
========================= */
.vehicle-row{
  display:flex;
  gap:20px;
  overflow-x:auto;
  margin-left:273px;
  position:relative;
  z-index:2;
}

.vehicle-row::-webkit-scrollbar{
  display:none;
}

/* =========================
   CARD
========================= */
.vehicle-card{
  flex:0 0 260px;
  background:#fff;
  border-radius:18px;
  border:1px solid green;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.vehicle-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE
========================= */
.vehicle-img{
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f5f5f5;
  position:relative;
}

.vehicle-img img{
  max-width:88%;
  max-height:100%;
  object-fit:contain;
}

/* =========================
   BADGE
========================= */
.vehicle-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#8fbfa4;
  color:#fff;
  padding:5px 10px;
  border-radius:6px;
  font-size:13px;
}

/* =========================
   CONTENT
========================= */
.vehicle-content{
  padding:15px;
}

.vehicle-content h2{
  font-size:18px;
  margin-bottom:8px;
  color:#111;
}

.vehicle-content p{
  font-size:14px;
  color:#555;
  margin:4px 0;
}

/* =========================
   POPUP OVERLAY
========================= */
.popupOverlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  justify-content:center;
  align-items:center;
  z-index:9999;
  padding:20px;
}

/* =========================
   POPUP BOX
========================= */
.popupBox{
  width:100%;
  max-width:700px;
  background:#fff;
  border-radius:18px;
  padding:35px;
  position:relative;
  animation:popupFade 0.4s ease;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

/* =========================
   CLOSE BUTTON
========================= */
.closeBtn{
  position:absolute;
  top:15px;
  right:18px;
  font-size:32px;
  cursor:pointer;
  color:#111;
  line-height:1;
}

/* =========================
   POPUP TITLE
========================= */
.popupBox h2{
  font-size:32px;
  margin-bottom:8px;
  color:#111;
  text-align:center;
}

.subText{
  font-size:15px;
  color:#666;
  margin-bottom:25px;
  text-align:center;
}

/* =========================
   FORM
========================= */
.travelForm .row{
  display:flex;
  gap:15px;
  margin-bottom:15px;
}

.travelForm input,
.travelForm select,
.travelForm textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

.travelForm input:focus,
.travelForm select:focus,
.travelForm textarea:focus{
  border-color:#8fbfa4;
  box-shadow:0 0 0 3px rgba(143,191,164,0.2);
}

.travelForm textarea{
  min-height:120px;
  resize:none;
  margin-bottom:20px;
}

/* =========================
   SUBMIT BUTTON
========================= */
.travelForm button{
  width:100%;
  padding:15px;
  border:none;
  border-radius:10px;
  background:#8fbfa4;
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.travelForm button:hover{
  background:linear-gradient(45deg,#00d9ff,#0077ff);
}

/* =========================
   POPUP ANIMATION
========================= */
@keyframes popupFade{
  from{
    transform:translateY(40px);
    opacity:0;
  }

  to{
    transform:translateY(0);
    opacity:1;
  }
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

  .travelForm .row{
    flex-direction:column;
  }

  .popupBox{
    padding:25px;
  }

  .popupBox h2{
    font-size:26px;
  }

}


/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px){

  .vehicle-section{
    padding:60px 15px;
  }

  .vehicle-header{
    margin-bottom:35px;
  }

  .vehicle-header h1{
    font-size:30px;
    letter-spacing:1px;
  }

  .vehicle-row{
    margin-left:0;
    gap:15px;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }

  .vehicle-card{
    flex:0 0 85%;
    scroll-snap-align:center;
  }

  .vehicle-img{
    height:170px;
  }

  .vehicle-content{
    padding:14px;
  }

  .vehicle-content h2{
    font-size:17px;
  }

  .vehicle-content p{
    font-size:13px;
    line-height:1.5;
  }

  /* POPUP */
  .popupOverlay{
    padding:15px;
    align-items:center;
  }

  .popupBox{
    width:100%;
    max-height:90vh;
    overflow-y:auto;
    padding:25px 18px;
    border-radius:16px;
  }

  .popupBox h2{
    font-size:26px;
  }

  .subText{
    font-size:14px;
    line-height:1.5;
  }

  .closeBtn{
    font-size:28px;
    top:10px;
    right:14px;
  }

  .travelForm .row{
    flex-direction:column;
    gap:12px;
    margin-bottom:12px;
  }

  .travelForm input,
  .travelForm select,
  .travelForm textarea{
    padding:13px;
    font-size:14px;
  }

  .travelForm textarea{
    min-height:100px;
    margin-bottom:15px;
  }

  .travelForm button{
    padding:14px;
    font-size:15px;
  }

}


/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px){

  .vehicle-section{
    padding:50px 12px;
  }

  .vehicle-header h1{
    font-size:25px;
  }

  .vehicle-card{
    flex:0 0 92%;
  }

  .vehicle-img{
    height:160px;
  }

  .popupBox{
    padding:22px 15px;
  }

  .popupBox h2{
    font-size:22px;
  }

  .subText{
    font-size:13px;
  }

  .travelForm input,
  .travelForm select,
  .travelForm textarea{
    font-size:13px;
    padding:12px;
  }

  .travelForm button{
    font-size:14px;
  }

}/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px){

  .vehicle-section{
    padding:60px 15px;
  }

  .vehicle-header{
    margin-bottom:35px;
  }

  .vehicle-header h1{
    font-size:30px;
    letter-spacing:1px;
  }

  .vehicle-row{
    margin-left:0;
    gap:15px;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }

  .vehicle-card{
    flex:0 0 85%;
    scroll-snap-align:center;
  }

  .vehicle-img{
    height:170px;
  }

  .vehicle-content{
    padding:14px;
  }

  .vehicle-content h2{
    font-size:17px;
  }

  .vehicle-content p{
    font-size:13px;
    line-height:1.5;
  }

  /* POPUP */
  .popupOverlay{
    padding:15px;
    align-items:center;
  }

  .popupBox{
    width:100%;
    max-height:90vh;
    overflow-y:auto;
    padding:25px 18px;
    border-radius:16px;
  }

  .popupBox h2{
    font-size:26px;
  }

  .subText{
    font-size:14px;
    line-height:1.5;
  }

  .closeBtn{
    font-size:28px;
    top:10px;
    right:14px;
  }

  .travelForm .row{
    flex-direction:column;
    gap:12px;
    margin-bottom:12px;
  }

  .travelForm input,
  .travelForm select,
  .travelForm textarea{
    padding:13px;
    font-size:14px;
  }

  .travelForm textarea{
    min-height:100px;
    margin-bottom:15px;
  }

  .travelForm button{
    padding:14px;
    font-size:15px;
  }

}


/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px){

  .vehicle-section{
    padding:50px 12px;
  }

  .vehicle-header h1{
    font-size:25px;
  }

  .vehicle-card{
    flex:0 0 92%;
  }

  .vehicle-img{
    height:160px;
  }

  .popupBox{
    padding:22px 15px;
  }

  .popupBox h2{
    font-size:22px;
  }

  .subText{
    font-size:13px;
  }

  .travelForm input,
  .travelForm select,
  .travelForm textarea{
    font-size:13px;
    padding:12px;
  }

  .travelForm button{
    font-size:14px;
  }

}










/* SECTION */
.luxury-section {
  padding: 100px 20px;
  text-align: center;
  background: #0f0f0f;
}

/* HEADER */
.luxury-header span {
  letter-spacing: 5px;
  font-size: 12px;
  color: #5f9ea0;
  text-transform: uppercase;
}

.luxury-header h1 {
  font-size: 50px;
  margin: 10px 0 30px;
  color: #fff;
}

/* ROUTE */
.route {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #aaa;
}

.track {
  width: 120px;
  height: 2px;
  background: #333;
  position: relative;
}

.travel-dot {
  width: 10px;
  height: 10px;
  background: #5f9ea0;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  animation: travel 3s infinite linear;
}

@keyframes travel {

  0% {
    left: 0;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* WRAPPER */
.luxury-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 70px;
  flex-wrap: wrap;
}

/* CARD */
.lux-card {
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: 0.4s ease;
  border: 2px solid #438000;
}

/* IMAGE FIX */
.lux-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: white;
  padding: 10px;
  transition: 0.4s ease;
}

/* CONTENT */
.lux-content {
  padding: 18px;
  text-align: left;
}

.lux-content h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.lux-content p {
  margin: 5px 0;
  color: #bbb;
  font-size: 14px;
}

.lux-content span {
  font-weight: bold;
  color: #5f9ea0;
  font-size: 16px;
}

/* HOVER */
.lux-card:hover {
  transform: translateY(-10px);
}

.lux-card:hover img {
  transform: scale(1.05);
}

/* BOOK BUTTON */
.book-btn{
  width:100%;
  padding:12px;
  background:#5f9ea0;
  border:none;
  color:#fff;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.book-btn:hover{
  background:linear-gradient(45deg,#00d9ff,#0077ff);
}

/* POPUP OVERLAY */
.popupOverlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
  z-index:9999;
  padding:20px;
}

/* POPUP BOX */
.popupBox{
  width:100%;
  max-width:700px;
  background:#fff;
  border-radius:20px;
  padding:35px;
  position:relative;
  animation:popupFade 0.4s ease;
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

/* CLOSE BUTTON */
.closeBtn{
  position:absolute;
  top:15px;
  right:18px;
  font-size:32px;
  cursor:pointer;
  color:#111;
}

/* TITLE */
.popupBox h2{
  font-size:32px;
  margin-bottom:10px;
  color:#111;
  text-align:center;
}

.subText{
  color:#666;
  margin-bottom:25px;
  font-size:15px;
  text-align:center;
}

/* FORM */
.travelForm .row{
  display:flex;
  gap:15px;
  margin-bottom:15px;
}

.travelForm input,
.travelForm select,
.travelForm textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

.travelForm input:focus,
.travelForm select:focus,
.travelForm textarea:focus{
  border-color:#5f9ea0;
  box-shadow:0 0 0 3px rgba(95,158,160,0.15);
}

.travelForm textarea{
  min-height:120px;
  resize:none;
  margin-bottom:20px;
}

/* BUTTON */
.travelForm button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:10px;
  background:#5f9ea0;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.travelForm button:hover{
  background:linear-gradient(45deg,#00d9ff,#0077ff);
}

/* ANIMATION */
@keyframes popupFade{

  from{
    transform:translateY(40px);
    opacity:0;
  }

  to{
    transform:translateY(0);
    opacity:1;
  }
}

/* MOBILE */
@media(max-width:768px){

  .travelForm .row{
    flex-direction:column;
  }

  .popupBox{
    padding:25px;
  }

  .popupBox h2{
    font-size:26px;
  }

}










/* Base Container Style */
.floating-container {
    position: fixed;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Specific Positioning */
.right-side {
    right: 20px;
}

.left-side {
    left: 20px;
}

/* Button style */
.float-btn {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn img {
    width: 54px;
    height: 50px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .floating-container {
        bottom: 15px;
    }
    
    .right-side {
        right: 15px;
    }
    
    .left-side {
        left: 15px;
    }

    .float-btn {
        width: 60px;
        height: 60px;
    }

    .float-btn img {
        width: 40px;
        height: 40px;
    }
}





.tt-footer {
    background-color: cadetblue;
    color: white;
    font-family: 'Inter', sans-serif;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* --- Border Animations --- */
.tt-footer::before, .tt-footer::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 0;
    background: white;
    transition: width 0.8s ease;
    left: 50%;
    transform: translateX(-50%);
}

.tt-footer::before { top: 0; }
.tt-footer::after { bottom: 80px; }

.tt-footer:hover::before, .tt-footer:hover::after {
    width: 100%;
}

/* --- Container & Grid --- */
.tt-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.tt-footer__container:not(.bottom-flex) {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

/* --- Brand Section --- */
.tt-brand__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tt-brand__logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid white;
}

.tt-brand__logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.tt-brand__desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* --- Social Icons --- */
.tt-social {
    display: flex;
    gap: 12px;
}

.tt-social a {
    width: 38px;
    height: 38px;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.tt-social a:hover {
    background: var(--hover-teal);
    color: white;
    transform: translateY(-5px);
}

/* --- Titles & Lists --- */
.tt-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding-bottom: 5px;
}

.tt-list {
    list-style: none;
    padding: 0;
}

.tt-list li { margin-bottom: 12px; }

.tt-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.tt-list a:hover {
    color: white;
    padding-left: 8px;
}

/* --- Contact Section (Improved Alignment Only) --- */
.tt-contact__block {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start; /* keeps icon aligned with first line */
}

.tt-contact__block i {
    color: black;
    font-size: 18px;
    min-width: 22px; /* ensures equal alignment */
    margin-top: 4px; /* slight adjustment for vertical balance */
}

.tt-contact__numbers {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tt-contact__block p,
.tt-contact__block a,
.tt-contact__numbers span {
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    margin: 0;
    line-height: 1.6; /* improves readability + alignment */
}

.tt-contact__block a:hover {
    opacity: 0.8;
}

/* --- Bottom Bar --- */
.tt-footer__bottom {
    background: whitesmoke;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: black;
}

/* --- Designer Link with Hover --- */
.tt-designer a {
    color: #247abd;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    
    padding: 5px 12px;
    border-radius: 4px;
    transition: var(--transition);
    display: inline-block;
}

.tt-designer a:hover {
    background-color: cadetblue; 
    transform: scale(1.05);
}








/* =========================
   Responsive Design
========================= */

/* Tablet View */
@media (max-width: 992px) {
    .tt-footer__container:not(.bottom-flex) {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .tt-footer {
        padding-top: 50px;
    }

    .tt-footer__container:not(.bottom-flex) {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: left;
    }

    /* Brand Section Centering */
    .tt-brand__logo {
        justify-content: flex-start;
    }

    .tt-social {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* Contact Section Alignment */
    .tt-contact__block {
        align-items: flex-start;
        gap: 10px;
    }

    .tt-contact__block i {
        font-size: 16px;
        margin-top: 3px;
    }

    .tt-contact__numbers {
        flex-direction: row;
        flex-wrap: wrap;
    }

    /* Bottom Bar Stack */
    .bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .tt-designer a {
        font-size: 15px;
    }
}



















/* ABOUT PAGE */

/* ================= BANNER ================= */
.banner{
height: 45vh;
    position: relative;
    overflow: hidden;
    background: aquamarine;
}

/* IMAGE */
.banner-img{
width:100%;
height:99%;
object-fit:cover;
animation:zoom 8s linear infinite;
}

/* DARK OVERLAY */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:99%;
/* background:rgba(0,0,0,0.45); */
}

/* CONTENT */
.banner-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
animation:fadeUp 1s ease;
}

.banner-content h1{
font-size:65px;
letter-spacing:1px;
}


/* BUTTON */
.btn{
padding:10px 28px;
background:linear-gradient(45deg,#00d9ff,#0077ff);
border:none;
color:white;
border-radius:30px;
cursor:pointer;
font-weight:500;
transition:0.4s;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
text-decoration: none;
display: inline-block;
}

/* HOVER EFFECT */
.btn:hover{
transform:scale(1.12);
box-shadow:0 12px 30px rgba(0,0,0,0.25);
background-color: #2e4d5a;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp{
from{transform:translate(-50%,-30%);opacity:0;}
to{transform:translate(-50%,-50%);opacity:1;}
}

@keyframes zoom{
0%{transform:scale(1);}
100%{transform:scale(1.1);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

.banner-content h1{
font-size:35px;
}

}











.srpHeroWrap{
  height:68vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:whitesmoke;
  position:relative;
}

.srpContentWrap{
  width:92%;
  text-align:center;
  padding:50px;
  background:rgba(95,158,160,0.12);
  border-radius:25px;
}

.srpMainHeading{
  font-size:4rem;
  color:cadetblue;
}

.srpSubHeading{
  font-size:1.3rem;
}

.srpDescription{
  font-size:1rem;
}

/* BUTTON */
.srpRideButton{
  padding:12px 30px;
  background:cadetblue;
  color:white;
  border-radius:30px;
  display:inline-block;
  margin-top:20px;
  text-decoration:none;
}

/* ================= POPUP ================= */
.srpPopupOverlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.srpPopupContainer{
  width:90%;
  max-width:650px;
  background:#fff;
  padding:30px;
  border-radius:20px;
  position:relative;
}

.srpPopupClose{
  position:absolute;
  top:10px;
  right:15px;
  font-size:28px;
  cursor:pointer;
}

.srpPopupText{
  color:#666;
  margin-bottom:15px;
}

.srpFormWrap .srpFormRow{
  display:flex;
  gap:10px;
  margin-bottom:12px;
}

.srpFormWrap input,
.srpFormWrap select,
.srpFormWrap textarea{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
}

.srpFormWrap textarea{
  min-height:90px;
}

.srpFormWrap button{
  width:100%;
  padding:12px;
  background:cadetblue;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}







/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:768px){

  .srpHeroWrap{
    height:auto;
    padding:40px 15px;
  }

  .srpContentWrap{
    width:100%;
    padding:30px 20px;
  }

  .srpMainHeading{
    font-size:2.4rem;
    line-height:1.2;
  }

  .srpSubHeading{
    font-size:1.05rem;
    line-height:1.5;
  }

  .srpDescription{
    font-size:0.95rem;
    line-height:1.7;
  }

  .srpRideButton{
    width:100%;
    padding:14px;
    font-size:15px;
  }

  /* POPUP */
  .srpPopupOverlay{
    padding:15px;
  }

  .srpPopupContainer{
    width:100%;
    max-height:90vh;
    overflow-y:auto;
    padding:25px 18px;
    border-radius:18px;
  }

  .srpPopupClose{
    font-size:24px;
    top:8px;
    right:12px;
  }

  .srpFormWrap .srpFormRow{
    flex-direction:column;
    gap:12px;
  }

  .srpFormWrap input,
  .srpFormWrap select,
  .srpFormWrap textarea{
    font-size:14px;
    padding:13px;
  }

  .srpFormWrap button{
    padding:14px;
    font-size:15px;
  }

}


/* ================= SMALL MOBILE ================= */
@media(max-width:480px){

  .srpMainHeading{
    font-size:2rem;
  }

  .srpSubHeading{
    font-size:0.95rem;
  }

  .srpDescription{
    font-size:0.9rem;
  }

  .srpContentWrap{
    padding:25px 15px;
  }

  .srpPopupContainer{
    padding:22px 15px;
  }

}










/* PARALLAX SECTION (UNCHANGED DESIGN) */
.parallax {
  height: 300px;
  background: url('assets/img/car.jpg') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

/* DARK OVERLAY FOR READABILITY */
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* CONTENT BOX */
.parallaxContent {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  animation: fadeUp 1.2s ease-in-out;
}

/* TITLE */
.parallaxTitle {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: cadetblue;
  animation: slideDown 1s ease-in-out;
}

/* TEXT */
.parallaxText {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #f1f1f1;
  animation: fadeIn 1.5s ease-in-out;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}





/* TABLETS */
@media (max-width: 768px) {
  .parallax {
    height: 250px;
    background-attachment: scroll; /* fixes mobile parallax issues */
  }

  .parallaxTitle {
    font-size: 2rem;
  }

  .parallaxText {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .parallaxContent {
    max-width: 90%;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .parallax {
    height: 220px;
  }

  .parallaxTitle {
    font-size: 1.6rem;
    margin-bottom: -12px;
  }

  .parallaxText {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .parallaxContent {
    padding: 15px;
  }
}

/* VERY SMALL DEVICES */
@media (max-width: 360px) {
  .parallax {
    height: 200px;
  }

  .parallaxTitle {
    font-size: 1.4rem;
  }

  .parallaxText {
    font-size: 0.8rem;
  }
}











/* FEATURES SECTION */
.features-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    z-index: 2;
}

/* HEADING */
.section-heading {
    font-size: 36px;
    color: cadetblue;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeDown 1s forwards;
}

/* CONTAINER */
.features-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FEATURE CARDS */
.feature-card {
    width: 300px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid cadetblue;
    backdrop-filter: blur(10px);
    color: white;

    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
    transition: 0.4s ease;
}

/* STAGGER ANIMATION */
.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:nth-child(4) { animation-delay: 0.8s; }
.feature-card:nth-child(5) { animation-delay: 1s; }
.feature-card:nth-child(6) { animation-delay: 1.2s; }
.feature-card:nth-child(7) { animation-delay: 1.4s; }

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 20px cadetblue;
}

/* GLOW BORDER */
.feature-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(45deg, cadetblue, white, cadetblue);
    z-index: -1;
    filter: blur(12px);
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

/* TEXT */
.feature-card h3 {
    color: cadetblue;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: black;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* TABLETS */
@media (max-width: 1024px) {
  .features-container {
    gap: 30px;
  }

  .feature-card {
    width: 260px;
  }

  .section-heading {
    font-size: 30px;
  }
}

/* SMALL TABLETS */
@media (max-width: 768px) {
  .features-section {
    padding: 80px 15px;
  }

  .section-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .features-container {
    gap: 25px;
  }

  .feature-card {
    width: 45%;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .features-section {
    padding: 60px 15px;
  }

  .section-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-card {
    width: 100%;
    max-width: 320px;
  }

  .feature-card:hover {
    transform: translateY(-6px) scale(1.02);
  }
}

/* VERY SMALL DEVICES */
@media (max-width: 360px) {
  .section-heading {
    font-size: 20px;
  }

  .feature-card {
    padding: 20px;
  }
}















/* SECTION */
.nx-sec {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* WRAPPER */
.nx-wrap {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.nx-content {
  animation: nxSlideLeft 1s ease;
}

.nx-title {
  font-size: 38px;
  margin-bottom: 10px;
}

.nx-sub {
  color: black;
  margin-bottom: 25px;
}

/* LIST */
.nx-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nx-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-left: 3px solid black;
  background: cadetblue;
  border-radius: 10px;
  transition: 0.3s;
  animation: nxFadeUp 1s ease;
}

.nx-item:hover {
  transform: translateX(8px);
  border-left-color: cadetblue;
}

.nx-item i {
  font-size: 20px;
  color: white;
  margin-top: 4px;
}

.nx-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.nx-item p {
  font-size: 13px;
  color: white;
}

/* BUTTON (kept same even if not used) */
.nx-btn {
  margin-top: 25px;
  padding: 12px 20px;
  border: none;
  background: cadetblue;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.nx-btn:hover {
  background: black;
  transform: scale(1.05);
}

/* RIGHT IMAGE */
.nx-image {
  position: relative;
  animation: nxSlideRight 1s ease;
}

/* GLOW */
.nx-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: cadetblue;
  filter: blur(90px);
  opacity: 0.4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: nxFloat 5s infinite ease-in-out;
}

/* IMAGE */
.nx-image img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(95, 158, 160, 0.3);
  animation: nxZoom 1s ease;
}

/* BADGE (FIXED POSITION ON IMAGE) */
.nx-badge {
  position: absolute;
  top: 20px;
  right: 467px;
  background: white;
  border: 2px solid cadetblue;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 3;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nx-badge i {
  color: cadetblue;
}

/* ANIMATIONS */
@keyframes nxSlideLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes nxSlideRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes nxFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes nxZoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes nxFloat {
  0% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}

/* TABLETS */
@media (max-width: 1024px) {
  .nx-wrap {
    gap: 40px;
  }

  .nx-title {
    font-size: 32px;
  }

  .nx-glow {
    width: 250px;
    height: 250px;
  }
}

/* SMALL TABLETS */
@media (max-width: 900px) {
  .nx-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .nx-item {
    text-align: left;
  }

  .nx-content {
    order: 2;
  }

  .nx-image {
    order: 1;
  }

  .nx-title {
    font-size: 30px;
  }

  .nx-sub {
    margin-bottom: 20px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .nx-sec {
    padding: 60px 15px;
  }

  .nx-title {
    font-size: 26px;
  }

  .nx-item {
    padding: 12px;
    gap: 12px;
  }

  .nx-item h3 {
    font-size: 15px;
  }

  .nx-item p {
    font-size: 12px;
  }

  .nx-btn {
    width: 100%;
    padding: 12px;
  }

  .nx-glow {
    width: 200px;
    height: 200px;
  }

  .nx-badge {
    top: 15px;
        right: 284px;
    padding: 8px 12px;
  }
}

/* SMALL MOBILE */
@media (max-width: 360px) {
  .nx-title {
    font-size: 22px;
  }

  .nx-item {
    flex-direction: column;
    align-items: flex-start;
  }
}




















/* Section with animated subtle background */
.cab-mv-section {
  padding: 100px 10%;
  background: linear-gradient(-45deg, #000000, #ffffff, #5f9ea0, #000000);
  background-size: 400% 400%;
  animation: bgFlow 12s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Soft overlay glow effect */
.cab-mv-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(95,158,160,0.15), transparent 60%);
  animation: glowMove 10s linear infinite;
}

/* Container */
.cab-mv-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Card Base */
.cab-mv-card {
  width: 340px;
  padding: 30px;
  border: 2px solid cadetblue;
  background: white;
  color: black;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

  /* entry animation */
  animation: fadeUp 1s ease forwards;
}

/* Floating hover glow line */
.cab-mv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: cadetblue;
  transition: 0.5s ease;
}

.cab-mv-card:hover::after {
  left: 0;
}

/* Titles */
.cab-mv-title {
  margin-bottom: 15px;
  color: cadetblue;
  font-size: 22px;
}

/* Text */
.cab-mv-text {
  font-size: 15px;
  line-height: 1.6;
}

/* Individual Styling */
.cab-mission-box {
  border-left: 6px solid cadetblue;
  animation-delay: 0.2s;
}

.cab-vision-box {
  border-right: 6px solid cadetblue;
  animation-delay: 0.4s;
}

/* Hover effect */
.cab-mv-card:hover {
  background: cadetblue;
  color: white;
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Title hover */
.cab-mv-card:hover .cab-mv-title {
  color: white;
}

/* =========================
   ANIMATIONS
========================= */

/* Background animation */
@keyframes bgFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Soft glow movement */
@keyframes glowMove {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(360deg) translateX(50px);
  }
}

/* Card entry animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* LARGE TABLETS */
@media (max-width: 1024px) {
  .cab-mv-section {
    padding: 80px 6%;
  }

  .cab-mv-container {
    gap: 40px;
  }

  .cab-mv-card {
    width: 300px;
  }
}

/* TABLETS */
@media (max-width: 768px) {
  .cab-mv-section {
    padding: 70px 20px;
  }

  .cab-mv-container {
    gap: 30px;
  }

  .cab-mv-card {
    width: 100%;
    max-width: 400px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .cab-mv-section {
    padding: 60px 15px;
  }

  .cab-mv-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .cab-mv-card {
    width: 100%;
    padding: 25px;
  }

  .cab-mv-title {
    font-size: 20px;
  }

  .cab-mv-text {
    font-size: 14px;
  }
}

/* SMALL MOBILE */
@media (max-width: 360px) {
  .cab-mv-card {
    padding: 20px;
  }

  .cab-mv-title {
    font-size: 18px;
  }

  .cab-mv-text {
    font-size: 13px;
  }
}













/* AIRPORT PAGE */

/* Section */
.elite-section {
    padding: 80px 20px;
    text-align: center;
}

.elite-heading {
    font-size: 42px;
    color: cadetblue;
    margin-bottom: 10px;
}

.elite-tagline {
    color: black;
    margin-bottom: 50px;
}

/* ONE ROW CONTAINER */
.elite-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.elite-container::-webkit-scrollbar {
    height: 6px;
}
.elite-container::-webkit-scrollbar-thumb {
    background: cadetblue;
    border-radius: 10px;
}

/* Card */
.elite-card {
    min-width: 260px;
    max-width: 260px;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.5s;
    border: 1px solid rgba(255,255,255,0.08);
    animation: cardFade 1s ease forwards;
    opacity: 0;
}

/* Stagger */
.sedan-card { animation-delay: 0.2s; }
.innova-card { animation-delay: 0.4s; }
.toyota-card { animation-delay: 0.6s; }
.crysta-card { animation-delay: 0.8s; }
.tempo-card { animation-delay: 1s; }

/* ✅ FIXED IMAGE SECTION */
.card-image {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white; /* clean background */
    padding: 10px;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* FULL IMAGE visible */
    transition: 0.6s;
}

/* Content */
.card-content {
    padding: 20px;
}

.card-content h2 {
    margin-bottom: 8px;
    color: white;
}

.card-content p {
    color: #aaa;
    margin-bottom: 10px;
}

.card-content span {
    color: cadetblue;
    font-weight: bold;
}

/* Hover */
.elite-card:hover {
    transform: translateY(-10px);
    border-color: cadetblue;
}

.elite-card:hover img {
    transform: scale(1.08); /* reduced zoom to avoid cut */
}

/* Unique hover styles */
.sedan-card:hover { transform: translateY(-12px) scale(1.02); }
.innova-card:hover { transform: rotate(1deg); }
.toyota-card:hover { transform: scale(1.05); }
.crysta-card:hover { transform: rotate(-1deg); }
.tempo-card:hover { transform: scale(1.06); }

/* Animation */
@keyframes cardFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* =========================
   TABLET (<= 1024px)
========================= */
@media (max-width: 1024px) {
    .elite-container {
        justify-content: flex-start;
        gap: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .elite-card {
        min-width: 240px;
        max-width: 240px;
    }

    .elite-heading {
        font-size: 36px;
    }
}

/* =========================
   LARGE MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {
    .elite-section {
        padding: 60px 15px;
    }

    .elite-heading {
        font-size: 30px;
    }

    .elite-tagline {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .elite-container {
        gap: 15px;
        justify-content: flex-start;
    }

    .elite-card {
        min-width: 220px;
        max-width: 220px;
    }

    .card-image {
        height: 150px;
    }
}

/* =========================
   SMALL MOBILE (<= 480px)
   ONE CARD FEEL (SNAP STYLE)
========================= */
@media (max-width: 480px) {
    .elite-section {
        padding: 50px 10px;
    }

    .elite-heading {
        font-size: 26px;
    }

    .elite-container {
        gap: 12px;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .elite-card {
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    .card-image {
        height: 140px;
    }

    .card-content {
        padding: 15px;
    }
}

/* =========================
   VERY SMALL DEVICES (<= 360px)
========================= */
@media (max-width: 360px) {
    .elite-card {
        min-width: 92%;
        max-width: 92%;
    }

    .elite-heading {
        font-size: 22px;
    }
}














/* Section */
.taxi-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    background: white;
}

/* ===== GREEN BACKGROUND DESIGN ===== */

/* Moving light layer */
.taxi-bg-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 55%, rgba(34, 139, 34, 0.10) 55%);
    top: -50%;
    left: -50%;
    animation: taxiGreenMove 18s linear infinite;
    z-index: 0;
}

/* Blob shapes */
.taxi-bg-blob {
    position: absolute;
    background: #228B22; /* forest green */
    opacity: 0.10;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(1px);
    z-index: 0;
}

/* Blob 1 */
.taxi-blob1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -100px;
    animation: taxiGreenBlob1 13s ease-in-out infinite alternate;
}

/* Blob 2 */
.taxi-blob2 {
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -100px;
    animation: taxiGreenBlob2 15s ease-in-out infinite alternate;
}

/* Animations */
@keyframes taxiGreenMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(90px) translateY(70px);
    }
}

@keyframes taxiGreenBlob1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
        transform: translate(120px, 80px) rotate(18deg) scale(1.1);
    }
}

@keyframes taxiGreenBlob2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
        transform: translate(-100px, -70px) rotate(-22deg) scale(1.15);
    }
}

/* KEEP YOUR ORIGINAL DESIGN (UNCHANGED) */

.taxi-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    width: 94%;
    position: relative;
    z-index: 1;
}

.taxi-content {
    flex: 1;
    animation: slideLeft 1s ease;
    margin-left: 145px;
    position: relative;
    z-index: 1;
}

.taxi-title {
    font-size: 2.4rem;
    color: green;
    margin-bottom: 30px;
}

.taxi-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.taxi-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    border-left: 4px solid green;
    padding: 15px;
    transition: 0.3s;
}

.taxi-item:hover {
    background: green;
    color: white;
    transform: translateX(10px);
}

.taxi-item span {
    font-size: 1.5rem;
    color: green;
    transition: 0.3s;
}

.taxi-item:hover span {
    color: white;
}

.hero-image{
  position: relative;
  display: inline-block;
}

.hero-image img{
  width: 100%;
  display: block;
}

/* ===== FIXED IMAGE LABEL (CENTERED INSIDE IMAGE) ===== */
.image-content{
  position: absolute;
 top: 10%;
    left: 13%;
  transform: translate(-50%, -50%);
  color:#fff;
  background:rgba(0,0,0,0.5);
  padding:12px 28px;
  border-radius:10px;
  text-align: center;
}

.image-content h2{
  margin: -15px;
    font-size: 20px;
}

/* ===== UNIQUE CLASS ===== */
.content-one{
}

/* Animations */
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Tablets */
@media (max-width: 1024px) {
    .taxi-wrapper {
        width: 100%;
        gap: 20px;
    }

    .taxi-content {
        margin-left: 60px;
    }

    .taxi-title {
        font-size: 2rem;
    }

    .taxi-image-box img {
        max-width: 380px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .taxi-section {
        padding: 50px 20px;
    }

    .taxi-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .taxi-content {
        margin-left: 0;
    }

    .taxi-title {
        font-size: 1.8rem;
    }

    .taxi-list {
        align-items: center;
    }

    .taxi-item {
        width: 100%;
        max-width: 500px;
        text-align: left;
    }

    .taxi-image-box img {
        max-width: 320px;
        margin-top: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .taxi-title {
        font-size: 1.5rem;
    }

    .taxi-item {
        padding: 12px;
        gap: 10px;
    }

    .taxi-item span {
        font-size: 1.2rem;
    }

    .taxi-image-box img {
        max-width: 260px;
    }
}








/* Section */
.cab-why-section {
  padding: 80px 20px;
  background: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* NEW BEAUTIFUL ANIMATED SHAPES */
.cab-bg-shape,
.cab-bg-shape2 {
  position: absolute;
  border-radius: 50%;
  background: black;
  opacity: 0.07;
  filter: blur(2px);
}

/* Shape 1 */
.cab-bg-shape {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  animation: cabFloat1 14s infinite alternate ease-in-out;
}

/* Shape 2 */
.cab-bg-shape2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
  animation: cabFloat2 16s infinite alternate ease-in-out;
}

/* Animations */
@keyframes cabFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(120px, 80px) scale(1.2);
  }
}

@keyframes cabFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-100px, -60px) scale(1.15);
  }
}

/* Title */
.cab-title {
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
}

.cab-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: cadetblue;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid */
.cab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.cab-card {
  background: white;
  border: 2px solid cadetblue;
  padding: 25px;
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Card Animation Shape */
.cab-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: cadetblue;
  top: 100%;
  left: -10%;
  z-index: 0;
  transition: 0.5s ease;
  border-radius: 50%;
}

.cab-card:hover::before {
  top: -10%;
}

.cab-card:hover {
  color: white;
  transform: translateY(-10px) scale(1.03);
}

.cab-card * {
  position: relative;
  z-index: 1;
}

/* Icon */
.cab-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: cadetblue;
  transition: 0.3s;
}

.cab-card:hover .cab-icon {
  color: white;
}

/* Text */
.cab-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cab-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Fade Animation */
.cab-card {
  opacity: 0;
  transform: translateY(30px);
  animation: cabFadeUp 0.8s forwards;
}

.cab-card:nth-child(1) { animation-delay: 0.1s; }
.cab-card:nth-child(2) { animation-delay: 0.2s; }
.cab-card:nth-child(3) { animation-delay: 0.3s; }
.cab-card:nth-child(4) { animation-delay: 0.4s; }
.cab-card:nth-child(5) { animation-delay: 0.5s; }
.cab-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cabFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Tablets */
@media (max-width: 1024px) {
  .cab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cab-title {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cab-why-section {
    padding: 60px 15px;
  }

  .cab-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cab-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .cab-card {
    padding: 20px;
  }

  .cab-icon {
    font-size: 34px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cab-title {
    font-size: 22px;
  }

  .cab-card h3 {
    font-size: 18px;
  }

  .cab-card p {
    font-size: 13px;
  }

  .cab-icon {
    font-size: 30px;
  }
}



















/* CAB GALLERY PAGE */

.main-wrapper {
    text-align: center;
}

.page-header {
    background: cadetblue;
    color: white;
    padding: 25px;
    margin-top: 40px;
}

.page-header h1 {
    margin: 0;
}

.page-header p {
    margin: 5px 0 0;
    font-size: 16px;
    opacity: 0.9;
}

/* GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px;
}

/* CARD */
.card {
    border: 2px solid black;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    position: relative;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 10px;
    cursor: pointer;
}

.info {
    text-align: center;
    padding: 10px;
    background: cadetblue;
    color: white;
}

/* PLUS ICON */
.card::after {
    content: "+";
    position: absolute;
    top: 10px;
    right: 10px;
    background: cadetblue;
    color: white;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
}

.card:hover::after {
    opacity: 1;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

/* BIG IMAGE BOX */
.lightbox-box {
    width: 687px;
    height: 492px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border: 3px solid cadetblue;
}

.lightbox-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CLOSE */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

/* NAV < > */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover, .close:hover {
    color: cadetblue;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .lightbox-box {
        width: 90%;
        height: 300px;
    }
}

@media (max-width: 500px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}













/* CONTACT PAGE */

.contact-section {
  width: 100%;
  padding: 40px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: fadeIn 1s ease-in-out;
}

.contact-info {
  flex: 1;
  background: cadetblue;
  color: #fff;
  padding: 40px;
  position: relative;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
  transition: transform 0.3s;
}

.info-box i {
  font-size: 18px;
  background: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 50%;
}

.info-box:hover {
  transform: translateX(8px);
}

.socials {
  margin-top: 30px;
}

.socials i {
  margin-right: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.socials i:hover {
  transform: scale(1.2);
  color: #000;
}

.contact-form {
  flex: 1;
  background: #fff;
  padding: 40px;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #1e293b;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  outline: none;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.input-box textarea {
  height: 120px;
  resize: none;
}

.input-box label {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #94a3b8;
  font-size: 13px;
  pointer-events: none;
  transition: 0.3s;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: cadetblue;
  box-shadow: 0 0 8px rgba(37,99,235,0.2);
}

.input-box input:focus + label,
.input-box textarea:focus + label,
.input-box input:valid + label,
.input-box textarea:valid + label {
  top: -10px;
  left: 8px;
  background: #fff;
  padding: 0 5px;
  font-size: 11px;
  color: cadetblue;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  background: cadetblue;
  color: white;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: cadetblue;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}