@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Ubuntu", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --archivo: font-family: "Archivo", sans-serif;
}

:root {
  --manrope: font-family: "Manrope", sans-serif;
}

/* ARCHIVO EXPANDED */
/* Thin (100) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('https://aquapropc.com/aquapro-lp/assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Light (300) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('https://aquapropc.com/aquapro-lp/assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular (400) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('https://aquapropc.com/aquapro-lp/assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('https://aquapropc.com/aquapro-lp/assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* SemiBold (600) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('https://aquapropc.com/aquapro-lp/assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('https://aquapropc.com/aquapro-lp/assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Black (900) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('https://aquapropc.com/aquapro-lp/assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --archivo-expanded: 'Archivo Expanded', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #363f40;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1f2f31;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #9AACC2;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #363f40;
  /* The default color of the main navmenu links */
  --nav-hover-color: #099aa7;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #363f40;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #099aa7;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f7f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Montserrat";
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Fonts: Archivo */
.archivo-100 {
  font-family: var(--archivo);
  font-weight: 100;
}

.archivo-200 {
  font-family: var(--archivo);
  font-weight: 200;
}

.archivo-300 {
  font-family: var(--archivo);
  font-weight: 300;
}

.archivo-500 {
  font-family: var(--archivo);
  font-weight: 500;
}

.archivo-600 {
  font-family: var(--archivo);
  font-weight: 600;
}

.archivo-700 {
  font-family: var(--archivo);
  font-weight: 700;
}

.archivo-800 {
  font-family: var(--archivo);
  font-weight: 800;
}

.archivo-900 {
  font-family: var(--archivo);
  font-weight: 900;
}

/* Fonts: Archivo Expanded */
.archivo-expanded-100 {
  font-family: var(--archivo-expanded);
  font-weight: 100;
}

.archivo-expanded-300 {
  font-family: var(--archivo-expanded);
  font-weight: 300;
}

.archivo-expanded-400 {
  font-family: var(--archivo-expanded);
  font-weight: 400;
}

.archivo-expanded-500 {
  font-family: var(--archivo-expanded);
  font-weight: 500;
}

.archivo-expanded-600 {
  font-family: var(--archivo-expanded);
  font-weight: 600;
}

.archivo-expanded-700 {
  font-family: var(--archivo-expanded);
  font-weight: 700;
}

.archivo-expanded-900 {
  font-family: var(--archivo-expanded);
  font-weight: 900;
}

/* Fonts: Manrope */
.manrope-100 {
  font-family: var(--manrope);
  font-weight: 100;
}

.manrope-200 {
  font-family: var(--manrope);
  font-weight: 200;
}

.manrope-300 {
  font-family: var(--manrope);
  font-weight: 300;
}

.manrope-400 {
  font-family: var(--manrope);
  font-weight: 400;
}

.manrope-500 {
  font-family: var(--manrope);
  font-weight: 500;
}

.manrope-600 {
  font-family: var(--manrope);
  font-weight: 600;
}

.manrope-700 {
  font-family: var(--manrope);
  font-weight: 700;
}

.manrope-800 {
  font-family: var(--manrope);
  font-weight: 800;
}

.manrope-900 {
  font-family: var(--manrope);
  font-weight: 900;
}

/* Fonts: Monntserrat */
.montserrat-100 {
  font-family: var(--manrope);
  font-weight: 100;
}

.montserrat-200 {
  font-family: var(--manrope);
  font-weight: 200;
}

.montserrat-300 {
  font-family: var(--manrope);
  font-weight: 300;
}

.montserrat-400 {
  font-family: var(--manrope);
  font-weight: 400;
}

.montserrat-500 {
  font-family: var(--manrope);
  font-weight: 500;
}

.montserrat-600 {
  font-family: var(--manrope);
  font-weight: 600;
}

.montserrat-700 {
  font-family: var(--manrope);
  font-weight: 700;
}

.montserrat-800 {
  font-family: var(--manrope);
  font-weight: 800;
}

.montserrat-900 {
  font-family: var(--manrope);
  font-weight: 900;
}

