/* ==========================================================================
   1. Google Font Import - Roboto
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

/* ==========================================================================
   2. Custom Properties (Variables)
   ========================================================================== */

:root {
  --sfu-dark-blue: rgb(55, 81, 126);
  --sfu-light-blue: rgb(71, 178, 228);

  /* Other useful variables you might want */
  --text-color: #333;
  --background-color: #ffffff;
  --primary-font: "Roboto", sans-serif;
  --header-font: "Roboto", sans-serif;
}

/* ==========================================================================
   3. CSS Reset - A modern reset for consistency
   ========================================================================== */

/*
  1. Use a more intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin.
*/
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

section {
	overflow:hidden;
}

/*
  3. Allow percentage-based heights in the application.
*/
html,
body {
  height: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/*
  4. Set core body defaults.
*/
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/*
  5. Make images easier to work with.
*/
img,
picture {
  max-width: 100%;
  display: block;
}

/*
  6. Inherit fonts for inputs and buttons.
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Remove all animations and transitions for people that prefer not to see them
*/
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   4. Base Styles
   ========================================================================== */

body {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--text-color);
  background-color: var(--background-color);
}

a {
  color: var(--sfu-light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sfu-dark-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header-font);
  font-weight: 700;
  color: var(--sfu-dark-blue);
}

.gray-panel {
  background-color: #f5faff;
}

.sfu-overlay {
  border-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.75),
      rgba(55, 81, 126, 0.75)
    )
    fill 1;
}


/*Whatsapp Icon*/
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  z-index: 999999999999;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2px, 2px);
  }
  50% {
    transform: translate(0, 4px);
  }
  75% {
    transform: translate(-2px, -2px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.whatsapp-icon img {
  animation: shake-animation 3s infinite;
}

.whatsapp-icon img:hover {
  animation: none;
  scale: 1.1;
  transition: all 500ms ease;
}

@keyframes shake-animation {
  0%,
  95% {
    transform: translate(0, 0);
  }
  96%,
  98% {
    transform: rotate(-20deg);
  }
  97%,
  99% {
    transform: rotate(20deg);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Tooltip styling */
.tooltip {
  /* visibility: hidden; */
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  bottom: 60px; /* Adjust according to icon size */
  right: -15px; /* Adjust to center the tooltip */
  white-space: nowrap;
  z-index: 1001;
  /* opacity: 0; */
  transition: opacity 0.3s;
  font-size: 11px;
}

/* Show tooltip on hover */
.whatsapp-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, white, var(--sfu-dark-blue));
  padding: 0.8rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 9999;
  /* Allow dropdown overflow */
  overflow: visible;
}

.container-fluid {
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  /* Remove overflow hidden to allow dropdowns to show */
}

/* Logo styling */
.desktop-logo img {
  width: 100px;
  max-width: 100%;
}

.custom-logo-link img {
  width: 130px;
  max-width: 100%;
  height: auto;
}

/* ===== DESKTOP STYLES (768px and above) ===== */
@media (min-width: 768px) {
  /* Desktop Navigation */
  .navbar-nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
  }

  .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
  }

  .navbar-nav .nav-link:hover {
    color: #f8f9fa !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .dropdown-menu .nav-link {
    color: var(--sfu-light-blue) !important;
  }

  .dropdown-menu .nav-link:hover {
    color: var(--sfu-dark-blue) !important;
  }

  /* Desktop Dropdown Styles */
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: white;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 9999; /* Increased z-index to ensure visibility */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  /* Show dropdown on hover */
  .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  /* Multi-level dropdown for desktop */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    z-index: 10000; /* Even higher z-index for nested dropdowns */
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-submenu > .dropdown-item::after {
    content: "▶";
    float: right;
    margin-left: 10px;
    font-size: 0.8em;
    color: #6c757d;
  }

  .dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: background-color 0.2s ease;
    color: #333;
  }

  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #00008b;
  }

  /* Hide mobile elements on desktop */
  .mobile-sidebar,
  .mobile-overlay,
  .navbar-toggler {
    display: none !important;
  }
}

