/* ===========================
   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;
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  background: linear-gradient(135deg, #0043bf, #0073d1);
  ;
  color: #ffffff;
  font-size: 14px;
  padding: 6px 0;
}

/* Force white text */
.top-bar,
.top-bar span,
.top-bar a,
.top-bar i {
  color: #ffffff !important;
}

/* Center urgent text */
.top-center {
  font-size: 14px;
  white-space: nowrap;
}

/* Urgent call link */
.urgent-call {
  margin-left: 6px;
  font-weight: 700;
  text-decoration: underline;
}

/* Social icons */
.top-social {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.top-social:hover {
  background: #ffffff;
  color: #050f24 !important;
}

/* Mobile look refinement */
@media (max-width: 767px) {
  .top-center {
    font-size: 13px;
    letter-spacing: 0.3px;
  }
}




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

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

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

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

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.425));
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content h1 span {
  display: block;
  font-size: 22px;
  font-weight: 400;
  margin-top: 8px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #e3f2fd;
}

/* Buttons */
.hero-actions .btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  margin-right: 10px;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #42a5f5, #1e88e5);
  border: none;
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
}

.hero-actions .btn-outline-light:hover {
  background: #ffffff;
  color: #0d47a1;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item {
    height: 75vh;
  }

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

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

/* HERO SECTION TEXT COLOR */
.hero-section,
.hero-section h1,
.hero-section h1 span,
.hero-section p,
.hero-section .hero-badge,
.hero-section a {
  color: #ffffff !important;
}

/* Hero Badge Styling */
.hero-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

/* Overlay = Pure Black */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.575);
  /* Black overlay */
  z-index: 1;
}

/* Ensure content above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

/* Carousel item height */
.carousel-item {

  position: relative;
}

/* Buttons */
.hero-actions .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-weight: 600;
}

.hero-actions .btn-primary:hover {
  background-color: #e6e6e6;
  color: #000;
}

.hero-actions .btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
}

.hero-actions .btn-outline-light:hover {
  background-color: #ffffff;
  color: #000000;
}

















/* ===========================
   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 {
  margin-bottom: 2rem;
}

.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;
}




/* ===========================
   ACHIEVEMENTS
   =========================== */
.achievements-section {
  background: radial-gradient(circle at top left, var(--secondary), #111827);
  position: relative;
  overflow: hidden;
}

.achievements-section::before,
.achievements-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 166, 216, 0.45), transparent 65%);
  opacity: 0.5;
}

.achievements-section::before {
  top: -90px;
  left: -80px;
}

.achievements-section::after {
  bottom: -120px;
  right: -100px;
}

.achievements-section h2,
.achievements-section .subtitle,
.achievements-section p {
  color: #ffffff;
}

.achievement-card {
  position: relative;
  z-index: 2;
}

.achievement-card .counter {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
}

.achievement-card .suffix {
  font-size: 1.3rem;
  font-weight: 700;
  margin-left: 0.1rem;
  color: #ffffff;
}

.achievement-card p {
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e5e7eb;
}





/* ===========================
   CONTACT
   =========================== */
/* Contact Section */
.premium-contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f4faff, #e3f2fd);
}

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

/* Info Panel */
.contact-info-panel {
  background: #eeeeee;
  color: #000000;
  padding: 40px 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(30, 136, 229, 0.35);
}

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

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

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

.info-item i {
  font-size: 18px;
  margin-top: 4px;
}

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

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

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

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

.contact-form-panel .form-control:focus {
  border-color: #42a5f5;
  box-shadow: none;
}

/* Button */
.contact-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #42a5f5, #1e88e5);
  color: #ffffff;
  font-size: 15px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  transform: translateY(-2px);
}

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

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





/* ===========================
   MAP
   =========================== */
.map-section {
  position: relative;
  background: linear-gradient(120deg, #0f172a, #082f49);
  color: #ffffff;
}

.map-section .section-title .subtitle,
.map-section .section-title h2 {
  color: #ffffff;
}

.map-container {
  position: relative;
  height: 320px;
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(29, 166, 216, 0.28), transparent 60%);
  pointer-events: none;
}


/* ===========================
   ANIMATIONS – REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */
@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
  }

  .hero-content .lead {
    margin-inline: auto;
  }

  .hero-content .d-flex {
    justify-content: center;
  }
}




/* 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;
}





/* About Section Title */
/* About Us Section */
.about-unique-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f4faff, #e3f2fd);
}

.section-title {
  font-size: 36px;
  font-weight: 700;

  color: #0d47a1;
}

.section-title span {
  color: #42a5f5;
}

/* Image Box */
.about-img-box img {
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(66, 165, 245, 0.25);
}

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

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

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

.about-call-btn i {
  font-size: 16px;
}