/*--------------------------------------------------------------
# PHP Email Form Messages
--------------------------------------------------------------*/
.contact-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Register Custom Icons
--------------------------------------------------------------*/
.checkmark {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('../../assets/img/custom-icons/check-mark.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.water-tap {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('../../assets/img/custom-icons/water-tap.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.hand-holding-wrench {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('../../assets/img/custom-icons/hand-holding-wrench.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.chat {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('../../assets/img/custom-icons/chat.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* =========================================
   YOUR EXISTING HEADER STYLES - KEPT AS IS
   ========================================= */

/* Base Header Styles */
.header {
  padding: 15px 1%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: -0.5%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header h3 {
  color: #333333;
}

.header .container-fluid {

  background: linear-gradient(135deg, #ffffff 0%, #feffff 100%);
  border-radius: 10px;
  box-shadow: 0 11px 13.3px rgba(0, 0, 0, 0.25);
  margin-top: 1%;
  padding: 15px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  position: relative;
}

/* Flex wrapper */
.header .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


/* Logo Styles */
.logo img {
  height: 80px;
  width: auto;
  transition: height 0.3s ease;
}

/* CENTER LOGO ON DESKTOP - PROPER WAY */
@media (min-width: 768px) {

  /* Make the parent container use grid or flex with equal columns */
  .header .container-fluid .d-flex {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    /* Three columns: equal sides, auto center */
    align-items: center;
  }

  /* Left section - Location badge */
  .header .badge.location {
    justify-self: start;
  }

  /* Center section - Logo */
  .header .d-none.d-md-flex {
    justify-self: center;
  }

  /* Right section - CTA */
  .header .header-cta-btn {
    justify-self: end;
  }

  /* Logo Styles */
  .logo img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
    /* NO MARGIN NEEDED */
  }
}

/* Location Badge */
.badge.location {
  background: rgb(41, 68, 140);
  color: #FFF;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 20px;
  /* border: 1px solid #e0e0e0; */
  white-space: nowrap;
}

/* Promotion Badge */
.badge.promotion {
  background: #29448c;
  color: #ffffff;
  padding: 5px 12px;
  font-size: 18px;
  /* border-radius: 15px; */
  display: inline-block;
  /* animation: pulse 2s infinite; */
  /* UPDATED: Added white-space to prevent text breaking */
  white-space: nowrap;
}

/* Phone Number */
.phone-number {
  font-size: 25px;
  font-weight: 700;
  margin: 5px 0 0 0;
  /* ADDED: Prevent phone number from breaking */
  white-space: nowrap;
  line-height: 1.2;
  color: #29448c;
}

/* =========================================
   NEW MOBILE RESPONSIVE STYLES - ADDED
   ========================================= */

/* Call to Action Button - ADDED */
.header-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none !important;
}

/* Mobile Styles - Main Breakpoint */
@media (max-width: 767px) {

  /* Hide location badge on mobile - ADDED */
  .badge.location {
    display: none !important;
  }

  /* Adjust header padding for mobile - MODIFIED */
  .header {
    padding: 6px 0;
  }

  /* Container padding adjustment - ADDED */
  .header .container-fluid {
    padding: 10px 10px;
  }

  /* Force single row layout on mobile - ADDED */
  .header .d-flex {
    flex-wrap: nowrap !important;
  }

  /* Logo section adjustment for mobile - ADDED */
  .header .col-md-4:nth-child(2) {
    flex: 0 0 auto;
    width: auto;
    display: flex !important;
    justify-content: flex !important;
    padding: 0;
  }

  /* Hide center logo, show left logo on mobile - ADDED */
  .header .col-md-4:nth-child(2) {
    display: none !important;
  }

  /* Show logo on left for mobile - ADDED */
  .header .col-md-4:first-child {
    flex: 0 0 auto;
    width: auto;
    display: flex !important;
    align-items: center;
  }

  /* CTA section right aligned - ADDED */
  .header .col-md-4:last-child {
    flex: 0 0 auto;
    width: auto;
    display: flex !important;
    justify-content: flex-end !important;
    padding: 0;
  }

  /* Adjust logo size for mobile - MODIFIED */
  .logo img {
    height: 40px;
  }

  /* Promotion badge mobile sizing - MODIFIED */
  .badge.promotion {
    font-size: 15px;
    padding: 3px 8px;
    margin-bottom: 2px;
    /* ADDED: Change to orange background like in your image */

    background-color: #29448c;
    color: #ffffff;
    font-family: 'Montserrat';
  }

  /* Phone number mobile sizing - MODIFIED */
  .phone-number {
    font-size: 28px;
    font-weight: 800;
    margin: 2px 0 0 0;
    font-family: 'Montserrat';
  }
}



/* iPhone 14/15 Pro and similar (390px - 393px) - ADDED */
@media (max-width: 393px) {
  .header {
    padding: 7px 0;
  }

  .header .container-fluid {
    padding: 10px 5px;
  }

  .logo img {
    height: 40px;
  }

  .badge.promotion {
    font-size: 13px;
    /* 🔴 INCREASE THIS for 390px devices "15% OFF" text */
    padding: 3px 7px;
  }

  .phone-number {
    font-size: 26px;
    /* 🔴 INCREASE THIS for 390px devices phone number */
  }
}


/* Small mobile devices (360px - 380px) - ADDED */
@media (max-width: 380px) {
  .header {
    padding: 6px 0;
  }

  .header .container-fluid {
    padding: 10px 10px;
  }

  .logo img {
    height: 37px;
  }

  .badge.promotion {
    font-size: 13px;
    /* 🔴 INCREASE THIS for 360px devices "15% OFF" text */
    padding: 3px 6px;
    background-color: #29448c;
  }

  .phone-number {
    font-size: 24px;
    /* 🔴 INCREASE THIS for 360px devices phone number */
  }
}


@media (max-width: 360px) {
  .header {
    padding: 6px 0;
  }

  .header .container-fluid {
    padding: 10px 10px;
  }

  .logo img {
    height: 35px;
  }

  .badge.promotion {
    font-size: 13px;
    /* 🔴 INCREASE THIS for 360px devices "15% OFF" text */
    padding: 2px 6px;
  }

  .phone-number {
    font-size: 24px;
    /* 🔴 INCREASE THIS for 360px devices phone number */
  }
}

/* Extra small devices (320px and below) - ADDED */
@media (max-width: 350px) {
  .header .container-fluid {
    padding: 10px 10px;
  }

  .logo img {
    height: 32px;
  }

  .badge.promotion {
    font-size: 13px;
    padding: 2px 5px;
  }

  .phone-number {
    font-size: 23px;
  }
}



/* Extra small devices (320px and below) - ADDED */
@media (max-width: 320px) {
  .header .container-fluid {
    padding: 8px 10px;
  }

  .logo img {
    height: 32px;
  }

  .badge.promotion {
    font-size: 8px;
    padding: 2px 5px;
  }

  .phone-number {
    font-size: 11px;
  }
}




/* Global Header on Scroll */
.scrolled .header {
  /* background: linear-gradient(135deg, #040E18 0%, #093C70 100%); */

  background-color: #29448c;
}

.scrolled .header .container-fluid {
  margin-top: 0;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
}

/* Global Header on Scroll */
.scrolled .header {
  /* background: linear-gradient(135deg, #040E18 0%, #093C70 100%); */

  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  ;
}

/* =========================================
   YOUR EXISTING ANIMATION - KEPT AS IS
   ========================================= */

/* Pulse animation for promotion badge */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Countdown Timer
--------------------------------------------------------------*/
.countdown-wrap {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.countdown {
  display: flex;
  gap: 1rem;
  align-items: center
}

.countdown .unit {
  min-width: 92px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 6px 18px rgba(43, 40, 107, 0.08);
  border: 1px solid rgba(43, 40, 107, 0.06);
}

.countdown .value {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.6px;
  color: var(--accent);
}

.countdown .label {
  font-size: 12px;
  color: #6b6b85;
  margin-top: 6px
}

.sep {
  font-weight: 700;
  color: #6b6b85;
  font-size: 20px
}

/* responsive tweaks */
@media (max-width:420px) {
  .countdown {
    gap: .5rem
  }

  .countdown .unit {
    min-width: 70px;
    padding: 8px 10px;
    border-radius: 8px
  }

  .countdown .value {
    font-size: 20px
  }

  .sep {
    font-size: 16px
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  border: 1px solid #98acc4;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #29448c, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 100px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 500;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title h4 {
  letter-spacing: 5px;
  font-size: 16px;
  margin-bottom: 10px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .section-title {
    padding-bottom: 20px;
  }

  .section-title h4 {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }

  .section-title h1 {
    margin-top: -5%;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .section-title h2:before {
    width: 100px;
  }

  .section-title h2::after {
    width: 40px;
  }

  .section-title p {
    font-size: 14px;
    padding: 0 12px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #f1f8ff;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-carousel {
    position: absolute;
    top: 9%;
    left: 0;
    width: 100vw;
    z-index: 5;
    padding: 0 10px;
  }

  .hero-carousel .item{
    box-sizing: border-box;

    border-radius: 14px;
    overflow: hidden;
    line-height: 0;  
  }

  .owl-theme .owl-dots{ margin-top: 8px; }

  .hero-carousel .owl-stage-outer{
    overflow: visible;       /* let the 3px border show */
    padding-bottom: 6px;     /* safety buffer for border/shadow */
  }

  .hero-carousel .owl-item{ padding: 0 !important; }

  .hero-carousel .item img{
     display: block;
    width: 100%;
    height: auto;             /* ← show the whole image, no cropping */
    object-fit: contain;
  }

  .hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 15px;
  }

  .hero-content {
    margin-top: 200px !important;
    text-align: center;
  }

  .contact-form {
    margin-top: 20px;
  }
}

.hero .hero-background {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  background:
    url("../../assets/img/hero-bg.png") no-repeat center center/cover,
    linear-gradient(135deg, #ffffff 0%, #29448c 100%);
  z-index: 0;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
      transparent 50%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero .hero-content {
  margin-top: 5rem;
  margin-bottom: 1.5rem;
  z-index: 5;
}

.hero .hero-content .badge {
  padding: 10px 24px;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.10);
}

/* Subtitle */
.hero .hero-content h4 {
  letter-spacing: 12.8px;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .hero {
    padding: 20px 15px 15px;
  }

  .hero .hero-content h4 {
    font-size: 16px;
    letter-spacing: 4px;
  }
}

/* Main Heading */
.hero .hero-content h1 {
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -3.6px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

/* Horizontal line */
.hero .hero-content hr {
  margin: 1rem auto;
  width: 100px !important;
  background-color: #ffffff;
  height: 3px;
  border: none;
}

/* Promo text */
.hero .hero-content h5,
.hero .hero-content h6 {
  text-align: center;
}

.hero .hero-content h5 {
  font-size: 1.5rem;
}

.hero .hero-content h6 {
  font-size: 1.2rem;
  letter-spacing: 4px;
}

@media (max-width: 575px) {
  .hero .hero-content h5 {
    font-size: 1.2rem;
  }

  .hero .hero-content h6 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

/* CTA Buttons */
.hero .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-btns .cta-btn {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 16px 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .cta-btn:hover {
  background: #ffffff;
  color: #29448c;
}

.hero .hero-content .hero-btns .cta-btn .small-text {
  font-size: 16px;
  font-weight: 600;
}

.hero .hero-content .hero-btns .cta-btn .big-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .hero .hero-content .hero-btns .cta-btn {
    padding: 12px 20px;
    width: 100%;
    max-width: 320px;
  }

  .hero .hero-content .hero-btns .cta-btn .small-text {
    font-size: 14px;
  }

  .hero .hero-content .hero-btns .cta-btn .big-text {
    font-size: 26px;
  }
}

/* Contact Form */
form button.btn {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #29448c;
  gap: 12px;
  align-self: stretch;
}

form button.btn:hover {
  background-color: #80c0ec;
  color: #ffffff;
}

@media (max-width: 575px) {
  form .form-floating label {
    font-size: 14px;
  }

  form .form-control,
  form .form-select {
    font-size: 14px;
    padding: 12px 10px;
  }

  form button.btn {
    font-size: 16px;
    padding: 14px;
  }

  form p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Mobile Slider Section
--------------------------------------------------------------*/
@media (min-width: 768px) {
  .mobile-slider {
    display: none;
  }
}

/*--------------------------------------------------------------
# Limited-Time Offer Section
--------------------------------------------------------------*/
.limited-offer {
  width: 100%;
  position: relative;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .limited-offer:after {
    position: absolute;
    content: "";
    width: 30%;
    /* background-image: linear-gradient(180deg, color-mix(in srgb, #9AACC2, transparent 0%), color-mix(in srgb, #9AACC2, transparent 0%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%); */
    background-color: #041c36;
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

.limited-offer:before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, #ffffff, transparent 40%);
  inset: 0;
  z-index: 2;
}

.limited-offer .container,
.limited-offer .container-fluid {
  z-index: 3;
  position: relative;
}

.limited-offer h4 {
  font-size: 40px;
}

@media screen and (max-width: 767px) {
  .limited-offer {
    background-color: #ededed !important;
  }

  .limited-offer h4 {
    color: #021418 !important;
  }
}

.limited-offer .percent-off {
  font-size: 64px;
  color: #29448c;
}

/* Countdown Timer */
.count-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 100px;
  border: 3px dashed #29448c;
}

@media screen and (max-width: 767px) {
  .count-box {
    width: 100%;
    aspect-ratio: auto;
    min-width: 100px;
    border: 1px dashed #29448c;
  }
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.85;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply to countdown numbers */
#days,
#hours,
#minutes,
#seconds {
  color: #29448c !important;
  font-size: 38px;
  animation: pulse 1.5s infinite ease-in-out;
}

.countdown-timer a {
  background-color: #29448c !important;
  border: 1px solid #29448c !important;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
  padding: 40px 20px !important;
  background-color: #F2F8FF;
}

.why-choose-us h4 {
  letter-spacing: 13.8px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #29448c;
  border-color: #021418;
}

.why-choose-us h1{
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 60px;
  color: #29448c;
  letter-spacing: 0;
  line-height: 100%;
}


.why-choose-us p {
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 150%;
  color: #29448c;
  margin-bottom: 1.5rem;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
  margin: 40px 0 1.5rem 0;
  font-family: "Montserrat";
  font-size: 20px;
  line-height: 150%;

}

.why-choose-us ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0;        /* avoid overlap artifacts */
  line-height: 100%;
  
}

.why-choose-us ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background: url('../../assets/img/why-us/icon.svg') no-repeat center;
  background-size: contain;
}

/* Remove border on all states */
.why-choose-us .btn{
  border: none;
  font-family: "Montserrat"; 
  font-size: 18px; 
  line-height: 125%; 
  padding: 14px 32px; 
  background-color: #29448c; 
  font-weight: 600; 
  border-radius: 8px;                 /* or: border-color: transparent; */
  box-shadow: 0 3px 0 rgba(41,68,140,.15); /* subtle depth (optional) */
}

.why-choose-us .btn:hover{
  background-color: #80c0ec;
  box-shadow: 0 6px 14px rgba(41,68,140,.18);
}

.why-choose-us .btn:active{
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(41,68,140,.16);
}

/* Keep an accessible focus ring without using border */
.why-choose-us .btn:focus-visible{
  outline: 3px solid #cfe2f3;
  outline-offset: 2px;
}


/* -----------------------
   ✅ Responsiveness
----------------------- */

/* Medium screens (tablets) */
@media (max-width: 991px) {
  .why-choose-us h1 {
    font-size: 36px;
  }

  .why-choose-us p,
  .why-choose-us ul {
    font-size: 18px;
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .why-choose-us {
    text-align: center;

    padding: 40px 20px !important;
  }

  .why-choose-us h4 {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .why-choose-us h1 {
    font-size: 38px;
    letter-spacing: -1px;
    padding-bottom: 5px;
  }

  .why-choose-us p {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .why-choose-us ul {
    font-size: 20px;
    text-align: left;
    display: inline-block;
    margin-top: 20px;
  }

  .why-choose-us ul li {
    padding-left: 38px;
    margin-bottom: 8px;
  }

  /* Adjust the icon positioning for mobile */
  .why-choose-us ul li::before {
    top: 20%;
    /* Center vertically */
    transform: translateY(-50%);
  }

  .why-choose-us .btn {
    font-size: 18px;
    padding: 12px 24px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  .why-choose-us img {
    max-width: 100%;
    height: auto;
    /* margin-top: 2rem; */
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services h4 {
  letter-spacing: 13.8px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #29448c;
}

.services h1 {
  letter-spacing: 0;
  font-size: 48px;
  font-family: "Montserrat";
  line-height: 80%;
  /* color: #202124; */
  color: #29448c;
  font-weight: Bold;
}


.services h3 {
  letter-spacing: -1px;
  font-family: "Montserrat";
  line-height: 100%;
  color: #202124;
  font-weight: Bold;
  font-weight: 700;
}

.services p {
  letter-spacing: 0;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 150%;
  color: #29448c;
}

@media screen and (max-width: 767px) {
  .services h4 {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .services h1 {
    font-size: 32px;

    line-height: 80%;
    margin-top: 5px;
    margin-bottom: -2%;
  }

  .services p {
    font-size: 15px;
  }
}

.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 10px rgba(124, 124, 124, 0.1);
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: ease-in-out 0.3s;
}

.services .service-item:hover {
  background-image: linear-gradient(to right, #29448c, #29448c);
}

.services .service-item:hover a.btn {
  background-color: #ffffff;
  color: #29448c;
}

.services .service-item .service-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.services .service-item .service-content .icon {
  background-color: #29448c;
}

.services .service-item .service-content .icon svg {
  color: #29448c !important;
}

.services .service-item:hover .service-content h3,
.services .service-item:hover .service-content p {
  color: #ffffff;
}

.services .service-item:hover .service-content .icon {
  background-color: #ffffff;
}

.services .service-item:hover .service-content .icon svg path  {
  fill: #29448c !important;
}

.services .service-item .icon {
  flex-shrink: 0;
  /* background: #EDF7FC; */
  width: 70px;
  height: 70px;
  border-radius: 10px;
  /* rounded square look */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* prevents image overflow */
}

.services .service-item .icon img {
  max-width: 100%;
  /* adjust image size inside box */
  max-height: 100%;
  object-fit: contain;
}

.services .service-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.services .service-item p {
  margin: 5px 0 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

/* Second card */

.services .service-item-2 {
  background-color: #29448c;
  box-shadow: 0px 5px 10px rgba(124, 124, 124, 0.1);
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keeps button at bottom */
}

.services .service-item-2 .service-content-2 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  /* spacing between icon and text */
}

.services .service-item-2 .icon {
  flex-shrink: 0;
  /* background: #EDF7FC; */
  width: 70px;
  height: 70px;
  border-radius: 10px;
  /* rounded square look */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* prevents image overflow */
}

.services .service-item-2 .icon img {
  max-width: 100%;
  /* adjust image size inside box */
  max-height: 100%;
  object-fit: contain;
}

.services .service-item-2 h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #FFFF;
}

.services .service-item-2 p {
  margin: 5px 0 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #FFFF;
}

.services .service-item-2 .btn {
  background-color: #FFFF;
  color: #29448c;
  font-weight: 700;
}

.services .btn {
  background-color: #29448c;
  color: #FFFF;
  font-weight: 700;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item-2:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Advantages Section
--------------------------------------------------------------*/
.advantages {
  position: relative;
  /* background-image: url("../../assets/img/camera-inspection/hero-bg-before.webp"); */
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}

.advantages p {
  letter-spacing: 0;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 150%;
  color: #000000;
}

.advantages h4 {
  letter-spacing: 13.8px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #29448c;
  text-transform: uppercase;
}

.advantages h2 {
  /* letter-spacing: 13.8px; */
  font-size: 40px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #29448c;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.advantages .btn {
  font-family: "Montserrat";
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0;
  padding: 16px 40px;
  /* background-color: #16495F; */
  border: none;
  background-color: #29448c;
  font-weight: 600;
}

/* Remove border on all states */
.advantages .btn{
  border: none;                 /* or: border-color: transparent; */
  box-shadow: 0 3px 0 rgba(41,68,140,.15); /* subtle depth (optional) */
}

.advantages .btn:hover{
  background-color: #80c0ec;
  box-shadow: 0 6px 14px rgba(41,68,140,.18);
}

.advantages .btn:active{
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(41,68,140,.16);
}

/* Keep an accessible focus ring without using border */
.advantages .btn:focus-visible{
  outline: 3px solid #cfe2f3;
  outline-offset: 2px;
}


.advantages ul li i.checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Advantages Section - Mobile
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {

  .advantages h4,
  .advantages h2,
  .advantages p {
    text-align: center;
  }

  .advantages h4 {
    font-size: 16px;
    letter-spacing: 0;
    margin-top: -10%;
  }

  .advantages h2 {
    font-size: 30px !important;

    margin-top: -10%;
  }

  .advantages ul li p {
    text-align: start;
  }

  .advantages a {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .advantages h2 {
    font-size: 36px !important;
    line-height: 100%;
    margin-top: -10%;
    letter-spacing: -1px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta-section {
  position: relative;
  background-image: url("../../assets/img/section-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  background-image: url('/assets/img/logo-cta.webp');
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
}

@media (max-width: 767px) {
  .cta-section::before {
    display: none;
  }
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: -80px;
  background-image: url('/assets/img/mobile-logo-cta.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
}

@media (min-width: 768px) {
  .cta-section::after {
    display: none;
  }
} */

/* ---------------------------------------------------------------
# Gallery
--------------------------------------------------------------- */
.gallery {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 60px 0;
  /* add breathing room */
}

.gallery .hero-background {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  background:
    url("#") no-repeat center center/cover,
    linear-gradient(135deg, #80c0ec 0%, #002f75 100%);
  z-index: 0;
}

.gallery .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
      transparent 50%);
  z-index: 2;
}

.gallery .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.gallery .gallery-content {
  z-index: 5;
  margin-bottom: 2rem;
}

.gallery .gallery-content h4 {
  letter-spacing: 12.8px;
  font-size: 16px;
}

.gallery .gallery-content h2,
.gallery .gallery-content h1 {
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 48px;
  letter-spacing: -2px;
}

.gallery .gallery-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------
   Responsive Styles
--------------------------------*/
@media (max-width: 992px) {
  .gallery {
    padding: 50px 0;
  }

  .gallery .gallery-content h2,
  .gallery .gallery-content h1 {
    font-size: 2.5rem;
  }

  .gallery .gallery-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .gallery {
    padding: 40px 0;
  }


  /* .gallery .gallery-content h2,
  .gallery .gallery-content h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  } */

  .gallery .gallery-content h4 {
    font-size: clamp(19px, 6vw, 26px);
    letter-spacing: clamp(8px, 2vw, 13.8px);
    font-family: "Montserrat";
    line-height: 130%;
    color: #FFF;
    font-weight: 300;
    text-transform: uppercase;
  }

  .gallery .gallery-content h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .gallery .gallery-content h2 {
    font-size: 60px;
  }

  .gallery .gallery-content p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .gallery .row.g-4>div {
    flex: 0 0 100%;
    /* force images full width */
    max-width: 100%;
  }

  .gallery img {
    height: auto !important;
  }
}

@media (max-width: 576px) {
  gallery {
    padding: 10px;
  }

  .gallery .gallery-content h2 {

    font-size: 50px;
  }

  .gallery .gallery-content h1 {
    font-size: 1.75rem;
  }

  .gallery .gallery-content h4 {
    font-size: 16px;
    letter-spacing: 5px;
  }

  .gallery .gallery-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 20px;
}

.testimonials h4 {
  letter-spacing: 13.8px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #093C70;
}

.testimonials h2 {
  font-size: 72px !important;
}

.testimonials h1 {
  letter-spacing: -3.5px;
  font-size: 70px;
  font-family: "Montserrat";
  line-height: 100%;
  color: #202124;
  font-weight: Bold;
}

.testimonials h3 {
  letter-spacing: -1.6px;
  font-size: 18;
  font-family: "Montserrat";
  line-height: 100%;
  color: #202124;
  font-weight: Bold;
}

@media screen and (max-width: 767px) {
  .testimonials h4 {
    font-size: 16px;
    text-align: center;
    letter-spacing: 5px;
  }

  .testimonials h2 {
    font-size: 45px !important;
    text-align: center;
    letter-spacing: -1px;
  }
}

.testimonials .card .testimonial-text {
  max-height: 6em;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, black 70%, transparent 100%);
}

.testimonials .card .testimonial-text.expanded {
  max-height: none;
  mask-image: none;
}

.testimonials .card .read-more-btn {
  margin-top: -5% !important;
  color: #093C70 !important;
}

.testimonials .card .read-more-btn:hover {
  color: #0c6afa !important;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  position: relative;
  background-image: url("../../assets/img/footer/footer-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 60px 20px;
}

.contact-section form button.btn {
  background-color: #29448c ;
  border: none;
  padding: 16px;
  box-shadow: 0 3px 0 rgba(41,68,140,.15);
}

.contact-section form button.btn:hover{
  background-color: #80c0ec;
  box-shadow: 0 6px 14px rgba(41,68,140,.18);
}

.contact-section form button.btn:active{
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(41,68,140,.16);
}

/* Keep an accessible focus ring without using border */
.contact-section form button.btn:focus-visible{
  outline: 3px solid #cfe2f3;
  outline-offset: 2px;
}

.contact-section h2 {
  letter-spacing: -1.5px;
  font-size: 40px;
  /* fixed typo */
  font-family: "Montserrat", sans-serif;
  line-height: 110%;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-section h4 {
  letter-spacing: 2px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
  color: #fff;
  margin-bottom: 15px;
}

.contact-section p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
}

.contact-section .btn-number {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 110%;
  font-family: "Montserrat", sans-serif;
}

.contact-section .btn-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 125%;
  font-size: 14px;
}

@media (max-width: 992px) {
  .contact-section {
    padding: 50px 15px;
    text-align: center;
  }

  .contact-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .contact-section h4 {
    font-size: 18px;
  }

  .contact-section .btn-number {
    font-size: 26px;
  }

  .contact-section .hero-btns {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-section h2 {
    font-size: 26px;
    letter-spacing: -1px;
  }

  .contact-section h4 {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .contact-section p {
    font-size: 13px;
  }

  .contact-section .btn-number {
    font-size: 22px;
  }

  .contact-section form .form-floating label,
  .contact-section form input,
  .contact-section form select {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .contact-section .d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-section {
    padding: 30px 10px;
  }

  .contact-section h2 {
    font-size: 22px;
    line-height: 120%;
  }

  .contact-section h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contact-section .hero-btns .cta-btn {
    width: 100%;
  }

  .contact-section .btn-number {
    font-size: 28px;
  }

  .contact-section .btn-text {
    font-size: 13px;
  }

  .contact-section h4 {
    letter-spacing: 5px;
  }

  .contact-section form button.btn {
    font-size: 15px;
    padding: 14px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  min-height: 100vh;
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem !important;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

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

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

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Mail Error Section
--------------------------------------------------------------*/
.mail-error .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .mail-error .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

.mail-error .hero-btns .cta-btn {
  display: inline-block;
  border: 2px solid #29448c;
  border-radius: 12px;
  padding: 16px 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: #29448c;
  transition: all 0.3s ease;
}

.mail-error .hero-btns .cta-btn:hover {
  background: #ffffff !important;
  color: #29448c;
}

.mail-error .hero-btns .cta-btn .small-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.mail-error .hero-btns .cta-btn .big-text {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .mail-error .hero-btns .cta-btn {
    padding: 12px 20px;
    width: 100%;
    max-width: 320px;
  }

  .mail-error .hero-btns .hero-btns .cta-btn .small-text {
    font-size: 14px;
  }

  .mail-error .hero-btns .cta-btn .big-text {
    font-size: 28px;
  }
}