:root {
  /* ===== Brand Colors (Blue–Gold Theme) ===== */
  --color-primary: #1a4d8f;   /* Deep Royal Blue */
  --color-accent: #0099cc;    /* Bright Sky Blue */
  --color-gold: #f0c75e;      /* Classic Gold */
  --color-dark: #0d1b2a;      /* Deep Navy Black */
  --color-light: #f9fbff;     /* Soft Cool White */

  /* ===== Gradients ===== */
  --gradient-main: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  --gradient-gold: linear-gradient(90deg, var(--color-accent), var(--color-gold));

  /* ===== Typography ===== */
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Russo One', sans-serif;
  --font-display: 'Teko', sans-serif;

  /* ===== Shadows ===== */
  --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 6px 20px rgba(0, 0, 0, 0.25);
}


*{
    margin: 0;
    padding: 0;
    
}


body {
  font-family: var(--font-primary);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.brand-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
}

/* === Navbar === */
.navbar {
  font-family: var(--font-primary);
  padding: 15px 0;
  transition: 0.3s ease;
}

/* === Logo Circle === */
.logo-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

/* === Brand Text === */
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
  transition: 0.3s ease;
}

.brand-text:hover {
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

/* === Nav Links === */
.nav-links .nav-link {
  position: relative;
  color: var(--color-dark);
  font-weight: 500;
  padding: 8px 12px;
  margin: 0 5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-links .nav-link:hover {
  color: var(--color-primary);
}

/* Underline animation */
.nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  transition: 0.3s ease;
  border-radius: 4px;
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  width: 100%;
}

/* Active menu in primary color */
.nav-links .nav-link.active {
  color: var(--color-accent) !important;
  font-weight: 600;
}

/* === Book Now Button === */
.btn-book-now {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.btn-book-now:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* === Toggler === */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}



/* ===== HERO CAROUSEL WITH IMAGE BACKGROUNDS ===== */
#hero-carousel {
  position: relative;
  margin-top: 0;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ===== Gradient overlay (Blue–Gold Theme) ===== */
.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: .50;
  z-index: 1;
}

.breadcrumb-item.active{
  color: var(--color-gold);
}


/* Text content */
.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-slide h1 {
  font-family: 'Russo One', sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  color: #fff;
}

.hero-slide p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #fff7d6;
}

/* Buttons */
.btn-hero {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 28px;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-hero:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 45px;
  height: 45px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--color-light);
}

.section-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--color-accent);
}

/* Animated underline for section title */
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  border-radius: 2px;
  animation: underlineExpand 1.5s ease-in-out infinite alternate;
}

@keyframes underlineExpand {
  0% { width: 40px; }
  100% { width: 90px; }
}