/* ===== MOBILE STYLES (Below 768px) ===== */
@media (max-width: 767.98px) {
  /* Hide desktop navbar items */
  .navbar-nav {
    display: none !important;
  }

  .desktop-logo img {
    width: 80px;
    max-width: 100%;
  }

  /* Mobile toggler button */
  .navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0.75rem;
    background: transparent;
    transition: all 0.3s ease;
  }

  .navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
  }

  /* Mobile Overlay */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Slide-out Sidebar */
  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(
      to bottom,
      var(--sfu-dark-blue),
      var(--sfu-light-blue)
    );
    z-index: 99999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 1rem 0;
  }

  .mobile-sidebar.show {
    left: 0;
  }

  /* Mobile sidebar header */
  .mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
  }

  .mobile-sidebar-header img {
    max-height: 40px;
  }

  .mobile-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
  }

  /* Mobile navigation list */
  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
    position: relative;
  }

  .mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
  }

  /* Mobile submenu styles */
  .mobile-nav-item.has-submenu > .mobile-nav-link::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .mobile-nav-item.has-submenu.open > .mobile-nav-link::after {
    transform: translateY(-50%) rotate(45deg);
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    transition: max-height 0.3s ease;
  }

  .mobile-submenu.open {
    max-height: 500px;
  }

  .mobile-submenu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-submenu-link {
    display: block;
    padding: 0.75rem 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
  }

  .mobile-submenu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
  }

  /* Nested submenu for mobile */
  .mobile-nested-submenu {
    background-color: rgba(255, 255, 255, 0.05);
  }

  /* Add this to your main.css file */

  .mobile-nested-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    transition: max-height 0.3s ease-out;
  }

  .mobile-nested-submenu.open {
    max-height: 500px; /* Adjust as needed */
  }

  .mobile-nested-submenu .mobile-submenu-link {
    padding-left: 3.5rem;
    font-size: 0.85rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.no-scroll {
  overflow: hidden;
}

/* Ensure no horizontal overflow anywhere */
.row {
  margin-left: 0;
  margin-right: 0;
  /* Allow dropdowns to overflow */
  overflow: visible;
}

.col-3,
.col-9 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  /* Allow dropdowns to overflow */
  overflow: visible;
}

/* Active menu item styling */
.navbar-nav .nav-link.active,
.mobile-nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  /*padding-top: 56.25%;  Maintain 16:9 aspect ratio */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  height: 100vh;
}

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.banner-content {
  position: absolute;
  z-index: 3;
  color: white;
  padding: 20px;
  /* max-width: 90%; */
  text-align: center;
}

.banner-content h1 {
  margin-top: 0;
  font-size: 3em;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(71, 178, 228, 0.75);
}

.banner-content h2 {
  color: var(--sfu-light-blue);
  margin-top: 5px;
  margin-bottom: 25px;
  font-size: 2em;
}

.banner-content p {
  margin-bottom: 25px;
  font-size: 1.2em;
  line-height: 1.5;
  max-width: 60ch;
  display: inline-block;
}

.contact-numbers strong {
  display: block;
  font-size: 2.4em;
}

.contact-numbers strong:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 1.8em;
  }
  .banner-content p {
    font-size: 1em;
  }
  .contact-numbers strong {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 1.5em;
  }
  .banner-content p {
    font-size: 0.9em;
  }
  .contact-numbers strong {
    font-size: 1.2em;
  }
}

/* Services */
.service-card {
  color: var(--sfu-dark-blue); /* Dark blue text color */
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
  /* Custom rounded corners: top-right and bottom-left */
  border-top-right-radius: 2rem; /* Noticeably rounded */
  border-bottom-left-radius: 2rem; /* Noticeably rounded */
  border-top-left-radius: 0.5rem; /* Slightly rounded for consistency */
  border-bottom-right-radius: 0.5rem; /* Slightly rounded for consistency */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); /* Subtle shadow */
  height: 100%; /* Ensure cards have equal height within the row */
  border: 1px solid var(--sfu-light-blue);
}

