:root {
  /* Brand Colors */
  --bg-primary: #284b6e;
  --bg-secondary: #c3c7ca;
  --bg-success: #198754;
  --bg-danger: #dc3545;
  --bg-warning: #ffc107;
  --bg-info: #0dcaf0;
  --bg-light: #faf9fa;
  --bg-white: #ffffff;
  --bg-dark: #212529;

  /* Other background */
  --bg-inner-box: #ffffff;

  /* Text */
  --text-muted: #6c757d;
  --text-primary: #284b6e;
  --text-secondary: #c3c7ca;
  --text-success: #198754;
  --text-danger: #dc3545;
  --text-warning: #ffc107;
  --text-info: #0dcaf0;
  --text-light: #faf9fa;
  --text-white: #ffffff;
  --text-dark: #212529;

  /* Background */
  --bg-body: #ffffff;
  --bg-section: #f4f6f9;
}
/* ===============================
   Bootstrap Colors
=============================== */
/* background Gradient Color */
.bg-gradient-warning
.bg-gradient-info
.bg-gradient-light
/* background Color */
.bg-primary {
  background-color: var(--bg-primary);
}
.bg-secondary {
  background-color: var(--bg-secondary);
}
.bg-success {
  background-color: var(--bg-success);
}
.bg-danger {
  background-color: var(--bg-danger);
}
.bg-warning {
  background-color: var(--bg-warning);
}
.bg-info {
  background-color: var(--bg-info);
}
.bg-light {
  background-color: var(--bg-light);
}
.bg-dark {
  background-color: var(--bg-dark);
}
.bg-white {
  background-color: var(--bg-white);
}
/* Text Color */
.text-primary {
  color: var(--text-primary);
}
.text-secondary {
  color: var(--bg-secondary);
}
.text-success {
  color: var(--text-success);
}
.text-danger {
  color: var(--text-danger);
}
.text-warning {
  color: var(--text-warning);
}
.text-info {
  color: var(--text-info);
}
.text-light {
  color: var(--text-light);
}
.text-white {
  color: var(--text-white);
}
.text-dark {
  color: var(--text-dark);
}
.text-muted {
  color: var(--text-dark);
}

/* ===============================
   General
=============================== */
html,
body {
  margin: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-body);
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
}

p {
  color: var(--color-muted);
}

/* ===============================
   Utility
=============================== */

/* Social buttons */
.btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  background: var(--bg-primary);
  color: var(--text-white);
  border-radius: 3px;
  margin-left: 4px;
  transition: all 0.3s ease;
}

.btn-square:hover {
  background: var(--bg-info);
  color: var(--text-white);
}

.text-color {
  color: var(--text-info);
}

.btn-bg {
  background: linear-gradient(135deg, #0dcaf0 0%, #0abde3 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.4);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-bg:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(13, 202, 240, 0.55);
  color: #fff;
}

.small-box-h {
  min-height: 220px !important;
}

.justify-text {
  text-align: justify;
  text-justify: inter-word;
}

/* ===============================
   Section Titles
=============================== */
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--text-info);
  font-weight: 600;
  padding: 0 15px;
  letter-spacing: 2px;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  display: block;
  background: var(--text-info);
  z-index: -1;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.section-title::before {
  width: calc(100% + 80px);
  top: 4px;
  left: -40px;
}

.section-title::after {
  width: calc(100% + 120px);
  bottom: 4px;
  left: -60px;
}

/* ===============================
   Top Header & Topbar
=============================== */
.topbar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--bg-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.topbar .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.topbar .breadcrumb a {
  text-decoration: none;
  color: var(--text-muted);
}

.topbar .breadcrumb a:hover {
  color: var(--text-primary);
}

.topbar .social-icon a {
  text-decoration: none;
}

/* Dropdown */

