/* ======= Typography style ======= */
:root {
  --primary-blue: #0f1923;
  --secondary-blue: #153CAF;
  --text-gray: #67696c;
  --bg-color: #FAFAF7;
  --light-gray: #F5F4EE;
  --soft-white: #F9F9F9;
  --black: #252525;
  --white: #FFFFFF;
  --nb-steel: #3a4a5c;
  --nb-border: #e2e0dc;


  /* font */
  --font-body: "Poppins", sans-serif;
  --font-head: "Libre Baskerville", serif;


  --nb-banner-h: 40px;
  --nb-nav-h: 80px;
  --nb-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nb-sidebar-w: 350px;

}




/* ── Reset only inside our navbar scope ── */
.nb-banner *,
.nb-navbar *,
.nb-sidebar * {
  box-sizing: border-box;
}




html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;

}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  color: var(--text-gray);
  background: var(--white);
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}







p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-gray);
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 27px;
}

h5 {
  font-size: 21px;
}

h6 {
  font-size: 17px;
}



h1,
h2 {
  font-family: var(--font-head);
  color: var(--secondary-blue);
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 5px;
  margin: 0 0 15px 0;
}





h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.5em;
  margin: 0 0 15px 0;
}

img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

span,
a,
a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

b {
  font-weight: 300;
  color: var(--white);
}






/* list */

.list {
  position: relative;
  display: block;
}

.list li {
  position: relative;
  display: flex;
  align-items: center;
}

.list li+li {
  margin-top: 10px;
}

.list-icon {
  display: grid;
}

.list-icon span {
  font-size: 17px;
  color: var(--secondary-blue);
}

.list-text {
  margin-left: 15px;
}

.list-text p {
  font-size: 17px;
  margin: 0;
  color: #999;
}







/* breadcrumb */

.breadcrumb a {
  color: var(--secondary-blue);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item.active {
  color: var(--white);
}

/* bottom fade */

.bottom-fade {
  width: 100%;
  top: 0;
  height: 100%;
  float: left;
  position: absolute;

  z-index: 0;
  border-radius: 20px 20px 0 20px;
}

.why-us-bottom-fade {
  border-radius: 0px;
}

















/* ======= Preloader style ======= */

.preloader-bg,
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000000;
  /* Dark backdrop */
  z-index: 10000009;
}

#preloader {
  display: table;
  table-layout: fixed;
}

#preloader-status {
  display: table-cell;
  vertical-align: middle;
}



.loader {
  border: 6px solid #006eff34;
  border-top: 6px solid #006eff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

/* ======= Preloader style ======= */


























/* ======= Section style ======= */

.section-padding {
  padding: 80px 0;
}

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

}

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

}



.section-title {
  font-size: 40px;
  position: relative;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(30px, 5vw, 45px);
  color: var(--secondary-blue);
  position: relative;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
}



[data-overlay-dark] .section-title span,
.section-title span {
  color: var(--secondary-blue);
}

.section-title.white {
  color: var(--white);
}

.section-title.black {
  color: var(--white);
}

.section-title p {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-subtitle.white {
  color: var(--white);
}

@media screen and (max-width: 991px) {
  .section-title {
    font-size: 40px;
  }
}




















/* ════════════════════════════════
           TOP BANNER
        ════════════════════════════════ */
.nb-banner {
  background: rgb(6, 6, 65);
  height: var(--nb-banner-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: height 0.28s var(--nb-ease), opacity 0.28s var(--nb-ease);
  font-family: 'Poppins', sans-serif;
}

.nb-banner.nb-hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.nb-banner-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nb-banner-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nb-banner-left a,
.nb-banner-hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bg-color);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nb-banner-left a:hover {
  color: #fff;
}

.nb-banner-left i,
.nb-banner-hours i {
  color: var(--secondary-blue);
  font-size: 15px;
}

.nb-banner-div {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.nb-banner-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nb-banner-right a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--bg-color);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nb-banner-right i {
  color: var(--soft-white);
  font-size: 15px;
}

.nb-banner-right a:hover {
  color: #fff;
}

/* ════════════════════════════════
           TOP BANNER
        ════════════════════════════════ */




























/* ════════════════════════════════
           STICKY WRAPPER
  ════════════════════════════════ */
.nb-wrapper {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  height: 100px;
}



/* ════════════════════════════════
           MAIN NAVBAR
════════════════════════════════ */
.nb-navbar {
  background: var(--white);
  height: var(--nb-nav-h);
  display: flex;
  align-items: center;
  box-shadow: none;
  transition: height 0.28s var(--nb-ease), box-shadow 0.28s var(--nb-ease);
  font-family: 'Poppins', sans-serif;
  height: 100px;

}

.nb-navbar.nb-scrolled {
  height: 100px;
  box-shadow: 0 4px 24px rgba(15, 25, 35, 0.09);

  position: fixed;
  top: 0;
  width: 100%;
}

.nb-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 100%;
}

