/* ===========================
   THEME VARIABLES
   =========================== */
:root {
  --primary: #1da6d8;
  /* sky blue */
  --primary-soft: #e3f7fd;
  --secondary: #b23343;
  /* light maroon */
  --secondary-soft: #fde8eb;
  --dark: #1f2937;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-body: #ffffff;
  --bg-light-alt: #f5f7fb;
  --footer-bg: #0b1220;
  --footer-border: #151b2c;
  --footer-text: #e5e7eb;
  --footer-muted: #9ca3af;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* ===========================
   GLOBAL RESET
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
}

p {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

a {
  text-decoration: none;
}












/* ===========================
   SECTION BASICS
   =========================== */
.section-padding {
  padding-block: 80px;
  background-color: #f0f0f0;
}

@media (max-width: 575.98px) {
  .section-padding {
    padding-block: 60px;
  }
}

.bg-light-alt {
  background-color: var(--bg-light-alt);
}


.section-title .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.section-title h2 {
  margin-top: 0.75rem;
  font-weight: 700;
}





/* Theme Color */
:root {
  --theme-color: #4f4f4f;
}









.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.icon-list i {
  color: var(--primary);
  margin-top: 0.15rem;
}


/* Contact Section */
.premium-contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  /* LIGHT BLUE → WHITE */
}

.contact-subtitle {
  font-size: 15px;
  color: #2c3e50;
  margin-top: 8px;
}

/* Info Panel */
.contact-info-panel {
  background: #ffffff;
  color: #0d1b2a;
  padding: 40px 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(30, 136, 229, 0.25);
  border-left: 5px solid #1e88e5;
  /* BLUE LEFT BORDER */
}

.contact-info-panel h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.contact-info-panel p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #2c3e50;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item i {
  font-size: 18px;
  margin-top: 4px;
  color: #1e88e5;
  /* BLUE ICON */
}

.info-item a {
  color: #0d1b2a;
  text-decoration: none;
}

/* Form Panel */
.contact-form-panel {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(30, 136, 229, 0.15);
}

.contact-form-panel h4 {
  font-size: 22px;
  color: #0d1b2a;
  margin-bottom: 20px;
}

/* Inputs */
.contact-form-panel .form-control {
  border-radius: 30px;
  padding: 12px 18px;
  font-size: 14px;
  border: 1px solid #90caf9;
  /* LIGHT BLUE BORDER */
}

.contact-form-panel .form-control:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.15);
}

/* Button */
.contact-btn {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #0d47a1;
  /* DEEP BLUE HOVER */
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 22px;
  }
}






/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366;
}