.dropdwon:hover i {
  color: var(--text-primary);
}
.dropdown-toggle {
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.dropdown-toggle:hover {
  color: var(--text-primary);
}

/* Dropdown menu */
.dropdown-menu {
  border: none;
  min-width: 150px;
  padding: 8px 0;
  background: var(--bg-white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  z-index: 2000 !important;
}

.dropdown-menu .dropdown-item {
  padding: 8px 14px;
  color: var(--text-dark);
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background: var(--bg-primary);
  color: var(--text-white);
  border-radius: 4px;
}

/* ===============================
   Top Header
=============================== */
/* Logo */
.logo-img {
  max-height: 60px;
  /* limits the height */
  max-width: 100%;
  /* prevents overflow */
  height: auto;
  /* keeps aspect ratio */
  width: auto;
  /* keeps aspect ratio */
  object-fit: contain;
  /* ensures the image scales inside container */
}

/* Top Bar Icons */
.btn-lg-square {
  width: 45px;
  height: 45px;
  font-size: 18px;
  background: var(--bg-white);
  border: 2px solid var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.btn-lg-square:hover {
  background: var(--bg-primary);
  color: var(--text-white);
  border-color: var(--bg-primary);
}

/* Contact Info Text */
.top-bar h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.top-bar p {
  margin-bottom: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* =========================
   Navbar Base
========================= */
/* Navbar */
.navbar {
  background: var(--bg-primary);
  transition: top 0.3s, opacity 0.3s;
  z-index: 1000;
  padding: 0.5rem 1rem;
}

/* Navbar Links */
.navbar .navbar-nav .nav-link {
  margin-right: 25px;
  padding: 20px 0;
  color: var(--text-white);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--text-warning) !important;
}

.navbar .navbar-nav .nav-link i {
  transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover i,
.navbar .navbar-nav .nav-link.active i {
  color: var(--text-warning) !important;
}

/* Mobile Brand */
.navbar-brand.d-lg-none {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
}

/* Hamburger */
.navbar-toggler {
  width: 25px;
  height: 16px;
  border: none;
  background: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.toggler-icon,
.toggler-icon::before,
.toggler-icon::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--bg-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggler-icon::before {
  top: -6px;
  content: "";
}
.toggler-icon::after {
  top: 6px;
  content: "";
}

.navbar-toggler.active .toggler-icon {
  background-color: transparent;
}
.navbar-toggler.active .toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler.active .toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

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

/* Mobile Styles */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
    text-align: center;
  }
  .navbar .navbar-nav {
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Sticky Navbar */
.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body.navbar-fixed-padding {
  padding-top: 80px;
}

/* ===============================
   About
=============================== */

/* ===============================
   Features
=============================== */
.feature-image-wrapper {
  position: relative;
}

.feature-img {
  width: 130%;
  /* scale bigger */
  max-width: none;
  /* override Bootstrap's restriction */
  margin-left: -30%;
  /* push it outside to the left */
  height: auto;
}

.feature-outer {
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
  /* near white */
  border-radius: 12px;
  padding: 12px;
  /* space around inner */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-inner {
  border-radius: 10px;
  padding: 25px 15px;
  width: 100%;
  height: 100%;
}

.feature-inner img {
  width: 55px; /* fixed width  */
  height: 55px; /* fixed height */
  max-width: 55px; /* prevent stretching larger */
  margin-bottom: 12px;
  object-fit: contain; /* keeps aspect ratio for images/svg */
}

.feature-inner h5 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===============================
   Carousel
=============================== */

/* Carousel Container */
#carouselExampleCaptions {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Each Slide */
.carousel-item {
  position: relative;
  height: 50vh;
  line-height: 2;
  /* Full-screen height hero */
  min-height: 500px;
}

/* Background Image */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay - softer gradient for elegance */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

/* Captions */
.carousel-caption {
  position: absolute;
  top: 40%;
  width: 70%;
  left: 50%;
  padding: 0 2rem;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 70%;
  z-index: 2;
}

/* Title */
.carousel-caption .slider-title {
  font-size: clamp(1rem, 1.5vw + 0.8rem, 1.8rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 2.6;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Subtitle */
.carousel-caption .slider-subtitle{
  font-weight: bold;
  color: var(--bg-info);
}
.carousel-caption .slider-subtitle .slider-text {
  font-size: 1.2rem;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Learn More Button */
.carousel-caption .learn-more-btn,
.carousel-caption .learn-more-btn-2 {
  display: inline-block;
  /* padding: 12px 28px; */
  /* border-radius: 50px; */
  font-weight: 600;
  /* background: var(--bg-info); */
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
  

  background: linear-gradient(135deg, #0dcaf0 0%, #0abde3 100%);
  /* color: #fff; */
  font-size: 1.25rem; /* slightly bigger text */
  /* font-weight: 600; */
  padding: 0.85rem 3rem;
  border-radius: 50px; /* pill shape */
  border: none;
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.carousel-caption .learn-more-btn:hover,
.carousel-caption .learn-more-btn-2:hover {
  /* background: var(--bg-primary); */
  /* transform: scale(1.05); */

  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13, 202, 240, 0.55);
  text-decoration: none;
  color: #fff;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: transparent !important;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .carousel-caption {
    top: 50%;
    /* keep center-ish */
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    /* use full screen width */
    width: 100%;
    /* force container inside */
    padding: 0 30px;
    /* breathing room */
    text-align: center;
    word-wrap: break-word;
    /* force long words to wrap */
    overflow-wrap: break-word;
   
  }


  .carousel-caption .slider-title {
    font-size: 1.3rem;
    /* balanced size */
    line-height: 1.2;
    word-break: break-word;
    text-align: center;
  }

  .carousel-caption .slider-subtitle {
    font-size: 1rem;
    line-height: 1.3;
    padding: 0 5px;
    text-align: center;
    font-weight: bold;
    /* stop touching edges */

  }

  .carousel-caption .slider-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    padding: 0 5px;
    text-align: justify;
    text-justify: inter-word;
  }
}

/* ===============================
   Services
=============================== */
.service-box {
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
  overflow: hidden;
}
.service-heading {
  background-color: var(--bg-info);
}

.service-box p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.icon-container svg {
  width: 40px;
  height: 40px;
  color: var(--text-dark);
  /* primary color */
}

/* ===============================
   Our Team
=============================== */

/* Team Item Container */

.team-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Team Image */
.team-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.team-item:hover img {
  transform: scale(1.1); /* Zoom on hover (desktop) */
}

/* Hidden Info Box */
.team-text {
  position: absolute;
  bottom: -100%; /* Hide by default */
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  transition: bottom 0.4s ease-in-out;
  padding: 20px;
  text-align: center;
}

.team-item:hover .team-text {
  bottom: 0; /* Slide up on hover (desktop) */
}

/* Social Buttons */
.team-text .btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background-color: #f8f9fa;
  color: var(--color-primary);
  border: 1px solid #ddd;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.team-text .btn:hover {
  background-color: var(--bg-primary) !important;
  color: var(--text-white) !important;
  transform: scale(1.1);
}

/* ===========================
   Mobile / Touch Adjustments
   =========================== */

/* Touch devices do not have a true hover.
   Show the info box by default when pointer is coarse. */
@media (pointer: coarse) {
  .team-text {
    bottom: 0; /* Always visible on mobile */
  }
  .team-item:hover img {
    transform: none; /* Optional: disable zoom on mobile */
  }
}
/* ===============================
   Footer
=============================== */
/* Footer Background */
.footer {
  background-color: var(--bg-primary);
  /* fallback color */
  padding: 50px 0;
  color: var(--text-white);
}

/* Footer Items */
.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  color: var(--bg-white);
  line-height: 35px;
  text-decoration: none;
}

.footer .footer-item a:hover {
  color: var(--text-info);
}

/* Logo */
.f-logo {
  max-width: 20rem;
  height: auto;
  margin-bottom: 20px;
}

/* Footer Social Buttons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(201, 196, 196, 0.1);
  color: var(--text-white);
  /* icon color */
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effects */
.social-btn:hover {
  transform: scale(1.1);
  background-color: #f1f1f1;
  /* subtle background change */
}

.footer-instagram {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.footer-instagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Makes it a perfect square */
  overflow: hidden;
  border-radius: 0.5rem;
}

.footer-instagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fill the container without distortion */
  display: block;
  transition: transform 0.3s ease;
}

/* Hover effect: scale image slightly */
.footer-instagram:hover img {
  transform: scale(1.05);
}

/* Icon overlay */
.footer-search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-instagram:hover .footer-search-icon {
  opacity: 1;
}

.footer-search-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: var(--text-white);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-search-icon a:hover {
  background-color: var(--bg-info);
  transform: scale(1.2);
}

.f-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  /* Slightly smaller width */
  height: 60px;
  /* Slightly smaller height */
  background-color: var(--bg-info);
  /* Icon background color */
  border-radius: 10px;
  /* Slightly rounded corners */
  color: var(--text-white);
  /* Icon color */
  font-size: 20px;
  /* Smaller icon size */
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.f-icons i {
  display: block;
}

/* =============================
   COPYRIGHT SECTION
============================= */
.copyright {
  background-color: var(--bg-primary, #111); /* fallback dark */
  color: var(--text-white, #fff);
  font-size: 0.95rem;
}

/* Links inside copyright */
.copyright a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.copyright a:hover {
  color: var(--text-info, #0dcaf0);
  border-bottom-color: var(--bg-info, #0dcaf0);
}

/* Designer link with animated underline */
.designer-link {
  text-decoration: none;
  color: var(--text-white);
  position: relative;
  transition: color 0.3s ease;
}

.designer-link:hover {
  color: var(--text-info, #0dcaf0);
}

.designer-link .link-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0dcaf0;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.designer-link:hover .link-underline {
  width: 100%;
}

/* Copyright link hover */
.copyright-link {
  text-decoration: none;
  color: var(--text-white);
  transition: color 0.3s ease;
}

.copyright-link:hover {
  color: var(--text-info, #0dcaf0);
}

.social-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 20px;
  /* smaller phone icon */
  transition: all 0.3s ease;
}

.social-phone-btn i.fa-phone-alt {
  transition: color 0.3s ease;
}

.social-phone-btn .comment-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(18px, -18px);
  /* move top-right relative to center */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.social-phone-btn:hover {
  background-color: var(--bg-info);
  /* Phone button hover */
  transform: scale(1.1);
}

.social-phone-btn:hover i.fa-phone-alt {
  color: var(--text-white);
  /* phone icon color on hover */
}

.social-phone-btn:hover .comment-icon {
  background-color: var(--bg-info);
  /* comment icon hover color */
  color: var(--text-white);
}

/* Platform Specific Hover Colors (icon color changes) */
.social-btn.facebook:hover i {
  color: #3b5998;
}

.social-btn.twitter:hover i {
  color: #14171a;
}

.social-btn.instagram:hover i {
  color: #e4405f;
}

.social-btn.linkedin:hover i {
  color: #0077b5;
}

/* ===============================
   Back to Top
=============================== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none; /* Hide by default */
  background: var(--bg-info);
  color: var(--text-white);
  font-size: 24px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.top a {
  text-decoration: none;
}

.back-to-top.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
/* Hide back-to-top button on small screens */
@media (max-width: 767px) {
  #backToTop {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none; /* prevent any clicks */
  }
}

/* ===============================
   Testimonial
=============================== */
/* Slider container */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  min-height: 300px;
  position: relative;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
  z-index: 1;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Profile image */
.testimonials-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  box-shadow: 0 0 0 5px #0dcaf0;
}

.testimonials-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.testimonial-text {
  font-style: italic;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-slide h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-slide span {
  font-size: 14px;
  color: #888;
}

/* Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #0dcaf0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
  z-index: 10;
  transition: all 0.3s ease;
}

.testimonial-arrow:hover {
  background: #0dcaf0;
  color: #fff;
}

.testimonial-prev {
  left: 10px;
}

.testimonial-next {
  right: 10px;
}

/* ===============================
   BoxSpaces Page Start
=============================== */
/* Outer row spacing & background */
.feature-cards {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 3rem 1rem;
  border-radius: 1rem;
}

/* Card styling */
.feature-card {
  background-color: #ffffff;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

/* Icon circle */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0dcaf0; /* Bootstrap info color */
  color: #fff;
  box-shadow: 0 4px 12px rgba(13, 202, 240, 0.4);
  transition: background 0.3s ease;
}
.feature-card:hover .icon-circle {
  background: #0bb6d8;
}
.icon-circle i {
  font-size: 1.75rem;
}

/* Button */
.btn-cta {
  background: linear-gradient(135deg, #0dcaf0 0%, #0abde3 100%);
  color: #fff;
  font-size: 1.25rem; /* slightly bigger text */
  font-weight: 600;
  padding: 0.85rem 3rem;
  border-radius: 50px; /* pill shape */
  border: none;
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta i {
  font-size: 1.3rem;
}

/* Hover / focus effect */
.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13, 202, 240, 0.55);
  text-decoration: none;
  color: #fff;
}
/* ===============================
   BoxSpaces Page End
=============================== */
/* ===============================
   RemovalService Page Start
=============================== */
/* Section background to separate from rest of page */
.feature-cards {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f7fd 100%);
  border-radius: 1rem;
}

/* Card styling */
.feature-cards .card {
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

/* Hover lift & glow */
.feature-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

/* Icon circle with gradient */
.feature-cards .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0dcaf0 0%, #0abde3 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 6px 15px rgba(13, 202, 240, 0.4);
  transition: transform 0.3s ease;
}

/* Icon gentle pulse on hover */
.feature-cards .card:hover .icon {
  transform: scale(1.1);
}

/* Typography tweaks */
.feature-cards .card-title {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.feature-cards .card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Button */
.btn-cta {
  background: linear-gradient(135deg, #0dcaf0 0%, #0abde3 100%);
  color: #fff;
  font-size: 1.25rem; /* slightly bigger text */
  font-weight: 600;
  padding: 0.85rem 3rem;
  border-radius: 50px; /* pill shape */
  border: none;
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta i {
  font-size: 1.3rem;
}

/* Hover / focus effect */
.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13, 202, 240, 0.55);
  text-decoration: none;
  color: #fff;
}
/* ===============================
   RemovalService Page End
=============================== */
/* ===============================
   CargoDelivery Page Start
=============================== */
/* Section background to separate from rest of page */
.feature-cards {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f7fd 100%);
  border-radius: 1rem;
}

/* Card styling */
.feature-cards .card {
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

/* Hover lift & glow */
.feature-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

/* Icon circle with gradient */
.feature-cards .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0dcaf0 0%, #0abde3 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 6px 15px rgba(13, 202, 240, 0.4);
  transition: transform 0.3s ease;
}

/* Icon gentle pulse on hover */
.feature-cards .card:hover .icon {
  transform: scale(1.1);
}

/* Typography tweaks */
.feature-cards .card-title {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.feature-cards .card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Button */
.btn-cta {
  background: linear-gradient(135deg, #0dcaf0 0%, #0abde3 100%);
  color: #fff;
  font-size: 1.25rem; /* slightly bigger text */
  font-weight: 600;
  padding: 0.85rem 3rem;
  border-radius: 50px; /* pill shape */
  border: none;
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta i {
  font-size: 1.3rem;
}

/* Hover / focus effect */
.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13, 202, 240, 0.55);
  text-decoration: none;
  color: #fff;
}
/* ===============================
   CargoDelivery Page End
=============================== */
/* ===============================
   CareerOpportunities Page Start
=============================== */

/* ===============================
   CareerOpportunities Page End
=============================== */
/* ===============================
   Contact Page Start
=============================== */

/* Section background: subtle gradient with pattern */
.contact {
  background: radial-gradient(circle at top left, #f0faff 0%, #e8f4fb 100%);
}
.contact-section {
  background: radial-gradient(circle at top left, #f0faff 0%, #e8f4fb 100%);
  position: relative;
}

/* Decorative badge under heading */
.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #0dcaf0;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Form container */
.form-wrapper {
  max-width: 800px; /* ✅ stays capped at 800px */
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
}

/* Floating labels styling */
.form-floating > .form-control {
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
}
.form-floating > label {
  color: #6c757d;
}

/* CTA button with lively gradient */
.btn-cta {
  background: linear-gradient(135deg, #0dcaf0 0%, #0abde3 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.4);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(13, 202, 240, 0.55);
  color: #fff;
}

.contact-card {
  max-width: 320px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.contact-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-card p {
  color: #6c757d;
  margin: 0;
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0dcaf0, #0abde3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 15px rgba(13, 202, 240, 0.4);
  transition: transform 0.3s ease;
}
.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .btn-cta {
    padding: 1rem 1.5rem; /* larger on bigger screens */
    font-size: 1rem;
  }
}
/* ===============================
   Contact Page End
=============================== */