.service-card:hover {
  transform: translateY(-5px); /* Lift card on hover */
  box-shadow: 2px 2px 4px rgba(71, 178, 228, 0.6); /* More pronounced shadow */
  border-color: var(--sfu-dark-blue);
}

.service-icon {
  font-size: 3rem; /* Large icon size */
  color: var(--sfu-dark-blue); /* Dark blue icon color */
  margin-bottom: 1rem;
}

.service-heading {
  color: var(--sfu-dark-blue); /* Dark blue heading color */
  font-weight: 700; /* Bold heading */
}

.service-card p {
  color: #666;
}

.service-link {
  color: var(--sfu-light-blue); /* Dark blue link color */
  text-decoration: none; /* Remove underline */
  font-weight: 600; /* Semi-bold link text */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

.service-link:hover {
  color: var(
    --sfu-dark-blue
  ); /* A slightly different blue on hover for interactivity */
  text-decoration: underline; /* Underline on hover */
}

.section-title {
  color: var(--sfu-dark-blue); /* Dark blue for section title */
  font-weight: 800;
}

/* About */
.about-btn {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 25px;
  display: inline-block; /* Ensures padding and width work as expected for an anchor tag */

  /* Create a background that includes both gradient directions */
  background: linear-gradient(
    to right,
    var(--sfu-dark-blue),
    var(--sfu-light-blue),
    var(--sfu-dark-blue)
  );
  background-size: 200% 100%; /* Make the background twice as wide */
  background-position: 100% 0; /* Start with the "to right" gradient visible (right half of the 200%) */

  transition: background-position 0.3s ease-in-out; /* Transition background-position */
}

.about-btn:hover {
  color: white;
  background-position: 0 0; /* On hover, shift the background to the left, revealing the "to left" gradient */
}

/* Benefit */
.benefit-text {
  font-size: 4em;
  color: var(--sfu-dark-blue);
  font-weight: 900;
  line-height: 1em;
  text-shadow: 2px 2px 4px rgba(71, 178, 228, 0.75);
  margin-bottom: 10px;
}
.benefit h2 {
  color: var(--sfu-light-blue);
  margin-bottom: 10px;
}

/* Testimonials */
.testi {
  /* Bootstrap variables */
  --bs-body-color: #212529;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-rating-rgb: 255, 215, 0;
  --ezy-control-color: rgb(255, 215, 0);

  background-color: var(--bs-body-bg);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .testi {
    padding: 100px 0;
  }
}

/* Dark Block Style */
.dark .testi,
.testi.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);
}

.testi-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .testi-heading {
    font-size: 45px;
    line-height: 45px;
  }
}

.testi-sub-heading {
  font-size: 16px;
  line-height: 22px;
  color: var(--bs-body-color);
}

.testi-item:hover {
  transform: translateY(-5px);
}

.testi-item img {
  border-radius: 15px;
  padding: 5px;
}

.testi-content * {
  color: var(--bs-body-color);
}

.testi-social-links a {
  display: inline-block;
  opacity: 0.6;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out,
    color 0.25s ease-in-out;
}

.testi-social-links a:hover {
  transform: translateY(5px);
  color: var(--bs-body-color);
  opacity: 1;
}

.testi-rating [class*="fa-"]:not(.active),
.testi-rating [class*="fa-"]:not(.active) * {
  color: rgba(var(--ezy-rating-rgb), 0.2);
}

.testi-rating [class*="fa-"].active,
.testi-rating [class*="fa-"].active * {
  color: rgba(var(--ezy-rating-rgb), 1);
}

.testi-rating .bi {
  color: yellow;
}

.testi .carousel {
  display: flex;
  flex-direction: column;
}

.testi-dot-control,
.testi .carousel-indicators {
  position: relative;
  margin-top: 30px;
  order: 2;
}