/* ── Logo ── */
.nb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 36px;
}

.nb-logo img {
  width: 80px;
  height: auto;
  display: block;
  transition: transform 0.25s var(--nb-ease);
}

.nb-logo:hover img {
  transform: scale(1.04);
}


/* ── Desktop links ── */
.nb-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  height: 100%;
}

.nb-links>li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nb-links>li>a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nb-steel);
  border-radius: 10px;
  text-decoration: none;
  transition: color 0.22s, background 0.22s;
  white-space: nowrap;
  position: relative;
}

/* underline indicator */
.nb-links>li>a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 13px;
  right: 13px;
  height: 2.5px;
  border-radius: 50px;
  background: var(--secondary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--nb-ease);
  border-radius: 1px;
}

.nb-links>li>a i {
  font-size: 13px;
  transition: transform 0.22s;
}

.nb-links>li>a:hover,
.nb-links>li>a.nb-active {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.05);
}

.nb-links>li>a:hover::after,
.nb-links>li>a.nb-active::after {
  transform: scaleX(1);
}

.nb-links>li:hover>a i {
  transform: rotate(-180deg);
}





.service-active {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.05);
}

.nb-links>li>a.service-active::after {
  transform: scaleX(1);
}












/* hover bridge */
.nb-links>li::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  z-index: 1;
}

/* ── Dropdown ── */
.nb-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 12px;
  padding: 20px 10px;
  min-width: 280px;
  box-shadow: 0 20px 50px rgba(15, 25, 35, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--nb-ease), transform 0.22s var(--nb-ease), visibility 0.22s;
  list-style: none;
  margin: 0;
  z-index: 500;
}



.nb-links>li:hover .nb-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nb-dropdown li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--nb-steel);
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
}

.nb-dropdown li a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nb-border);
  flex-shrink: 0;
  transition: background 0.18s;
}

.nb-dropdown li a:hover {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.05);
}

.nb-dropdown li a:hover::before {
  background: var(--secondary-blue);
}



/* Active */
.nb-dropdown li .nb-active {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.05);
}

.nb-dropdown li .nb-active::before {
  background: var(--secondary-blue);
}





/* ── Hamburger ── */
.nb-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 2px solid var(--secondary-blue);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  flex-shrink: 0;
  transition: border-color 0.22s, background 0.22s;
}


.nb-hamburger span {
  display: block;
  height: 3px;
  background: var(--secondary-blue);
  border-radius: 2px;
  transform-origin: center;
}

.nb-hamburger span:nth-child(2) {
  width: 75%;
}





/* ════════════════════════════════
           SIDEBAR DRAWER  (slides from LEFT)
        ════════════════════════════════ */
.nb-sidebar {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
}

.nb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 35, 0.55);
  opacity: 0;
  transition: opacity 0.35s var(--nb-ease);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

}

.nb-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--nb-sidebar-w);
  max-width: 92vw;
  height: 100%;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 4px 0 32px rgba(15, 25, 35, 0.18);

}

.nb-sidebar.nb-open {
  pointer-events: auto;
}

.nb-sidebar.nb-open .nb-backdrop {
  opacity: 1;
}

.nb-sidebar.nb-open .nb-panel {
  transform: translateX(0);
}

/* sidebar header */
.nb-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--secondary-blue);
  flex-shrink: 0;
}

.nb-panel-head .nb-logo {
  margin-right: 0;
}



.nb-panel-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 15px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}




/* sidebar nav */
.nb-snav {
  flex: 1;
  padding: 10px 0;
  list-style: none;
  margin: 0;
}

.nb-snav>li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.nb-snav>li>a,
.nb-snav>li>button.nb-stoggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary-blue);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  text-align: left;
}

/* left accent bar */
.nb-snav>li>a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 55%;
  background: var(--bg-color);
  border-radius: 0 3px 3px 0;
  transition: transform 0.2s var(--nb-ease);
}

.nb-snav>li>a:hover::before,
.nb-snav>li>a.nb-active::before {
  transform: translateY(-50%) scaleY(1);
}