/* About content text */
.about-content p {
  color: var(--color-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* About button */
.btn-about {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Image styling */
.about-img img {
  border-radius: 20px;
  border: 5px solid #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #fff;
}

.services-section .section-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.services-section .section-title span {
  color: var(--color-accent);
}

/* Service Cards */
.service-card {
  background: #fff;
  border: 2px solid #f2f2f2;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-card .icon {
  font-size: 3rem;
  color: var(--color-primary);
  transition: 0.3s ease;
}

.service-card h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.service-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover Effect */
.service-card:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card:hover .icon {
  color: #fff;
  transform: scale(1.1);
}

.service-card:hover h4,
.service-card:hover p {
  color: #fff;
}


/* ===== PARALLAX SECTION ===== */
.parallax-section {
  position: relative;
  height: 70vh;
  background-image: url('./img/bg1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

/* ===== Gradient overlay (Blue–Gold Theme) ===== */
.parallax-section .overlay {
  position: absolute;
  inset: 0;
 background: #000000;
 opacity: .40;
  z-index: 1;
}

/* Text styling */
.parallax-section .container {
  position: relative;
  z-index: 2;
}

.parallax-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.parallax-section p {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: #fffde5;
}

/* Button styling */
.btn-parallax {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-parallax:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  color: var(--color-dark);
  transform: translateY(-3px);
}

/* ===== SPLIT SECTION (LEFT-RIGHT CONTENT) ===== */
.split-section {
  background: #fffaf7;
}

.split-content h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.split-content h2 span {
  color: var(--color-accent);
}

.split-content p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
}

.split-content ul li {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

/* Button */
.btn-split {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-split:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  color: var(--color-dark);
  transform: translateY(-3px);
}

/* Image styling */
.split-image img {
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.split-image img:hover {
  transform: scale(1.05);
}

/* ===== FLEET / VEHICLE SECTION ===== */
.fleet-section {
  background-color: #fff;
}

.fleet-section .section-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  position: relative;
}

.fleet-section .section-title span {
  color: var(--color-accent);
}

.fleet-card {
  background: #fff;
  border: 2px solid #f2f2f2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fleet-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.fleet-card h5 {
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.fleet-card p {
  font-family: var(--font-primary);
  color: var(--color-dark);
  font-size: 0.9rem;
}

/* Hover Effects */
.fleet-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-card:hover h5, 
.fleet-card:hover p {
  color: #fff;
}


/* ===== TESTIMONIAL CAROUSEL ===== */
.testimonials-section {
  background: #fffaf7;
}

.testimonial-card {
  border-left: 5px solid var(--color-primary);
  border-right: 5px solid var(--color-gold);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.6;
}

.testimonial-card h6 {
  color: var(--color-primary);
  font-family: var(--font-display);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 45px;
  height: 45px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}


/* ===== FOOTER SECTION ===== */
.footer-section {
  background: linear-gradient(135deg, var(--color-dark), #2c2c2c);
  font-family: var(--font-primary);
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}

.footer-section p {
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Quick Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

/* Contact Info */
.footer-contact li {
  margin-bottom: 8px;
  color: #ddd;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--color-gold);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  color: var(--color-accent);
}

/* Divider */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Text Gradient for Titles */
.text-gradient {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Bottom Credit */
.footer-section .text-center {
  color: #bbb;
}

.footer-section a.text-gradient {
  font-weight: 600;
  text-decoration: none;
}

.footer-section a.text-gradient:hover {
  color: var(--color-gold);
  text-decoration: underline;
}


/* ===== PARALLAX HEADER (ABOUT PAGE) ===== */
.parallax-header {
  position: relative;
  height: 65vh;
  background-image: url('./img/a4.png'); /* Change this image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
}

.parallax-header .overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: .50;
  z-index: 1;
}

.parallax-header .container {
  position: relative;
  z-index: 2;
}

.parallax-header h1 {
  font-family: var(--font-heading);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
  color: #fff;
}

.parallax-header p {
  font-family: var(--font-primary);
  color: #fffbe6;
  font-size: 1.1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Breadcrumbs */
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.text-gold {
  color: var(--color-gold);
}

/* ===== ABOUT COMPANY SECTION ===== */
.about-company {
  background: var(--color-light);
}

.about-company .section-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.about-company .section-title span {
  color: var(--color-accent);
}

.about-company p {
  font-family: var(--font-primary);
  color: var(--color-dark);
  line-height: 1.8;
  font-size: 1rem;
}

.about-company a {
  color: var(--color-primary);
  text-decoration: none;
}

.about-company a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* About Info */
.about-info h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.about-info ul li {
  color: var(--color-dark);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* About Button */
.btn-about {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Image */
.about-image img {
  border-radius: 20px;
  border: 5px solid #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}


/* ===== MISSION & VISION SECTION ===== */
.mission-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
}

.mission-section .section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
}

.mission-section .section-title span {
  color: var(--color-gold);
}

.mission-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mission-card .icon i {
  color: var(--color-gold);
}

.mission-card h4 {
  font-family: var(--font-display);
  color: var(--color-gold);
}

.mission-card p {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: #fffbe6;
  line-height: 1.8;
}

.text-gold {
  color: var(--color-gold);
}

/* ===== MODERN SERVICES SECTION ===== */
.services-modern {
  background: var(--color-light);
}

.services-modern .service-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.services-modern .service-img img:hover {
  transform: scale(1.05);
}

.services-modern .service-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-modern .service-content p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
}

@media (max-width: 992px) {
  .services-modern .service-img img {
    height: auto;
  }
}

.services-modern .service-content p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-dark);
  text-align: justify; /* ✅ Justify text alignment */
  margin-bottom: 0;
}

/* ===== MODERN CONTACT SECTION ===== */
.contact-modern {
  background-color: var(--color-light);
}

/* Section Title */
.contact-modern .section-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
}
.contact-modern .section-title span {
  color: var(--color-accent);
}

/* Info Cards */
.info-card {
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.info-card .icon i {
  font-size: 2rem;
  color: var(--color-primary);
}

.info-card:hover {
  transform: translateY(-5px);
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-card a {
  color: var(--color-primary);
  text-decoration: none;
}
.info-card a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Contact Form Card */
.contact-form-card {
  border: 2px solid #f0f0f0;
}

.contact-form-card input,
.contact-form-card textarea {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--color-primary);
  box-shadow: none;
  outline: none;
}

/* Button */
.btn-contact {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  color: var(--color-dark);
  transform: translateY(-2px);
}


/* ===== MAP SECTION ===== */
.map-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  height: 450px;
  border: none;
  filter: brightness(95%) contrast(105%);
  transition: all 0.4s ease;
}

.map-frame:hover {
  filter: brightness(100%) contrast(110%);
  transform: scale(1.01);
}

/* ===== CALL TO BOOK - SPLIT DESIGN ===== */
.call-book-split {
  background-color: var(--color-dark);
  overflow: hidden;
}

.call-book-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.call-book-content {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  height: 100%;
  border-radius: 0;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.4);
}

.call-book-content h2 {
  font-family: var(--font-heading);
  color: #fff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.call-book-content p {
  font-family: var(--font-primary);
  color: #fffbe6;
  text-align: justify;
}

/* Buttons */
.btn-call {
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* Contact Numbers */
.text-gold {
  color: var(--color-gold);
}

.call-book-content a {
  color: #fff;
  transition: color 0.3s ease;
}

.call-book-content a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .call-book-content {
    padding: 3rem 1.5rem;
  }

  .brand-text{
    font-size: 18px;
  }
}

/* ===== GALLERY SECTION (Uniform Image Size) ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 280px; /* ✅ Fixed equal height */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Crop + keep aspect ratio */
  border-radius: 15px;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

/* Optional: Make spacing consistent */
.gallery-section .col-md-6,
.gallery-section .col-lg-4 {
  display: flex;
  align-items: stretch;
}

/* ===== Owner Info Card ===== */
.owner-card {
  border-top: 4px solid var(--color-accent);
  transition: all 0.3s ease;
}

.owner-card .icon i {
  font-size: 2rem;
  color: var(--color-primary);
}

.owner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-top-color: var(--color-gold);
}

.owner-card p {
  font-family: var(--font-primary);
  color: var(--color-dark);
  font-size: 0.95rem;
  text-align: justify;
}

/* ===== Equal Height Cards for Contact Section ===== */

/* Make rows flex-aligned */
.contact-modern .row.g-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Ensure all columns stretch equally */
.contact-modern .col-md-4,
.contact-modern .col-md-6 {
  display: flex;
}

/* Force each card to fill equal height */
.info-card,
.owner-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 280px; /* Adjust card height */
  transition: all 0.3s ease;
}

/* Consistent spacing and hover animation */
.info-card:hover,
.owner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-top-color: var(--color-gold);
}

/* Optional - for smaller screens adjust height automatically */
@media (max-width: 768px) {
  .info-card,
  .owner-card {
    min-height: auto;
  }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatAir 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 55px;
  height: 55px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Air Floating Animation */
@keyframes floatAir {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-icon {
    width: 50px;
    height: 50px;
  }
}


/* ===== DIGITAL BUSINESS CARD SECTION ===== */
.digital-card-section {
  background: linear-gradient(135deg, var(--color-light), #eaf3ff);
}

.profile-card {
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
}

.rotary-logo {
  width: 80px;
  height: auto;
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-card {
  background: var(--gradient-main);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-card:hover {
  background: var(--gradient-gold);
  color: var(--color-dark);
  transform: translateY(-3px);
}

/* ===== VEHICLE FLEET SECTION ===== */
.vehicle-fleet-section {
  background: linear-gradient(135deg, #f9fbff, #eef5ff);
}

.vehicle-tile {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.vehicle-tile img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.vehicle-tile:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.vehicle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,77,143,0.8), rgba(240,199,94,0.5));
  opacity: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease;
}

.vehicle-tile:hover .vehicle-overlay {
  opacity: 1;
}

.vehicle-overlay h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vehicle-overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 5px;
  color: #fffaf7;
}

/* Section title */
.vehicle-fleet-section h2.section-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
}

.vehicle-fleet-section h2.section-title span {
  color: var(--color-gold);
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px; /* space between icon & text */
  line-height: 1.5;
}

.address-item i {
  font-size: 1.2rem;
  margin-top: 3px; /* aligns icon to top */
}


/* ===== TESTIMONIAL CONTROLS ===== */
.custom-control {
  width: 45px;
  height: 45px;
  background: var(--gradient-main);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.custom-control i {
  font-size: 1.5rem;
  color: #fff;
}

.carousel-control-prev.custom-control {
  left: -60px;
}

.carousel-control-next.custom-control {
  right: -60px;
}

@media (max-width: 992px) {
  .carousel-control-prev.custom-control {
    left: 10px;
  }
  .carousel-control-next.custom-control {
    right: 10px;
  }
}


/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 90px; /* above WhatsApp button */
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b32100, #ff6a00);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ff6a00, #ffcc00);
  transform: translateY(-5px);
}


/* ===== FLOATING SITE VISIT COUNTER - BOTTOM LEFT ===== */
.site-visit-float-bottom {
  position: fixed;
  bottom: 25px;
  left: 20px;
  background: linear-gradient(135deg, #b32100, #ff6a00);
  color: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.site-visit-float-bottom i {
  font-size: 1.2rem;
  color: #ffcc00;
}

.site-visit-float-bottom strong {
  font-size: 1rem;
  font-weight: 700;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .site-visit-float-bottom {
    bottom: 20px;
    left: 15px;
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}