.testi-dot-control span,
.testi .carousel-indicators button {
  background-color: transparent;
  width: 13px;
  height: 13px;
  border: 1px solid var(--bs-body-color);
  border-radius: 50%;
  display: inline-flex;
  margin: 4px;
  transition: all 0.3s ease-in-out;
  transform: scale(0.7);
  cursor: pointer;
  opacity: 1;
}

.testi-dot-control span.active,
.testi .carousel-indicators button.active {
  background-color: var(--bs-body-color);
  transform: scale(1);
}

/* Clients */
.clients {
  /* Bootstrap variables */
  --bs-body-color: #28303b;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;

  background-color: var(--bs-body-bg);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .clients {
    padding: 100px 0;
	
  }
}

.clients-heading {
  font-weight: bold;
  font-size: 25px;
}

@media (min-width: 768px) {
  .clients-heading {
    font-size: 45px;
    line-height: 45px;
  }
}

.clients-sub-heading {
  font-size: 18px;
  line-height: 25px;
  color: var(--bs-body-color);
  opacity: 0.7;
}

.clients-img {
  max-height: 50px;
}

/* Certified */
.certified h3 {
  color: var(--sfu-light-blue);
  margin-bottom: 10px;
}

/* Advantage */
.advantage .bi {
  font-size: 3.5rem;
  color: var(--sfu-light-blue);
}

/* Gallery */
.gal .certi {
  color: var(--sfu-light-blue);
  font-style: italic;
  text-decoration: underline;
}

.gal ul li {
  margin-top: 10px;
}
.gal ul li span {
  color: var(--sfu-light-blue);
}

/* Gallery Slider */
.gallery {
  width: 100%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
}