.about-call-btn:hover {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  transform: translateY(-2px);
  color: #fff;
}

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

  .about-text {
    font-size: 15px;
  }
}








/* Services Section */
.services-section {
  padding: 60px 0;
  background: #f4faff;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0d47a1;
}

.section-heading span {
  color: #42a5f5;
}

.service-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(66, 165, 245, 0.15);
  transition: all 0.3s ease;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-image {
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
  height: 220px;
}

.service-name {
  font-size: 20px;
  font-weight: 600;
  color: #1565c0;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.service-cta {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, #42a5f5, #1e88e5);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.service-cta:hover {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  color: #fff;
}

.enhanced-service-box {
  background: #ffffff;
  padding: 2px;
  border-radius: 16px;
}

.service-tag {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

.service-title {
  font-size: 28px;
  font-weight: 700;
}

.service-text {
  text-align: justify;
  color: #555;
  margin-bottom: 14px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.service-features li {
  margin-bottom: 8px;
  font-size: 15px;
}

.service-features i {
  color: #0d6efd;
  margin-right: 8px;
}

.service-actions .btn {
  border-radius: 30px;
  padding: 10px 22px;
}










/* ===============================
   WHY CHOOSE US – SS ENTERPRISES
================================ */

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, #e3f2fd, #f4faff);
}

.why-choose-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d47a1;
}

.why-choose-section .section-title span {
  color: #42a5f5;
}

.why-subtitle {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 15px;
  color: #555;
}

/* Card Design */
.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 25px rgba(66, 165, 245, 0.2);
  transition: all 0.3s ease;
}

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

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

.why-icon i {
  font-size: 28px;
  color: #ffffff;
}

/* Text */
.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

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

  .why-card {
    padding: 25px 18px;
  }
}




/* video */
.video-card {
  position: relative;
  width: 100%;
  height: 250px;
  aspect-ratio: 16 / 9;
  /* Same size for all videos */
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Proper fit without distortion */
  display: block;
}

.vidio {
  width: 100%;
  height: 220px;
}

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

.gallery-section {
  padding: 70px 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;
}









/* Header */
.premium-header {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(66, 165, 245, 0.2);
  z-index: 999;
}

/* Navbar */


/* Logo */
.brand-logo-img {
  height: 80px;
  width: 140px;
}

/* Links */
.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #0d47a1;
  position: relative;
  padding: 6px 0;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #1e88e5;
}

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

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

/* Call Button */
.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #42a5f5, #1e88e5);
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(30, 136, 229, 0.4);
}

.nav-call-btn:hover {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  color: #fff;
}

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

.navbar-toggler:focus {
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.25);
  }

  .nav-call-btn {
    margin-top: 10px;
  }
}









/* Footer */
.premium-footer {
  background: #ffffff;
  color: #000000;
  border-top: 1px solid black;
}

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

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000000;
}

/* Text */
.footer-desc {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

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

.footer-links li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #000000;
  padding-left: 5px;
}








/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-contact li {
  margin-bottom: 12px;
}

.footer-contact i {
  margin-right: 8px;
  color: #000000;
}

/* Social */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #000000;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #000000;
}

/* Bottom */
.footer-bottom {
  background: #000000;
  padding: 15px 0;
  font-size: 14px;
}

.footer-bottom i {
  color: #ff5252;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}













.video-bg-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.video-bg-section .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-bg-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 2;
}

.video-bg-section .video-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.video-bg-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.video-bg-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

.video-bg-section .btn {
  padding: 12px 30px;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid white;
  background-color: #00000000;
}









/* ===== COMMON ===== */
.unique-service-section {
  background: #f5f7fa;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
}

.section-subtitle {
  color: #666;
}

.service-tabs {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgb(199, 199, 199);
}

/* DESKTOP: vertical tabs */
@media (min-width: 992px) {
  .service-tab-list {
    flex-direction: column;
  }
}

/* MOBILE: horizontal scroll tabs */
@media (max-width: 991px) {
	.sticky-top{
		position:relative;
	}
  .service-tabs {
    margin-bottom: 20px;
  }

  .service-tab-list {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 10px;
  }

  .service-tab-list::-webkit-scrollbar {
    display: none;
  }

  .service-tab-list .nav-item {
    flex: 0 0 auto;
  }

  .service-tab-list .nav-link {
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
}

/* TAB BUTTON */
.service-tab-list .nav-link {
  color: #333;
  font-weight: 500;
  margin-bottom: 6px;
  transition: 0.3s;
}

.service-tab-list .nav-link.active {
  background: linear-gradient(135deg, #000, #444);
  color: #fff;
}

/* PRODUCTS */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h6 {
  padding: 14px;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.product-card:hover {
  transform: translateY(-8px);
}