/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * colors
   */

  --green-blue-crayola: hsl(202, 75%, 47%);
  --prussian-blue: hsl(202, 72%, 15%);
  --eerie-black: hsl(210, 11%, 15%);
  --dark-orange: hsl(32, 100%, 50%);
  --alice-blue: hsl(203, 100%, 97%);
  --light-gray: hsl(0, 0%, 80%);
  --indigo-dye: hsl(202, 64%, 26%);
  --cultured-1: hsl(0, 0%, 94%);
  --cultured-2: hsl(0, 0%, 95%);
  --cultured-3: hsl(0, 0%, 95%);
  --plutinum: hsl(0, 0%, 91%);
  --black_60: hsla(0, 0%, 0%, 0.6);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 24%);

  /**
   * typography
   */

  --ff-oswald: "Oswald", sans-serif;
  --ff-rubik: "Rubik", sans-serif;

  --fs-1: 6rem;
  --fs-2: 5rem;
  --fs-3: 4rem;
  --fs-4: 3rem;
  --fs-5: 2.2rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;
  --fs-9: 1.4rem;
  --fs-10: 1.2rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 50px;

  /**
   * shadow
   */

  --shadow-1: 2px 0 50px hsla(0, 0%, 0%, 0.2);
  --shadow-2: 0px 40px 60px hsla(202, 75%, 47%, 0.7);
  --shadow-3: 0px 0px 60px hsla(202, 75%, 47%, 0.5);

  /**
   * transition
   */

  --transition: 0.25s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
time,
span,
input,
button,
ion-icon {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

input[type="date"] {
  text-transform: uppercase;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--white);
  color: var(--onyx);
  font-size: 1.6rem;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: var(--cultured-2);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
  border: 2px solid var(--cultured-2);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
  max-width: 100%;
  box-sizing: border-box;
}

.section {
  padding-block: var(--section-padding);
}

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

@media (max-width: 576px) {
  .section {
    padding-block: 30px;
  }
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.2;
  font-weight: var(--fw-600);
}

.hero-title {
  font-size: 6rem;
}

.h2,
.h3 {
  color: #ff5f1f;
}

.h2 {
  font-size: var(--fs-4);
}

.h3 {
  font-size: var(--fs-5);
}

@media (max-width: 768px) {
  .h2 {
    font-size: 2.5rem;
  }

  .h3 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .h2 {
    font-size: 2rem;
  }

  .h3 {
    font-size: 1.8rem;
  }
}

.img-holder {
  background-color: var(--light-gray);
  aspect-ratio: 850 /1000;
  border-radius: 10px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  max-width: 100%;
}