.nb-snav>li>a:hover,
.nb-snav>li>button:hover {
  background: rgba(21, 60, 175, 0.05);
  color: var(--secondary-blue);
  padding-left: 26px;
}

.nb-snav>li>a.nb-active {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.05);
  padding-left: 26px;
}


.nb-snav>li>button.nb-active {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.05);
}

.nb-stoggle i {
  font-size: 10px;
  color: var(--text-gray);
  flex-shrink: 0;
  transition: transform 0.25s var(--nb-ease), color 0.2s;
}

.nb-stoggle.nb-open {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.05);
  padding-left: 26px;
}

.nb-stoggle.nb-open i {
  transform: rotate(-180deg);
  color: var(--secondary-blue);
}

/* submenu */
.nb-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  background: #faf9f7;
  border-top: 1px solid var(--nb-border);
}

.nb-submenu.nb-open {
  max-height: 520px;
}

.nb-submenu li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px 10px 30px;
  font-size: 13px;
  font-weight: 400;
  color: var(--nb-steel);
  text-decoration: none;
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
}

.nb-submenu li a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nb-steel);
  flex-shrink: 0;
  transition: background 0.18s;
}

.nb-submenu li a:hover {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.04);
  padding-left: 34px;
}

.nb-submenu li a:hover::before {
  background: var(--secondary-blue);
}


.nb-submenu li .nb-active {
  color: var(--secondary-blue);
  background: rgba(21, 60, 175, 0.04);
  padding-left: 34px;
}

.nb-submenu li .nb-active::before {
  background: var(--secondary-blue);
}

/* sidebar footer */
.nb-panel-foot {
  padding: 18px 20px;
  border-top: 1px solid var(--nb-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  background: var(--light-gray);
}

.nb-foot-contacts {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.nb-foot-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--nb-steel);
  text-decoration: none;
  transition: color 0.18s;
}

.nb-foot-contacts a:hover {
  color: var(--secondary-blue);
}

.nb-foot-contacts i {
  color: var(--secondary-blue);
  width: 14px;
  text-align: center;
  font-size: 11px;
  flex-shrink: 0;
}

.nb-panel-foot .nb-btn {
  justify-content: center;
  padding: 13px;
  font-size: 13px;
}

/* ════════════════════════════════
           RESPONSIVE
        ════════════════════════════════ */
@media (max-width: 991px) {

  .nb-links,
  .nb-cta {
    display: none !important;
  }

  .nb-hamburger {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .nb-banner-inner {
    padding: 0 16px;
  }

  .nb-banner-hours {
    display: none;
  }

  .nb-banner-left {
    gap: 14px;
  }

  .nb-inner {
    padding: 0 16px;
  }
}


































/* ======= HERO SECTION style ======= */
.hero-section {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}


.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.15);
  transition:
    opacity 3s ease,
    transform 3s cubic-bezier(.16, 1, .3, 1);
  z-index: 0;
}

/* Active slide */
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Leaving slide (zoom in while fading) */
.carousel-slide.zoom-in {
  opacity: 0;
  transform: scale(1.25);
  z-index: 1;
}

/* Entering slide */
.carousel-slide.zoom-out {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  z-index: 3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-left: 120px;
}



.content-wrapper {
  opacity: 1;
  transform: none;
  position: relative;
  pointer-events: auto;
}


.hero-content span {
  font-family: 'Playfair Display', serif;
  font-size: clamp(25px, 6vw, 40px);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  color: var(--white);
  text-align: left;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}


.hero-content h1 {
  font-size: clamp(45px, 8vw, 75px);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.5em;
  color: var(--white);
  text-align: left;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 820px;
  color: var(--white);
  text-transform: capitalize;
  margin-left: auto;
  margin-right: auto;
}







/* Indicators */
.indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 15px;
}

.indicator {
  width: 12px;
  height: 12px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  border-radius: 50px;

}

.indicator.active {
  background: var(--white);
  width: 80px;
  border-style: none;
}

/* Responsive */


@media (max-width: 768px) {

  .hero-section {
    width: 100%;
    height: 83vh;
    overflow: hidden;
  }


  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }

  .indicators {
    bottom: 30px;
    gap: 10px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 30px;
  }

  .hero-content {
    width: 100%;
    padding: 15px;
  }

  .hero-btn {
    padding: 12px 30px;
  }
}

@media (max-width: 575px) {

  .hero-section {
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }
}

@media (max-width: 480px) {


  .hero-section {
    min-height: 500px;
  }

  .hero-content h1 {
    margin-bottom: 15px;
  }

  .hero-content p {
    margin-bottom: 20px;
  }
}