/* Call Button */
.call-btn {
  background-color: #007bff;
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.rental-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: .3s ease;
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.rental-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.rental-badge {
  background: #0d6efd15;
  color: #0d6efd;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.rent-btn {
  display: inline-block;
  background: #4f4f4f;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}





















/* Gallery Image */
.gallery-item img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ====== Gallery Section ====== */
.gallery-section {
  padding: 40px 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 22px;
}

.section-title span {
  color: #f28b1a;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 190px;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

/* ====== Lightbox ====== */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

#lightbox.active {
  display: flex;
}

#lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Close button */
.lb-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 38px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Navigation buttons */
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  user-select: none;
}

.lb-prev {
  left: 18px;
}

.lb-next {
  right: 18px;
}

@media (max-width: 520px) {
  .lb-nav {
    font-size: 40px;
  }
}



.img-fluideded {
  width: 100%;
  height: 380px;
}

.gallery-section {
  padding: 20px 0;
  background: linear-gradient(160deg, #f3f3f3, #f3f3f3);
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-item img {
    height: 190px;
  }
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 170px;
  }
}

/* ===============================
   VIDEO GALLERY – SS ENTERPRISES
================================ */

.video-gallery-section {
  background: #f8f6f3;
}

/* Subtitle */
.video-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===============================
   Video Gallery Section
================================ */
.video-gallery-section {
  background: #f8f6f3;
}

/* Subtitle */
.video-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Video Card */
.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

/* Video Thumbnail */
.video-thumb {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Overlay – DEFAULT VISIBLE */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: none;
  /* 🔥 Important */
  transition: all 0.4s ease;
}

/* Play Icon */
.video-overlay i {
  font-size: 50px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.video-card:hover .video-overlay i {
  transform: scale(1.12);
}

/* Responsive */
@media (max-width: 991px) {
  .video-thumb {
    height: 210px;
  }
}

@media (max-width: 576px) {
  .video-thumb {
    height: 190px;
  }
}

/* Overlay – default visible */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Video play hone par icon hide */
.video-card.playing .video-overlay {
  opacity: 0;
}


/* Video Card */
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.video-card video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover video {
  transform: scale(1.08);
}

/* Play Icon */
.play-icon {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5c400;
  font-size: 40px;
  opacity: 0;
  transition: 0.3s ease;
}

.video-card:hover .play-icon {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .video-card video {
    height: 180px;
  }
}






/* ========================= PREMIUM HEADER / NAVBAR ========================= */
.premium-header {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

/* Logo */
.brand-logo-img {
  height: 74px;
  width: 200px;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #1E88E5; /* Primary Blue */
}

/* Underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #1E88E5; /* Primary Blue */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Call Button */
.nav-call-btn {
  background: #1E88E5; /* Primary Blue */
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.nav-call-btn:hover {
  background: #0D47A1; /* Deep Blue */
  color: #ffffff;
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(0); /* keep toggle icon black */
}

/* Mobile Menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #f0f8ff; /* Light Blue background */
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .nav-call-btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
}











/* =========================
   TOP BAR – PREMIUM (ORANGE + WHITE)
========================= */

.top-bar {
  background: #1E88E5; /* Primary Blue Background */
  color: #ffffff;       /* White text for contrast */
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #0D47A1; /* Deep Blue border */
}

/* Left Info */
.top-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff; /* White text */
}

.top-left i {
  color: #ffffff; /* Light Blue icon */
  font-size: 14px;
}

/* Center Urgent */
.top-center {
  color: #ffffff; /* White text */
  font-size: 14px;
  font-weight: 600;
}

.top-center .urgent-call {
  color: #ffffff; /* Purple highlight for emphasis */
  font-weight: 700;
  margin-left: 6px;
  text-decoration: none;
  position: relative;
}

.top-center .urgent-call::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #BA68C8; /* Purple underline */
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.top-center .urgent-call:hover::after {
  transform: scaleX(1);
}

/* Right Social */
.follow-text {
  font-size: 13px;
  color: #e0f2ff; /* Light blue text */
}

.top-social {
  color: #ffffff; /* White icons */
  font-size: 14px;
  transition: all 0.3s ease;
}

.top-social:hover {
  color: #42A5F5; /* Light Blue hover */
  transform: translateY(-2px);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 767px) {
  .top-bar {
    text-align: center;
    font-size: 13px;
  }

  .top-center {
    font-size: 13px;
  }
}











/* =========================
   HERO / CAROUSEL SECTION
========================= */

.hero-section {
  height: 84vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Background images */
.slide-one {
  background-image: url("../img/b1.webp");
}

.slide-two {
  background-image: url("../img/b2.webp");
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.74),
      rgba(0, 0, 0, 0.664));
  z-index: 1;
}

/* Bootstrap carousel fade fix */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #ffffff;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #1e88e5;
  /* PRIMARY BLUE */
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Heading */
.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.hero-content h1 span {
  display: block;
  color: #42a5f5;
  /* LIGHT BLUE HIGHLIGHT */
  font-size: 36px;
  margin-top: 8px;
}

/* Paragraph */
.hero-content p {
  margin: 18px 0 28px;
  font-size: 16px;
  color: #cce6ff;
  /* SOFT BLUE TEXT */
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: #1e88e5;
  /* PRIMARY BLUE BUTTON */
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.45);
}