.section-subtitle {
  color: #05668d;
  text-transform: uppercase;
  font-size: var(--fs-6);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  letter-spacing: 3px;
  margin-block-end: 10px;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 576px) {
  .section-subtitle {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}

.section-text {
  line-height: 1.4;
}

@media (max-width: 576px) {
  .section-text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.btn {
  position: relative;
  color: var(--white);
  background-color: #05668d;
  max-width: max-content;
  font-size: var(--fs-9);
  letter-spacing: 1px;
  padding-block: 10px;
  padding-inline: 15px 50px;
  width: auto;
}

@media (max-width: 576px) {
  .btn {
    font-size: 1.3rem;
    padding-block: 12px;
    padding-inline: 20px 45px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  transition: var(--transition);
}

.btn::before {
  top: 50%;
  right: 15px;
  width: 25px;
  height: 1px;
  background-color: var(--white);
}

.btn::after {
  top: -6px;
  right: -6px;
  bottom: -6px;
  width: 20px;
  border: 2px solid #05668d;
  z-index: -1;
}

.btn:is(:hover, :focus)::before {
  width: 33px;
}

.btn:is(:hover, :focus)::after {
  width: 40px;
}

.grid-list {
  display: grid;
  gap: 80px;
}

.btn-link {
  color: #05668d;
  font-size: var(--fs-7);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.btn-link > * {
  transform: translateX(-22px);
  transition: var(--transition);
}

.btn-link:is(:hover, :focus) > * {
  transform: translateX(0);
}

.w-100 {
  width: 100%;
}

.hero-search-wrapper {
  margin-top: 0;
  padding: 24px 15px 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-search-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  /* max-height: 70dvh; */
  overflow-y: auto;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #05668d;
}

.field-group input,
.field-group select {
  height: 48px;
  padding: 0 14px;
  border-radius: 20px;
  border: 1.5px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .field-group input,
  .field-group select {
    height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }
}

.field-group input:focus,
.field-group select:focus {
  border-color: #05668d;
}

.search-btn {
  position: relative;
  grid-column: 5;
  height: 52px;
  margin-top: 0;
  align-self: end;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: 2px solid #05668d;
  color: #05668d;
  position: relative;
  overflow: hidden;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.search-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Loading state */
.search-btn.btn-loading {
  color: transparent;
  /* hide text */
  pointer-events: none;
}

.search-btn.btn-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 576px) {
  .search-btn {
    height: 48px;
    font-size: 15px;
  }
}

.search-btn:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(270deg, #05668d, #002164, #05668d);
  background-size: 400% 400%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Hero Search */
@media (max-width: 992px) {
  .hero-search-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-search-wrapper {
    margin-top: 200px;
    padding-inline: 15px;
  }

  .hero-search-card {
    padding: 20px;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .hero-search-card {
    grid-template-columns: 1fr;
    ;
    padding: 16px;
    gap: 12px;
    max-width: 360px;
  }

  .search-btn {
    grid-column: 1;
    margin-top: 8px;
  }

  .hero-search-wrapper {
    margin-top: 520px;
  }
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-contact {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 15px;
  z-index: 4;
  transition: var(--transition);
}

.header.active {
  background-color: #ffffff;
}

/* Header contact default color */
.header:not(.active) .header-contact,
.header:not(.active) .contact-label,
.header:not(.active) .contact-number,
.header:not(.active) .contact-icon,
.header:not(.active) .navbar-link,
.header:not(.active) .logo {
  color: #05668d;
}

.header.active .logo,
.header.active .navbar-link,
.header.active .header-contact,
.header.active .contact-label,
.header.active .contact-number,
.header.active .contact-icon {
  color: #05668d;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .header .container {
    gap: 15px;
  }
}

.logo {
  font-family: var(--ff-oswald);
  color: var(--white);
  font-size: 3rem;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 2rem;
  }
}

.navbar-title {
  color: #05668d;
  font-size: 3rem;
  font-weight: 500;
}

.nav-open-btn {
  color: var(--white);
  font-size: 35px;
}

.nav-open-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar {
  position: fixed;
  top: 0;
  left: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
  overflow-y: auto;
}

.navbar-logo {
  width: 80px;
  height: 50px;
}

@media (max-width: 576px) {
  .navbar {
    max-width: 280px;
  }

  .navbar-title {
    font-size: 3rem;
  }
}

.navbar.active {
  visibility: visible;
  transform: translateX(300px);
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-block-end: 1px solid var(--plutinum);
  padding: 30px 20px;
}

.navbar-top .logo {
  color: var(--onyx);
  font-size: 3rem;
}

.nav-close-btn {
  font-size: 25px;
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar-item:not(:last-child) {
  border-block-end: 1px solid var(--plutinum);
}

.navbar-link {
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  transition: var(--transition);
}

.navbar-link:is(:hover, :focus) {
  background-color: var(--cultured-1);
  color: #05668d;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_60);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  min-height: 115vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  overflow: hidden;
}

/* background image layer */
.hero-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;

  /* GPU pinning */
  transform: translateZ(0);
  will-change: transform;
}

@media (max-width: 768px) {
  .hero-bg {
    height: 100svh;
  }
}

.hero-content {
  position: absolute;
  min-height: 300px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding-block-start: calc(var(--section-padding) + 70px);
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 70vh;
    padding-block-start: calc(var(--section-padding) + 60px);
  }

  .hero-content {
    position: relative;
    min-height: 67vh;
  }
}

.hero-shape {
  position: absolute;
  z-index: -1;
  animation: move 2s ease-in-out infinite alternate;
  max-width: 80px;
  height: auto;
}

.hero .shape-1 {
  top: 100px;
  left: 30px;
}

.hero .shape-2 {
  bottom: 80px;
  right: 30px;
}

@media (max-width: 768px) {
  .hero-shape {
    max-width: 60px;
  }

  .hero .shape-1 {
    top: 50px;
    left: 15px;
  }

  .hero .shape-2 {
    bottom: 40px;
    right: 15px;
  }
}

@keyframes move {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(20px);
  }
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-banner {
  position: relative;
  box-shadow: var(--shadow-2);
  max-width: 300px;
  margin-block-end: 60px;
  width: 100%;
}

@media (max-width: 991px) {
  .about-banner {
    max-width: 100%;
    margin-inline: auto;
  }
}

.about .abs-img-2 {
  display: none;
}

.about .abs-img-1 {
  position: absolute;
  bottom: 40px;
  right: 0;
  top: -20px;
  animation: move 2s ease-in-out infinite alternate;
  max-width: 200px;
  height: auto;
}

@media (max-width: 768px) {
  .about .abs-img-1 {
    max-width: 150px;
    right: -20px;
  }
}

.about :is(.section-title, .section-text) {
  margin-block-end: 20px;
}

@media (max-width: 576px) {
  .about :is(.section-title, .section-text) {
    margin-block-end: 15px;
  }
}

.about-list {
  margin-block-end: 40px;
}

@media (max-width: 576px) {
  .about-list {
    margin-block-end: 30px;
  }
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 576px) {
  .about-item {
    gap: 10px;
  }
}

.about-text {
  font-size: var(--fs-8);
}

@media (max-width: 576px) {
  .about-text {
    font-size: 1.4rem;
  }
}

.about-icon {
  min-width: max-content;
  color: #05668d;
  margin-block-start: 8px;
}

.about-item:not(:last-child) {
  margin-block-end: 10px;
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  background-color: var(--alice-blue);
}

.service :is(.section-subtitle, .section-title, .section-text) {
  text-align: center;
}

.service .section-title {
  margin-block-end: 20px;
}

.service .section-text {
  margin-block-end: 50px;
}

@media (max-width: 768px) {
  .service .section-text {
    margin-block-end: 40px;
  }
}

@media (max-width: 576px) {
  .service .section-text {
    margin-block-end: 30px;
  }
}

.service-card {
  background-color: var(--white);
  padding: 30px;
  border: 20px solid var(--cultured-3);
  transition: var(--transition);
}

.service-card:is(:hover, :focus-within) {
  border-color: #05668d;
}

.service-card .card-icon {
  margin-block-end: 30px;
}

.service-card .card-title .span {
  display: inline-block;
  color: #05668d;
  font-size: var(--fs-3);
  margin-inline-end: 15px;
}

.service-card .card-text {
  margin-block: 10px 20px;
}

/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.feature .title-wrapper {
  margin-block-end: 30px;
}

.feature .section-text {
  margin-block: 20px 40px;
}

.feature-card {
  position: relative;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--alice-blue);
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .feature-card {
    padding: 20px 15px;
  }
}

.feature-card:is(:hover, :focus-within) {
  box-shadow: var(--shadow-3);
}

.feature-card::before {
  content: var(--card-number);
  color: var(--cultured-1);
  font-family: var(--ff-oswald);
  font-size: var(--fs-1);
  font-weight: var(--fw-700);
  line-height: 1;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .feature-card::before {
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .feature-card::before {
    font-size: 3rem;
  }
}

.feature-card:is(:hover, :focus-within)::before {
  color: #05668d;
}

.feature-card .card-icon {
  background-color: var(--alice-blue);
  width: 170px;
  height: 170px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  margin-inline: auto;
  margin-block-end: 30px;
}

@media (max-width: 768px) {
  .feature-card .card-icon {
    width: 140px;
    height: 140px;
  }

  .feature-card .card-icon img {
    max-width: 60px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .feature-card .card-icon {
    width: 120px;
    height: 120px;
  }

  .feature-card .card-icon img {
    max-width: 50px;
  }
}

.feature-card .card-text {
  margin-block: 20px 40px;
}

@media (max-width: 576px) {
  .feature-card .card-text {
    margin-block: 15px 25px;
    font-size: 1.4rem;
  }
}

.feature-card .card-btn {
  color: #ff5f1f;
  font-size: 24px;
  border: 2px solid #ff5f1f;
  max-width: max-content;
  margin-inline: auto;
  padding: 10px 18px;
}

@media (max-width: 576px) {
  .feature-card .card-btn {
    font-size: 20px;
    padding: 8px 16px;
  }
}

/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project {
  background-color: var(--alice-blue);
}

.project :is(.section-subtitle, .section-title, .section-text) {
  text-align: center;
}

.project .section-text {
  margin-block: 20px 50px;
}

.project-card {
  position: relative;
}

.project-card .action-btn {
  background-color: #05668d;
  color: var(--white);
  font-size: 28px;
  padding: 16px;
  position: absolute;
  top: 30px;
  left: 30px;
  opacity: 0;
  transition: var(--transition);
}

.project-card:is(:hover, :focus-within) .action-btn {
  opacity: 1;
}

.project-card .card-tag {
  color: #05668d;
  font-size: var(--fs-9);
}

.project-card .card-content {
  position: relative;
  background-color: var(--white);
  padding: 20px 30px;
  margin-block-start: -50px;
  margin-inline-start: 30px;
}

.project-card .h3 {
  font-size: var(--fs-7);
}

.project-card .card-title {
  transition: var(--transition);
}

.project-card :is(.card-title, .card-link):is(:hover, :focus) {
  color: #05668d;
}

.project-card .card-link {
  color: #ff5f1f;
  font-size: var(--fs-10);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  margin-block-start: 5px;
  transition: var(--transition);
}

.project-list {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-block-end: 40px;
  scroll-snap-type: inline mandatory;
}

.project-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.project-list::-webkit-scrollbar {
  height: 15px;
}

.project-list::-webkit-scrollbar-track {
  outline: 2px solid #ff5f1f;
}

.project-list::-webkit-scrollbar-thumb {
  border: 3px solid var(--cultured-1);
  background-color: #ff5f1f;
}

.project-list::-webkit-scrollbar-button {
  width: calc(25% - 40px);
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog :is(.section-subtitle, .section-title, .section-text) {
  text-align: center;
}

.blog .section-text {
  margin-block: 20px 50px;
}

.blog-card .card-content {
  position: relative;
}

.blog-card .card-meta {
  background-color: #ff5f1f;
  color: var(--white);
  text-align: center;
  font-size: var(--fs-5);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  line-height: 1.5;
  max-width: max-content;
  margin-inline: auto 20px;
  margin-block: -80px 20px;
  padding: 20px 25px;
  box-shadow: -8px 8px 0 #05668d;
}

.blog-card .card-meta .span {
  color: #05668d;
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  line-height: 0.75;
}

.blog-card .card-text {
  margin-block: 15px;
}

/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter {
  background-color: #05668d;
}

.newsletter .section-title {
  margin-block-end: 20px;
}

@media (max-width: 576px) {
  .newsletter .section-title {
    font-size: 2rem;
    margin-block-end: 15px;
  }
}

.email-field {
  background-color: var(--white);
  color: var(--eerie-black);
  font-size: var(--fs-9);
  height: 65px;
  padding-inline: 20px;
  margin-block-end: 10px;
  outline: none;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .email-field {
    height: 55px;
    padding-inline: 15px;
    font-size: 1.4rem;
  }
}

.email-field:focus {
  box-shadow: 0 2px 2px hsla(0, 0%, 0%, 0.4);
}

.newsletter-btn {
  background-color: #ff5f1f;
  color: var(--white);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-700);
  padding: 8px 20px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  opacity: 0.9;
}

@media (max-width: 576px) {
  .newsletter-btn {
    padding: 10px 20px;
    font-size: 1.6rem;
  }
}

/*-----------------------------------*\
  #VEHICLES
\*-----------------------------------*/

.vehicles {
  background-color: #ffffff;
}

.vehicles :is(.section-subtitle, .section-title, .section-text) {
  text-align: center;
}

.vehicles .section-title {
  margin-block-end: 20px;
}

.vehicles .section-text {
  margin-block-end: 50px;
}

/* =========================
   CAROUSEL LAYOUT
========================= */

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.carousel-window {
  overflow: hidden;
  padding: 50px 0;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* =========================
   CARD STYLES (DESKTOP)
========================= */

.card {
  flex: 0 0 360px;
  /* Desktop */
  background: #fff;
  border-radius: 15px;
  text-align: center;
  box-shadow:
    4px 4px 10px #0003,
    -4px -4px 10px #fffc;
}

.card h3 {
  margin: 15px 0 5px;
}

.card p {
  font-size: 14px;
  color: #666;
  padding: 0 15px;
}

.btn-container {
  display: flex;
  justify-content: center;
}

.card button {
  margin: 20px 0 25px;
  padding: 5px 25px;
  border-radius: 20px;
  background: transparent;
  border: 2px solid #05668d;
  color: #05668d;
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.card button:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(270deg, #05668d, #002164, #05668d);
  background-size: 400% 400%;
  animation: gradientMove 3s ease infinite;
}

/* =========================
   NAV BUTTONS
========================= */

.nav {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(270deg, #05668d, #002164, #05668d);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

/* =========================
   RESPONSIVE CARD SIZES
========================= */

/* =========================
   CAROUSEL LAYOUT
========================= */

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  gap: 20px;
  width: 100%;
}

.carousel-window {
  overflow: hidden;
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* =========================
   CARD BASE STYLE
========================= */

.card {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  box-shadow:
    4px 4px 10px #0003,
    -4px -4px 10px #fffc;
  flex: 0 0 95%;
}

.card img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  padding: 8px;
}

.image-container {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* =========================
   RESPONSIVE CARD WIDTHS
========================= */

/* ≥576px → 1 card */
@media (min-width: 576px) {
  .card {
    flex: 0 0 360px;
  }
}

/* ≥768px → 2 cards */
@media (min-width: 768px) {
  .card {
    flex: 0 0 258px;
  }
}

/* ≥992px → 3 cards */
@media (min-width: 992px) {
  .card {
    flex: 0 0 376px;
  }
}

/* ≥1200px → 3 cards */
@media (min-width: 1200px) {
  .card {
    flex: 0 0 393px;
  }
}

/* ≥1400px → 4 cards */
@media (min-width: 1920px) {
  .card {
    flex: 0 0 290px;
  }
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--plutinum);
  color: #ff5f1f;
}

.footer-top {
  display: grid;
  gap: 40px;
}

.footer-address-ctn {
  display: flex;
}

.footer-gst {
  margin-bottom: 10px;
  margin-top: 10px;
}

.footer-address-ctn ion-icon {
  margin-right: 6px;
  margin-top: 3px;
  width: 25px;
  height: 25px;
  color: var(--indigo-dye);
}

@media (max-width: 768px) {
  .footer-top {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    gap: 25px;
  }
}

.footer .logo {
  padding: 10px;
  width: fit-content;
}

@media (max-width: 768px) {
  .footer .logo {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .footer .logo {
    font-size: 2.4rem;
  }
}

.footer-text {
  margin-block: 10px 30px;
}

@media (max-width: 576px) {
  .footer-text {
    font-size: 1.4rem;
    margin-block: 10px 20px;
  }
}

.social-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  background-color: var(--indigo-dye);
  color: var(--white);
  font-size: 20px;
  padding: 12px;
  transition: var(--transition);
}

@media (max-width: 576px) {
  .social-link {
    font-size: 18px;
    padding: 10px;
  }
}

.social-link:is(:hover, :focus) {
  background-color: #ff5f1f;
}

.footer-list-title {
  font-size: var(--fs-6);
  max-width: max-content;
  padding-block-end: 10px;
  border-block-end: 3px solid #05668d;
  margin-block-end: 20px;
}

@media (max-width: 576px) {
  .footer-list-title {
    font-size: 1.8rem;
    margin-block-end: 15px;
  }
}

.footer-link {
  padding-block: 6px;
}

@media (max-width: 576px) {
  .footer-link {
    font-size: 1.4rem;
    padding-block: 8px;
  }
}

.footer-bottom {
  padding-block: 40px;
  border-block-start: 1px solid #ff5f1f;
  font-size: var(--fs-9);
  color: var(--indigo-dye);
}

@media (max-width: 576px) {
  .footer-bottom {
    padding-block: 30px;
    font-size: 1.3rem;
    text-align: center;
  }
}

.copyright-link {
  display: inline-block;
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--eerie-black);
  color: var(--white);
  font-size: 20px;
  padding: 10px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

@media (max-width: 576px) {
  .back-top-btn {
    bottom: 15px;
    right: 15px;
    font-size: 18px;
    padding: 8px;
  }
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

/*-----------------------------------*\
  #MEDIA QUERISE
\*-----------------------------------*/

/**
 * responsive for larger than 540px screen
 */

@media (min-width: 540px) {
  /**
   * REUSED STYLE
   */

  .btn {
    font-size: var(--fs-7);
    padding-inline: 30px 60px;
  }

  /**
   * HEADER
   */

  .header-contact {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
    line-height: 1.2;
    margin-inline-start: auto;
  }

  @media (max-width: 768px) {
    .header-contact {
      gap: 10px;
      font-size: 1.2rem;
    }

    .header .contact-label {
      font-size: 1rem;
    }

    .header .contact-number {
      font-size: 1.4rem;
    }

    .header .contact-icon {
      font-size: 24px;
    }
  }

  @media (max-width: 576px) {
    .header-contact {
      display: none;
    }
  }

  .header .contact-label {
    text-transform: uppercase;
    font-size: var(--fs-9);
  }

  .header .contact-number {
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    letter-spacing: 1px;
  }

  .header .contact-icon {
    font-size: 35px;
    opacity: 0.6;
  }

  /**
   * ABOUT
   */

  .about .abs-img-2 {
    display: block;
    position: absolute;
    width: 400px;
    bottom: 0;
    left: 50px;
    z-index: -1;
    max-width: 100%;
    height: auto;
  }

  .about .abs-img-1 {
    right: -200px;
  }

  @media (max-width: 991px) {
    .about .abs-img-2 {
      width: 300px;
      left: 20px;
    }

    .about .abs-img-1 {
      right: -100px;
    }
  }

  @media (max-width: 768px) {
    .about .abs-img-2 {
      width: 200px;
      left: 10px;
    }

    .about .abs-img-1 {
      right: -50px;
    }
  }
}

/**
 * responsive for larger than 640px screen
 */

@media (min-width: 640px) {
  /**
   * REUSED STYLE
   */

  .h1 {
    --fs-3: 5rem;
  }

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 20px;
  }

  /**
   * HEADER
   */

  .header .container {
    max-width: 1790px;
  }

  .header .logo {
    font-size: 3.5rem;
  }

  .hero .shape-1 {
    left: 45px;
  }

  .hero-content {
    background-color: transparent;
    text-align: left;
  }

  .hero-title .span {
    --fs-2: 6rem;
  }

  .hero-text {
    max-width: 30ch;
  }

  .btn-outline {
    margin-inline: 0;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
    padding-inline: 20px;
  }

  .h1 {
    --fs-3: 6rem;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  @media (max-width: 767px) {
    .grid-list {
      grid-template-columns: 1fr;
    }
  }

  /**
   * HERO
   */

  .hero-title .span {
    --fs-2: 7rem;
  }

  .hero-text {
    font-size: var(--fs-7);
    max-width: 40ch;
    margin-block-end: 40px;
  }

  .btn-outline {
    font-size: var(--fs-7);
    padding: 12px 30px;
  }

  /**
   * FEATURES
   */

  .feature-card::before {
    --fs-1: 10rem;
  }

  /**
   * PROJECT
   */

  .project-list {
    gap: 80px;
  }

  .project-item {
    min-width: calc(50% - 40px);
  }

  /**
   * NEWSLETTER
   */

  .newsletter .container {
    position: relative;
  }

  .newsletter .newsletter-banner {
    position: absolute;
    bottom: -50px;
    left: 0;
    margin-block-end: 0;
  }

  .newsletter-content {
    max-width: 355px;
    margin-inline-start: auto;
    width: 100%;
  }

  @media (max-width: 767px) {
    .newsletter-content {
      max-width: 100%;
      margin-inline-start: 0;
    }
  }

  .newsletter .section-title {
    --fs-4: 4rem;
  }

  .newsletter-btn {
    font-size: var(--fs-5);
    padding: 10px 30px;
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  @media (max-width: 767px) {
    .footer-top {
      grid-template-columns: 1fr;
    }
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-4: 4.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
    padding-inline: 20px;
  }

  .h1 {
    --fs-3: 10rem;
  }

  .section-subtitle {
    --fs-6: 3rem;
  }

  .section-text {
    max-width: 70ch;
    margin-inline: auto;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  @media (max-width: 991px) {
    .grid-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 767px) {
    .grid-list {
      grid-template-columns: 1fr;
    }
  }

  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar-top,
  .navbar-link > ion-icon {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-list {
    display: flex;
    gap: 5px;
  }

  .navbar-item:not(:last-child) {
    border-block-end: none;
  }

  .navbar-link:is(:hover, :focus) {
    background-color: transparent;
  }

  .header-contact {
    margin-inline-start: 0;
  }

  /**
   * HERO
   */

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 0;
  }

  .hero-title .span {
    --fs-2: 12rem;
  }

  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  @media (max-width: 991px) {
    .about .container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .about-banner {
    margin-block-end: 0;
  }

  .about .abs-img-1 {
    right: -100px;
  }

  .about :is(.section-title, .section-text) {
    margin-block-end: 35px;
  }

  /**
   * ABOUT US DETAILED
   */

  .about-us-detailed .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 30px;
  }

  @media (max-width: 991px) {
    .about-us-detailed .container {
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }
  }

  .about-us-banner {
    margin-block-end: 0;
    height: 100%;
    width: 100%;
    max-width: 100% !important;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-shadow: var(--shadow-2);
  }

  .about-us-banner.img-holder {
    height: 100% !important;
    width: 100% !important;
    aspect-ratio: unset !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent;
  }

  .about-us-banner .img-cover {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    display: block;
  }

  .about-us-detailed :is(.section-title, .section-text) {
    margin-block-end: 35px;
  }

  /**
   * FEATURE
   */

  .feature .title-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: self-end;
  }

  .feature .section-text {
    margin-block-end: 0;
  }

  .feature-list {
    margin-block-start: 120px;
  }

  .feature-card {
    padding-block-start: 80px;
  }

  .feature-card::before {
    --fs-1: 16rem;
    position: absolute;
    top: -90px;
    left: 20px;
  }

  /**
   * PROJECT
   */

  .project-item {
    min-width: calc(33.33% - 53.33px);
  }

  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * NEWSLETTER
   */

  .newsletter {
    padding-block: 30px;
  }

  .newsletter .newsletter-banner {
    bottom: -30px;
  }

  .newsletter-content {
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  @media (max-width: 767px) {
    .newsletter-content {
      grid-template-columns: 1fr;
      max-width: 100%;
    }
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
    justify-items: self-end;
  }

  @media (max-width: 991px) {
    .footer-top {
      grid-template-columns: repeat(2, 1fr);
      justify-items: start;
    }
  }

  @media (max-width: 767px) {
    .footer-top {
      grid-template-columns: 1fr;
      justify-items: start;
    }
  }

  .copyright {
    text-align: center;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1400px;
    padding-inline: 20px;
  }

  .h1 {
    --fs-3: 12rem;
  }

  /**
   * HEADER
   */

  /* .header .contact-number {
    --fs-6: 3rem;
  } */

  /**
   * HERO
   */

  .hero {
    padding-block-start: 150px;
    background-position: left;
  }

  .hero-title .span {
    --fs-2: 14rem;
  }

  .hero-text {
    --fs-7: 2.4rem;
  }

  /**
   * ABOUT
   */

  .about-banner {
    max-width: 550px;
  }

  .about .abs-img-2 {
    width: max-content;
  }

  /**
   * NEWSLETTER
   */

  .newsletter-content {
    max-width: 840px;
    grid-template-columns: 0.8fr 1fr;
    gap: 20px;
  }

  @media (max-width: 767px) {
    .newsletter-content {
      grid-template-columns: 1fr;
      max-width: 100%;
    }
  }

  /**
   * FOOTER
   */

  .footer-top {
    padding-block: 60px;
  }
}

/*-----------------------------------*\
  #ABOUT US DETAILED
\*-----------------------------------*/

.about-us-detailed {
  background-color: var(--white);
}

.about-us-banner {
  position: relative;
  box-shadow: var(--shadow-2);
  max-width: 300px;
  margin-block-end: 60px;
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}

.about-us-banner.img-holder {
  aspect-ratio: 400 / 720;
  background-color: transparent;
  margin: 0;
  padding: 0;
}

.about-us-banner .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .about-us-banner {
    max-width: 100%;
    margin-inline: auto;
    margin-block-end: 0;
    height: auto;
  }

  .about-us-banner.img-holder {
    height: auto;
    aspect-ratio: 400 / 400;
  }

  .about-us-banner .img-cover {
    height: auto;
    width: 100%;
    object-fit: cover;
  }
}

.about-us-detailed :is(.section-title, .section-text) {
  margin-block-end: 20px;
}

@media (max-width: 576px) {
  .about-us-detailed :is(.section-title, .section-text) {
    margin-block-end: 15px;
  }
}

.about-us-description {
  margin-block-end: 30px;
  line-height: 1.7;
  color: var(--onyx);
}

@media (max-width: 576px) {
  .about-us-description {
    margin-block-end: 25px;
    font-size: 1.4rem;
  }
}

/* Ensure about/about-us images are responsive on small screens */
@media (max-width: 576px) {
  .about-us-banner,
  .about-us-banner.img-holder,
  .about-banner,
  .about-banner.img-holder {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    margin-inline: auto !important;
  }

  .about-us-banner .img-cover,
  .about-banner .img-cover {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    display: block;
  }
}

.about-us-subheading {
  color: #05668d;
  margin-block-end: 20px;
  font-size: var(--fs-5);
}

@media (max-width: 768px) {
  .about-us-subheading {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-us-subheading {
    font-size: 1.8rem;
    margin-block-end: 15px;
  }
}

.about-us-detailed .about-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.about-us-detailed .about-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.about {
  background-color: #ffffff;
  padding-top: 8rem;
  position: relative;
  z-index: 1;
}

/* Toast Messages */
#antd-message-container {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.antd-message {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 280px;
  padding: 10px 16px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 6px;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.08),
    0 3px 6px rgba(0, 0, 0, 0.12);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 14px;
  animation: slideDown 0.3s ease;
}

.antd-message-icon {
  font-size: 16px;
}

.antd-success {
  color: #52c41a;
}

.antd-error {
  color: #ff4d4f;
}

.antd-info {
  color: #1677ff;
}

.antd-warning {
  color: #faad14;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== All Packages Carousel ===== */
.all-packages {
  background-color: #05668d;
}

.all-packages .tpkg-carousel {
  width: 100%;
  margin-top: 22px;
}

/* Track */
.all-packages .tpkg-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

/* Card */
.all-packages .tpkg-card {
  flex: 0 0 calc((100vw - 112px) / 3);
  max-width: 294px;
  background: #ffffff;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 7px 21px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transform-origin: center center;
}

/* Zoom on hover */
.all-packages .tpkg-card:hover {
  transform: scale(1.2);
  z-index: 10;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.25);
}

/* Image */
.all-packages .tpkg-image-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.all-packages .tpkg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.all-packages .tpkg-content {
  padding: 11px 13px 13px;
  min-height: 98px;
}

.all-packages .tpkg-title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #111;
}

.all-packages .tpkg-duration {
  font-size: 10px;
  color: #666;
  margin: 0;
}

.all-packages .tpkg-ambience {
  font-size: 9px;
  line-height: 1.5;
  color: #444;
  margin-top: 6px;
}

/* Tablet */
@media (max-width: 1024px) {
  .all-packages .tpkg-card {
    flex: 0 0 calc((100vw - 56px) / 2);
  }

  .all-packages .tpkg-image-wrap {
    height: 154px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .all-packages .tpkg-card {
    flex: 0 0 60vw;
  }

  .all-packages .tpkg-image-wrap {
    height: 126px;
  }

  .all-packages .tpkg-ambience {
    font-size: 8.5px;
  }
}

/* Headings */
.package-subtitle {
  color: #fff;
  text-transform: uppercase;
  font-size: calc(var(--fs-6) * 0.7);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-600);
  letter-spacing: 2px;
  margin-block-end: 7px;
}

.package-sub-text {
  font-size: 11px;
  color: #e9e9e9;
  margin-top: 7px;
}


.testimonials {
  background-color: var(--alice-blue);
}

.testimonials :is(.section-subtitle, .section-title, .section-text) {
  text-align: center;
}

.testimonials .section-title {
  margin-block-end: 20px;
}

.testimonials .section-text {
  margin-block-end: 50px;
}

/* Grid Layout */
.testimonial-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0px 40px;
}

/* Testimonial Card */
.testimonial-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

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

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.customer-name {
  font-size: 18px;
  font-weight: bold;
}

.customer-role {
  font-size: 14px;
  color: #777;
}

.star-rating {
  font-size: 18px;
  color: #f4b400;
  margin-bottom: 15px;
}

/* Tablet */
@media (min-width: 600px) {
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 100px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .testimonial-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 100px;
  }
}

/* TOP OFFER BAR */
#top-offer-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #05668d;
  /* blue */
  color: #ffffff;
  z-index: 10000;
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-weight: 600;
  font-size: large;
}

/* SCROLLING CONTENT */
#scroll-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

#scroll-content {
  display: inline-flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
}

.offer {
  flex-shrink: 0;
  font-size: 3rem;
  align-items: center;
  align-content: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.header {
  margin-top: 44px;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.modal-text {
  padding: 0px 0px 15px;
}

#okBtn {
  background-color: #05668d;
  color: #ffffff;
  border: none;
  padding: 5px 25px;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  justify-self: center;
}

#okBtn:hover {
  background-color: #044f6d; /* slightly darker on hover */
}

#okBtn:active {
  transform: scale(0.98);
}