/* ======= HERO SECTION style ======= */

































/* ======= INTRO SECTION STYLE======= */



.intro-section .row {
  display: flex;
  align-items: center;
}

.intro-txt h2 {
  text-transform: capitalize;
}

.intro-txt p {
  font-size: 16px;
  color: var(--text-gray);
}

.intro-img {
  border-radius: 10px;
}

.intro-img img {
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}


/* ======= INTRO SECTION STYLE======= */

























/* ======= FEATURES SECTION STYLE======= */

.features-section {
  padding-top: 0px;
}

.features-card {
  margin: 5px;
  transition: all 0.3s ease;
}

.features-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.features-card-icon img {
  width: 90px;
  height: auto;
  aspect-ratio: 1/1;
}


.features-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.features-card-content h3 {
  font-size: clamp(18px, 5vw, 24px);
  text-transform: capitalize;
  margin-bottom: 5px;
  font-family: var(--font-head);
  text-align: center;
}


.features-card-content p {
  text-align: center;
  color: var(--text-gray);
}


.features-card:hover img {
  transform: scale(1.05);
}

/* ======= FEATURES SECTION STYLE======= */


























/* ======= FEATURES SECTION STYLE======= */

.our-service-section {
  padding-top: 0px;
}

.our-service-section .row>div {
  display: flex;
}



.servive-card {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--white);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 255, 0.18);
}

.service-card-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  margin-bottom: 10px;
}

.service-card-head h3 {
  margin: 0px;
  font-size: clamp(20px, 5vw, 24px);
  text-transform: capitalize;
  font-family: var(--font-head);

}

.service-card-icon {
  padding: 5px;
  width: 90px;
  height: 90px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background-color: var(--white);
  background-color: rgba(0, 0, 255, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;

}

.service-card-icon img {
  width: 60px;
  height: 60px;
}


.service-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-body p {
  font-size: 16px;
  margin: 0px;
}

.service-card-body a {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: inherit;
  width: fit-content;
}

.service-card-body a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-blue);
  transition: width 0.3s ease;
}


.service-card-body a:hover::before {
  width: 100%;
}

.servive-card:hover .service-card-icon {
  transform: scale(1.08);
}

.servive-card:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 9px 9px 0px;

}

.servive-card-header {
  /* background-color: rgba(0, 110, 255, 0.05); */
  width: 100%;
  background-color: var(--secondary-blue);
}



/* ======= FEATURES SECTION STYLE======= */
























/* ======= GALLERY SECTION ======= */

.hero-gallery-section {
  padding-bottom: 0px;
}


.mansory-gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0px;
  position: relative;
}

.mansory-gallery .column {
  flex: 25%;
  padding: 5px 10px;
}

.mansory-gallery .column img {
  border-radius: 10px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  transition: transform 0.6s ease, filter 0.6s ease;
  aspect-ratio: 6/7;
  object-fit: cover;
  object-position: center;
}


.mansory-gallery .column img:hover {
  transform: scale(1.03);
  filter: contrast(1.05);
}


@media (max-width: 991.5px) {
  .mansory-gallery .column {
    flex: 50%;
  }
}

@media (max-width: 575px) {
  .mansory-gallery .column {
    flex: 100%;
  }
}


/* ======= GALLERY SECTION ======= */















/* ======= INFINITE BANNER CAROUSEL ======= */

.slider {
  Height: auto;
  --animationSpeed: 60s;
  overflow: hidden;
  width: 100%;
  height: var(--slideHeight);
  background-color: transparent;
  margin: auto;
}

.slider .slides-track {
  display: flex;
  width: max-content;
  animation: scroll var(--animationSpeed) linear infinite;
}



.slider .slide-brand img {
  width: auto;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 30px;
}

.slider .slide img {
  width: clamp(80px, 4vw, 120px);
  height: auto;
}




/* Keyframes: move one full set (50%) */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width:767px) {
  .slider {
    Height: 100px;
  }

  .slider .slide {
    padding: 0 10px;
  }
}

/* ======= INFINITE BANNER CAROUSEL ======= */

























/* ======= CTA SECTION ======= */