.gal-swiper {
  width: 100%;
  height: 500px;
  position: relative;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.swiper-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

.swiper-slide h4 {
  padding: 20px;
  font-size: 1.2em;
  color: #333;
  text-align: center;
  background: linear-gradient(
    45deg,
    var(--sfu-light-blue),
    var(--sfu-dark-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin: 0;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Custom Arrow Icons */
.swiper-button-next::after {
  content: "→" !important;
  color: #667eea !important;
  font-size: 20px !important;
  font-weight: bold !important;
  font-family: Arial, sans-serif !important;
}

.swiper-button-prev::after {
  content: "←" !important;
  color: #667eea !important;
  font-size: 20px !important;
  font-weight: bold !important;
  font-family: Arial, sans-serif !important;
}

/* Pagination */
.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: #667eea !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.5) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
	.mini-banner-heading {
		font-size: 3em;
	}
  .gallery {
    margin: 10px;
    border-radius: 15px;
  }

  .gal-swiper {
    height: 450px;
  }

  .swiper-slide {
    margin: 10px;
  }

  .swiper-slide img {
    height: 300px;
  }

  .swiper-slide h4 {
    font-size: 1.1em;
    padding: 15px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px !important;
  }
}

@media (max-width: 480px) {
  .gal-swiper {
    height: 400px;
  }

  .swiper-slide img {
    height: 250px;
  }

  .swiper-slide h4 {
    font-size: 1em;
    padding: 12px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    margin-top: -17px !important;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
  }
}

/* Loading Animation */
.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: loading 2s infinite;
  z-index: 1;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Touch Feedback */
.swiper-slide {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Custom scrollbar for touch devices */
.gal-swiper::-webkit-scrollbar {
  display: none;
}

/* More Services */
.more-services .cta-text {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2.8em;
  line-height: 1em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(71, 178, 228, 0.75);
}

.indi-service {
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  background: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.indi-service:hover {
  transform: translateY(-0.5rem);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  transition: all 0.3s ease;
}

.indi-service .bi {
  /*color: var(--primary);*/
  background: linear-gradient(
    to right,
    var(--sfu-dark-blue),
    var(--sfu-light-blue)
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.indi-service h3 {
  margin-bottom: 2rem;
  min-height: 3rem;
  overflow: hidden;
  pointer-events: none;
  font-size: 0.9rem;
  line-height: 1.4rem;
  margin: 0;
}

/* Footer */
.footer {
  /* Bootstrap variables */
  --bs-body-color: #28303b;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  padding: 60px 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 80px 0;
  }
}

.dark .footer,
.footer.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
}

.footer-nav .nav-link {
  color: var(--bs-body-color);
}

.footer-nav .nav-link:hover {
  color: var(--bs-body-color);
  opacity: 0.8;
}

.footer h2 {
  color: white;
}

.footer h5 {
  color: white;
}

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

.footer-quick-links li a {
  color: var(--bs-body-color);
  opacity: 0.7;
  text-decoration: none;
}

.footer-quick-links li a:hover {
  color: var(--bs-body-color);
  opacity: 1;
}

/* Page Packages Start */
.mini-banner {
  width: 100%;
  height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  overflow:hidden;
}

.mini-banner {
  background-image: url(../img/packages-banner-img.jpg);
}

.mini-banner-content h2 {
  color: white;
}

.mini-banner-heading {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 4em;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(71, 178, 228, 0.75);
  line-height: normal;
}

.mini-banner p {
  max-width: 60ch;
  display: inline-block;
}

.packages h3 {
  color: var(--sfu-light-blue);
}

.pkg-select select {
  border-radius: 25px;
  width: 100%;
  padding: 10px 15px;
}



@media (max-width: 768px) {
	.mini-banner-heading {
		font-size: 3em;
	}

/* Using .pkg-card to scope card-specific styles */
.pkg-card {
  border-radius: 1rem; /* Rounded corners for the card */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  overflow: hidden; /* Ensures rounded corners apply to content */
  padding: 10px 20px;
  border-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
/* Custom styles for elements within the card, using specificity */
.pkg-card ul {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  margin: 0;
}
.pkg-card li {
  display: flex; /* Use flexbox for icon and text alignment */
  align-items: center; /* Vertically align items */
  padding: 0.75rem 0; /* Padding for each list item */
  border-bottom: 1px solid #e5e7eb; /* Light border between items */
}
.pkg-card li:last-child {
  border-bottom: none; /* No border for the last item */
}
.pkg-card .icon {
  /* Scoping the icon class */
  font-size: 1.25rem; /* Larger icon size */
  margin-right: 0.75rem; /* Space between icon and text */
}
/* These colors are Tailwind utilities and are globally defined */
.text-green-500 {
  color: #22c55e; /* Tailwind green for tick */
}
.text-red-500 {
  color: #ef4444; /* Tailwind red for cross */
}

/* Blog Page */
.entry-meta a {
  color: white !important;
}

/* Contact Page */
/* Services Page */
/* 404 */
.service-detail-section .btn,
.soft-services-main .btn,
.contact-form-card .btn,
.page-404-wrap .btn {
  background: var(--sfu-light-blue);
  border: none !important;
  color: #fff;
}

.service-detail-section .btn:hover,
.soft-services-main .btn:hover,
.contact-form-card .btn:hover,
.page-404-wrap .btn:hover {
  background: var(--sfu-dark-blue);
  border: none !important;
  color: #fff;
  transition: all 0.3s ease;
}


/* Scroll to Top Button Styling */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px; /* Distance from bottom */
    left: 20px;  /* Distance from right */
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it's above other content */
    width: 30px;
    height: 30px;
    font-size: 1rem; /* Icon size */
    background-color: var(--sfu-dark-blue); /* Using your theme's dark blue variable */
    border-color: var(--sfu-dark-blue);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0; /* Initial hidden state for fade effect */
    visibility: hidden; /* Ensure it's not interactive when hidden */
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollToTopBtn:hover {
    background-color: var(--sfu-light-blue); /* Lighter blue on hover */
    border-color: var(--sfu-light-blue);
    transform: translateY(-2px); /* Slight lift on hover */
}



	
	
	
	
	
	#service-renovation-extensions-villa-apartment,
	#service-tiling-work,
	#service-villa-apartment-cleaning,
	#service-move-in-move-out-maintenance,
	#service-pest-control-sanitization,
	{
		display: none !important;
	}