.hero-btn-primary:hover {
  background: #0d47a1;
  /* DEEP BLUE HOVER */
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn-outline:hover {
  background: #ffffff;
  color: #1e88e5;
  /* BLUE TEXT HOVER */
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .hero-section,
  .hero-slide {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content h1 span {
    font-size: 28px;
  }
}

@media (max-width: 576px) {

  .hero-section,
  .hero-slide {
    height: 68vh;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h1 span {
    font-size: 22px;
  }
}
















/* =========================
   ABOUT US SECTION
========================= */

.img-fluiding {
  width: 100%;
  height: 440px;
}

.about-unique-section {
  padding: 10px 0;
  background: #ffffff;
}

/* Section Title */
.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #0d1b2a;
  /* Deep Blue-Black */
}

.section-title span {
  color: #1e88e5;
  /* PRIMARY BLUE */
}

.section-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  color: #4a5a6a;
}

/* Image Box */
.about-img-box {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(30, 136, 229, 0.25);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
}

/* Content */
.about-content-box {
  padding-left: 10px;
}

.about-heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0d47a1;
  /* DEEP BLUE */
}

.about-text {
  color: #3f4f5f;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

/* Points */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 25px;
}

.about-points .point {
  font-size: 15px;
  color: #1c2b39;
  display: flex;
  align-items: center;
}

.about-points i {
  color: #1e88e5;
  /* BLUE ICON */
  margin-right: 8px;
  font-size: 16px;
}

/* Call Button */
.about-call-btn {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  color: #ffffff;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(30, 136, 229, 0.45);
}

.about-call-btn:hover {
  background: #0d47a1;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(13, 71, 161, 0.55);
}

/* Floating Icons */
.about-float-icon {
  position: absolute;
  font-size: 90px;
  color: rgba(30, 136, 229, 0.08);
  /* SOFT BLUE GLOW */
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.icon-1 {
  top: 10%;
  left: 5%;
}

.icon-2 {
  bottom: 10%;
  right: 5%;
}

/* Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 34px;
  }

  .about-heading {
    font-size: 26px;
  }

  .img-fluiding {
    height: 300px;
  }
}
















/* ===== Services Section ===== */
.services-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Heading */
.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: #0d1b2a;
  /* Deep Blue-Black */
}

.section-heading span {
  color: #1e88e5;
  /* PRIMARY BLUE */
}

.section-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #4a5a6a;
}

/* ===== Service Card ===== */
.service-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(30, 136, 229, 0.18);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 136, 229, 0.25);
  /* SOFT BLUE BORDER */
}

.service-img,
.service-name,
.service-desc,
.service-cta {
  position: relative;
  z-index: 2;
}

/* Hover Effect */
.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(30, 136, 229, 0.35);
}

/* Image */
.service-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-box:hover img {
  transform: scale(1.08);
}

/* Title */
.service-name {
  font-size: 20px;
  font-weight: 700;
  color: #0d47a1;
  /* DEEP BLUE */
  margin-bottom: 8px;
}

/* Description */
.service-desc {
  font-size: 14px;
  color: #5a6b7b;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* CTA Button */
.service-cta {
  display: inline-block;
  padding: 11px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 26px rgba(30, 136, 229, 0.45);
}

.service-cta:hover {
  background: #0d47a1;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(13, 71, 161, 0.55);
}

/* Responsive */
@media (max-width: 767px) {
  .section-heading {
    font-size: 32px;
  }

  .service-img img {
    height: 200px;
  }
}







/* ===== Why Choose Us Section ===== */
.why-choose-section {
  padding: 30px 0;
  background: linear-gradient(180deg, #ffffff, #e3f2fd);
  /* WHITE → LIGHT BLUE */
}

/* Heading */
.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #0d1b2a;
  /* DARK BLUE TEXT */
}

.section-title span {
  color: #1e88e5;
  /* PRIMARY BLUE HIGHLIGHT */
}

.why-subtitle {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #2c3e50;
  /* SOFT DARK BLUE */
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 22px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 12px 35px rgba(13, 71, 161, 0.12);
  border: 1px solid #bbdefb;
  /* LIGHT BLUE BORDER */
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(30, 136, 229, 0.18),
      transparent);
  opacity: 0;
  transition: 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(30, 136, 229, 0.35);
}