.cta-box {
  position: relative;
  overflow: hidden;
  padding: 40px 80px;
  height: 450px;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;

  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;

  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.cta-content h2 {
  font-size: clamp(35px, 7vw, 60px);
  color: var(--white);
  text-transform: capitalize;
}

.cta-content h2 span {
  color: var(--secondary-blue);
  text-transform: capitalize;
}

@media (max-width:992px) {
  .cta-section {
    padding: 0px 60px;
  }

  .cta-box {
    padding: 40px 60px;
  }

}

@media (max-width:767px) {
  .cta-section {
    padding: 0px 30px;
  }

  .cta-box {
    padding: 40px 30px;
  }

}

@media (max-width:557px) {
  .cta-section {
    padding: 0px 12px;
  }

  .cta-box {
    padding: 40px 12px;
  }

  .gallery-btn a {
    margin-bottom: 10px;
  }
}


/* ======= Lets Talk CTA SECTION ======= */







































/* ======= Testimonials Section ======= */


.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.card-profile {
  display: flex;
}

.google-icon img {
  aspect-ratio: 1/1;
  width: 80px;
  height: auto;
}


.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-card h5 {
  margin: 0;
  font-size: 16px;
  color: var(--secondary-blue);
  font-weight: 600;
}

.testimonial-card p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
}

.stars {
  color: gold;
  font-size: 1.4rem;
}

/* ======= REVIEW SECTION ======= */










































/* ======= Button style ======= */

.button-1 {
  background: var(--white);
  border: none;
  padding: 15px 20px;
  color: var(--secondary-blue);
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(220, 219, 225, 0.2);
  letter-spacing: 0.01em;
}

.button-1:hover {
  background: #0e2a7c;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(220, 219, 225, 0.2);
}








.button-2 {
  background: var(--secondary-blue);
  border: none;
  padding: 15px 20px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(220, 219, 225, 0.2);
  letter-spacing: 0.01em;
}

.button-2:hover {
  background: #0e2a7c;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.4);
}

/* ======= Button style ======= */



















/* ===================================== 
                  Footer style 
======================================= */

.footer {
  background: #0b2165;
  position: relative;
  overflow-x: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/line-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  filter: invert(0.4);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}




/* footer top */

.footer .top {
  padding: 90px 0px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}



.footer .top .item h3 {
  color: var(--white);
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}



.footer .top .item p {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.footer .top .item p i {
  margin-right: 5px;
  color: var(--white);
}



.footer .top .item .links ul {
  margin: 0;
  padding: 0;
  color: var(--white);
}

.footer .top .item .links ul li {
  margin-bottom: 5px;
  font-weight: 300;

}


.footer .top .item .links ul li i {
  font-size: 16px;
  font-weight: 300;
  margin-right: 6px;
  color: var(--white);
}





/* social icons */

.footer .top .social-icons li {
  display: inline-block;
  border: none;
  z-index: 1;
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 45px;
  text-align: center;
  justify-content: center;
  margin-right: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 20px;
  color: var(--secondary-blue);
  background: var(--white);
  margin: 5px;
  border-radius: 50px;
}

.footer .top .social-icons i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer .top .social-icons .list-inline {
  margin: 0;
}


.footer .top .social-icons li:hover {
  color: var(--secondary-blue);
  background-color: var(--primary-blue);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  transform: scale(1.1);
}











/* footer bottom */

.footer .bottom {
  padding: 20px 0px;

}

.footer-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer .bottom p {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
}


.footer-power img {
  width: 100px;
}


/* ===================================== 
                  Footer style 
======================================= */










/* ===================================== 
                  Book Now CTA For Mobile 
======================================= */


.cta-container {
  position: fixed;
  bottom: 60px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.cta-text {
  background: var(--white);
  color: var(--secondary-blue);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 30px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.cta-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.cta-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cta-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--secondary-blue);
  z-index: 1;
  animation: smoothPulse 2s infinite ease-out;
}

.cta-btn:hover {
  transform: none;
}



@keyframes smoothPulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.9);
    opacity: 0;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* ===================================== 
                  Book Now CTA For Mobile 
======================================= */













/* ======= Responsive style ======= */

@media (min-width: 1200px) {
  .container {
    max-width: 1400px !important;
  }
}





/*========================
 Header SECTION
 ====================== */

.sec-title {
  z-index: 1;
}

.sec-title .sub-title {
  display: flex;
  font: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;

}

.sec-title .sub-title img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.sec-title h2 {
  color: var(--black);
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.4em;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sec-title h2 span {
  color: #0e2a7c;
}

.sec-title p {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--text-gray);
}

/*========================
 Header SECTION
 ====================== */






























/*========================
      RESPONSVE SECTION
 ====================== */


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



@media (max-width:767px) {}



@media (max-width:575px) {}


/*========================
      RESPONSVE SECTION
 ====================== */