/* Icon */
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #ffffff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.45);
}

.why-card:hover .why-icon {
  background: #0d47a1;
  /* DEEP BLUE HOVER */
  color: #ffffff;
  transform: rotate(6deg) scale(1.08);
}

/* Title */
.why-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
  /* DARK BLUE */
  margin-bottom: 10px;
}

/* Text */
.why-card p {
  font-size: 14px;
  color: #5f6c7b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}














/* ===== Footer ===== */
.premium-footer {
  background: #ffffff;
  border-top: 2px solid #bbdefb;
  /* LIGHT BLUE BORDER */
  font-size: 14px;
}

/* Main */
.footer-main {
  padding: 70px 0 50px;
}

/* Logo */
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #0d1b2a;
  /* DARK BLUE */
  margin-bottom: 12px;
}

/* Description */
.footer-desc {
  color: #5f6c7b;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Icons */
.footer-social a {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 15px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(30, 136, 229, 0.45);
}

.footer-social a:hover {
  background: #0d47a1;
  /* DEEP BLUE HOVER */
  color: #ffffff;
  transform: translateY(-4px);
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b2a;
  /* DARK BLUE */
  margin-bottom: 15px;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: #5f6c7b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #1e88e5;
  /* BLUE HOVER */
  padding-left: 6px;
}

/* Contact */
.footer-contact li {
  margin-bottom: 10px;
  color: #5f6c7b;
}

.footer-contact i {
  color: #1e88e5;
  /* BLUE ICON */
  margin-right: 8px;
}

.footer-contact a {
  color: #5f6c7b;
  text-decoration: none;
}

/* Bottom */
.footer-bottom {
  background: linear-gradient(90deg, #0d47a1, #1e88e5);
  padding: 15px 0;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-main {
    padding: 50px 0 35px;
  }

  .footer-logo {
    font-size: 20px;
  }
}


















.scroll-car-section {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  border-bottom: 2px solid #ffe0b3;
  /* LIGHT ORANGE BORDER */
}

/* CONTENT */
.car-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  /* BLACK */
}

.car-content h2 span {
  color: #ff8c00;
  /* ORANGE HIGHLIGHT */
}

.car-content p {
  margin: 15px 0;
  color: #555555;
  font-size: 15px;
}

.car-content ul {
  padding-left: 0;
  margin-bottom: 25px;
}

.car-content ul li {
  list-style: none;
  margin-bottom: 8px;
  font-weight: 500;
  color: #222222;
}

/* BUTTON */
.car-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ff8c00;
  /* ORANGE */
  color: #ffffff;
  /* WHITE TEXT */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.4);
}

.car-btn:hover {
  background: #000000;
  /* BLACK HOVER */
  color: #ffffff;
  transform: translateY(-3px);
}

/* IMAGE AREA */
.car-image-wrapper {
  position: relative;
  height: 250px;
}

.car-image {
  max-width: 100%;
  position: absolute;
  right: -500px;
  /* start outside */
  bottom: 0;
  transition: transform 0.8s ease;
}

/* Active state (JS will add this) */
.scroll-car-section.active .car-image {
  transform: translateX(-500px);
}

/* Reverse animation */
.scroll-car-section.reverse .car-image {
  transform: translateX(0);
}

/* MOBILE */
@media(max-width:991px)
{
	.sticky-top{
		position:relative;
	}
}
@media (max-width: 768px) {
  .car-image-wrapper {
    height: 170px;
  }

  .car-content h2 {
    font-size: 32px;
  }
}