/* style.css */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    font-family: 'Quicksand', sans-serif;
   font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: #000;
  scroll-behavior: smooth;
}



/* =========================
   Navbar
========================= */

/* ===================================
   NAVBAR
=================================== */

.custom-navbar{
  background: #ffffff;
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  z-index: 999;
}

.navbar-brand img{
  height: 48px;
  width: auto;
  display: block;
}

/* Nav Menu */

.navbar-nav{
  align-items: center;
}

.navbar-nav .nav-link{
  color: #061744 !important;
  margin: 0 14px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover{
  color: #061744 !important;
}

/* Underline Hover */

.navbar-nav .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #061744;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after{
  width: 100%;
}

/* Enquire Button */

.enquire-btn{
  background: #061744;
  color: #fff;
  padding: 11px 24px;
  border-radius: 0;
  border: 2px solid #061744;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
}

.enquire-btn:hover{
  background: #ffffff;
  border-color: #061744;
  color: #061744;
}

/* Navbar Toggle */

.navbar-toggler{
  border: none;
  padding: 0;
  box-shadow: none !important;
}

.navbar-toggler:focus{
  box-shadow: none;
}

.navbar-toggler-icon{
  width: 1.6rem;
  height: 1.6rem;
  filter: brightness(0);
}

/* ===================================
   Responsive
=================================== */

@media (max-width: 991px){

  .custom-navbar{
    padding: 12px 0;
  }

  .navbar-collapse{
    background: #fff;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }

  .navbar-nav{
    align-items: flex-start;
  }

  .navbar-nav .nav-link{
    margin: 10px 0;
    font-size: 16px;
  }

  .enquire-btn{
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 576px){

  .navbar-brand img{
    height: 42px;
  }

  .navbar-nav .nav-link{
    font-size: 15px;
  }

  .enquire-btn{
    padding: 10px 20px;
    font-size: 14px;
  }

}








/* =========================
   Hero Section
========================= */
/* ===================================
   HERO SECTION
=================================== */

.hero-section{
  position: relative;
  padding: 150px 0 90px;
  background:
    linear-gradient(
      135deg,
      rgba(0,0,0,0.86),
      rgba(6,23,68,0.92)
    ),
    url("images/banner.jpg") center center/cover no-repeat;
  overflow: hidden;
}

/* ===================================
   LEFT CONTENT
=================================== */

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 620px;
}

/* Location Badge */

.hero-location{
  display: inline-block;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Heading */

.hero-content h1{
  font-size: 56px;
  line-height: 1.08;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -1px;
  font-family: 'Quicksand', sans-serif;
}

/* Paragraph */

.hero-content p{
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 560px;
}

/* Buttons */

.hero-btn-group{
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Primary Button */

.hero-btn{
  background: #ffffff;
  color: #061744;
  border: 2px solid #ffffff;
  border-radius: 0;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.hero-btn:hover{
  background: transparent;
  color: #ffffff;
}

/* Outline Button */

.hero-outline-btn{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.hero-outline-btn:hover{
  background: #ffffff;
  color: #061744;
}

/* ===================================
   FORM SECTION
=================================== */

.hero-right-wrapper{
  position: relative;
  z-index: 2;
}

/* Form Box */

/* ===================================
   MODERN MINIMAL FORM DESIGN
=================================== */

.hero-form-box{
  background: #ffffff;
  padding: 32px 28px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

/* Top Accent */

.hero-form-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #061744;
}

/* Form Header */

.form-top{
  margin-bottom: 22px;
}

.hero-form-box h3{
  font-size: 30px;
  font-weight: 700;
  color: #061744;
  margin-bottom: 5px;
  line-height: 1;
  font-family: 'Quicksand', sans-serif;
}

.form-top p{
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Trusted Badge */

.form-badge{
  display: inline-block;
  margin-top: 14px;
  padding: 7px 14px;
  background: rgba(6,23,68,0.06);
  color: #061744;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 2px solid #061744;
}

/* Input Fields */

.hero-form-box .form-control{
  height: 50px;
  border: none;
  border-bottom: 1px solid #dcdcdc;
  background: #f8f9fb;
  color: #061744;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0;
  box-shadow: none;
  transition: 0.3s;
}

/* Placeholder */

.hero-form-box .form-control::placeholder{
  color: #888;
}

/* Focus */

.hero-form-box .form-control:focus{
  background: #ffffff;
  border-bottom-color: #061744;
  box-shadow: none;
}

/* Button */

.form-btn{
  background: #061744;
  color: #fff;
  border: none;
  border-radius: 0;
  height: 46px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.form-btn:hover{
  background: #000;
  color: #fff;
}

/* Responsive */

@media (max-width: 767px){

  .hero-form-box{
    padding: 24px 20px;
  }

  .hero-form-box h3{
    font-size: 24px;
  }

  .hero-form-box .form-control{
    height: 46px;
    font-size: 12px;
  }

  .form-btn{
    width: 100%;
    height: 44px;
    font-size: 12px;
  }

}

/* ===================================
   STATS BOXES
=================================== */
/* ===================================
   MODERN IMAGE STATS CARDS
=================================== */

.stats-row{
  margin-top: 18px;
}

/* Card */

.stats-box{
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #061744;
}

/* Background Image */

.stats-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Overlay */

.stats-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,23,68,0.96) 15%,
    rgba(6,23,68,0.55) 55%,
    rgba(6,23,68,0.20) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: 0.3s;
}

/* Hover */

.stats-box:hover img{
  transform: scale(1.08);
}

.stats-box:hover .stats-overlay{
  background: linear-gradient(
    to top,
    rgba(6,23,68,0.98) 10%,
    rgba(6,23,68,0.60) 55%,
    rgba(6,23,68,0.18) 100%
  );
}

/* Number */

.stats-overlay h2{
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Quicksand', sans-serif;
}

/* Text */

.stats-overlay p{
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Mobile */

@media (max-width: 767px){

  .stats-box{
    height: 140px;
  }

  .stats-overlay{
    padding: 12px;
  }

  .stats-overlay h2{
    font-size: 22px;
  }

  .stats-overlay p{
    font-size: 8px;
    letter-spacing: 0.3px;
  }

}



/* ===================================
   MOBILE RESPONSIVE
   MAX WIDTH 768PX
=================================== */

@media (max-width: 768px){

  /* Hero Section */

  .hero-section{
    padding: 115px 0 55px;
    text-align: center;
    background-position: center;
  }

  /* Left Content */

  .hero-content{
    max-width: 100%;
    margin-bottom: 10px;
  }

  .hero-location{
    font-size: 10px;
    padding: 8px 14px;
    margin-bottom: 16px;
    letter-spacing: 0.6px;
  }

  .hero-content h1{
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: 0;
  }

  .hero-content p{
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 100%;
  }

  /* Buttons */

  .hero-btn-group{
    justify-content: center;
    gap: 10px;
  }

  .hero-btn,
  .hero-outline-btn{
    width: 100%;
    padding: 12px 18px;
    font-size: 13px;
  }

  /* Form */

  .hero-right-wrapper{
    max-width: 100%;
    margin-top: 10px;
  }

  .hero-form-box{
    padding: 22px 18px;
  }

  .hero-form-box h3{
    font-size: 24px;
  }

  .form-top{
    margin-bottom: 18px;
  }

  .form-top p{
    font-size: 12px;
  }

  .form-badge{
    margin-top: 10px;
    font-size: 9px;
    padding: 6px 10px;
  }

  .hero-form-box .form-control{
    height: 44px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .form-btn{
    width: 100%;
    height: 44px;
    font-size: 12px;
    margin-top: 4px;
  }

  /* Stats Cards */

  .stats-row{
    margin-top: 12px;
  }

  .stats-row .col-4{
    padding-left: 5px;
    padding-right: 5px;
  }

  .stats-box{
    height: 125px;
  }

  .stats-overlay{
    padding: 10px;
  }

  .stats-overlay h2{
    font-size: 20px;
    margin-bottom: 5px;
  }

  .stats-overlay p{
    font-size: 7px;
    line-height: 1.4;
    letter-spacing: 0.3px;
  }

  /* WhatsApp */

  .whatsapp-float{
    width: 52px;
    height: 52px;
    font-size: 26px;
    right: 16px;
    bottom: 16px;
  }

}


/* ===================================
   WHATSAPP FLOAT
=================================== */

.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(37,211,102,0.35);
  transition: 0.3s ease;
}

.whatsapp-float:hover{
  color: #fff;
  transform: translateY(-4px);
}

.whatsapp-float::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  z-index: -1;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

  0%{
    transform: scale(1);
    opacity: 0.7;
  }

  70%{
    transform: scale(1.5);
    opacity: 0;
  }

  100%{
    opacity: 0;
  }

}






/* ===================================
   FEATURES STRIP
=================================== */

.features-strip{
  background: #ffffff;
  padding: 22px 0;
  position: relative;
  z-index: 5;

  /* Bottom Shadow */
  box-shadow:
     0 18px 40px rgba(0,0,0,0.12),
  0 35px 70px rgba(0,0,0,0.10),
  0 55px 100px rgba(0,0,0,0.08);
}

/* Feature Item */

.feature-item{
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

/* Icon */

.feature-icon{
  min-width: 42px;
  width: 42px;
  height: 42px;
  background: #061744;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i{
  color: #fff;
  font-size: 16px;
}

/* Text */

.feature-item span{
  color: #061744;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 991px){

  .features-strip{
    padding: 18px 0;
  }

  .feature-item{
    gap: 10px;
  }

  .feature-item span{
    font-size: 13px;
  }

}

@media (max-width: 767px){

  .features-strip{
    padding: 16px 0;
  }

  .feature-item{
    align-items: flex-start;
  }

  .feature-icon{
    min-width: 38px;
    width: 38px;
    height: 38px;
  }

  .feature-icon i{
    font-size: 14px;
  }

  .feature-item span{
    font-size: 12px;
    line-height: 1.4;
  }

}





/* ===================================
   WHY SECTION
=================================== */
/* ===================================
   WHY SECTION
=================================== */

.why-section{
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
}

/* ===================================
   HEADING
=================================== */

.section-title{
  max-width: 760px;
  margin: 0 auto 50px;
}

.sub-heading{
  display: inline-block;
  background: rgba(6,23,68,0.05);
  border: 1px solid rgba(6,23,68,0.10);
  color: #061744;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title h2{
  color: #061744;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Quicksand', sans-serif;
}

.section-title p{
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

/* ===================================
   CARD
=================================== */

.why-card{
  background: #fff;
  border: 1px solid rgba(6,23,68,0.12);
  height: 100%;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(6,23,68,0.12);
}

/* ===================================
   IMAGE
=================================== */

.why-image{
  overflow: hidden;
}

.why-image img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.why-card:hover .why-image img{
  transform: scale(1.06);
}

/* ===================================
   CONTENT
=================================== */

.why-content{
  padding: 28px;
}

.why-content h3{
  color: #061744;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
  font-family: 'Quicksand', sans-serif;
}

.why-content p{
  color: #666;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 991px){

  .why-section{
    padding: 65px 0;
  }

  .section-title{
    margin-bottom: 40px;
  }

  .section-title h2{
    font-size: 38px;
  }

  .why-image img{
    height: 210px;
  }

}

@media (max-width: 767px){

  .why-section{
    padding: 50px 0;
  }

  .section-title{
    margin-bottom: 30px;
  }

  .section-title h2{
    font-size: 30px;
    line-height: 1.25;
  }

  .section-title p{
    font-size: 14px;
    line-height: 1.8;
  }

  .why-image img{
    height: 190px;
  }

  .why-content{
    padding: 24px 20px;
  }

  .why-content h3{
    font-size: 19px;
  }

  .why-content p{
    font-size: 14px;
    line-height: 1.8;
  }

}








/* ===================================
   FACILITIES SECTION
=================================== */
/* ===================================
   FACILITIES SECTION
=================================== */

.facilities-section{
  position: relative;
  padding: 90px 0;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(6,23,68,0.92),
      rgba(6,23,68,0.92)
    ),
    url("images/10.jpg");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Overlay */

.facilities-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.20);
  z-index: 1;
}

/* Container */

.facilities-section .container{
  position: relative;
  z-index: 2;
}

/* ===================================
   HEADING
=================================== */

.facilities-heading{
  max-width: 720px;
  margin-bottom: 45px;
}

.facilities-subtitle{
  display: inline-block;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.facilities-heading h2{
  color: #fff;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Quicksand', sans-serif;
}

.facilities-heading p{
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

/* ===================================
   TABS
=================================== */

.facilities-tabs{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Tab Button */

.facility-tab{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.facility-tab i{
  margin-right: 7px;
}

/* Active */

.facility-tab.active{
  background: #ffffff;
  color: #061744;
}

/* Hover */

.facility-tab:hover{
  background: #ffffff;
  color: #061744;
}

/* ===================================
   TAB CONTENT
=================================== */

.facility-content{
  display: none;
}

.facility-content.active{
  display: block;
}

/* ===================================
   CARDS
=================================== */

.facility-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 30px 26px;
  height: 100%;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hover */

.facility-card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

/* ===================================
   ICON
=================================== */

.facility-icon{
  width: 58px;
  height: 58px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.facility-icon i{
  color: #061744;
  font-size: 24px;
}

/* ===================================
   CARD TITLE
=================================== */

.facility-card h3{
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Quicksand', sans-serif;
}

/* ===================================
   CARD TEXT
=================================== */

.facility-card p{
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 991px){

  .facilities-section{
    background-attachment: scroll;
    padding: 70px 0;
  }

  .facilities-heading{
    margin-bottom: 38px;
  }

  .facilities-heading h2{
    font-size: 44px;
  }

  .facilities-heading p{
    font-size: 15px;
  }

  .facility-card{
    padding: 26px 22px;
  }

}

@media (max-width: 767px){

  .facilities-section{
    padding: 55px 0;
  }

  .facilities-heading{
    margin-bottom: 30px;
  }

  .facilities-subtitle{
    font-size: 10px;
    padding: 7px 14px;
    margin-bottom: 14px;
  }

  .facilities-heading h2{
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .facilities-heading p{
    font-size: 14px;
    line-height: 1.8;
  }

  /* Tabs */

  .facilities-tabs{
    gap: 10px;
    margin-bottom: 28px;
  }

  .facility-tab{
    padding: 10px 16px;
    font-size: 12px;
  }

  .facility-tab i{
    margin-right: 5px;
  }

  /* Cards */

  .facility-card{
    padding: 24px 20px;
  }

  .facility-icon{
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .facility-icon i{
    font-size: 20px;
  }

  .facility-card h3{
    font-size: 18px;
    margin-bottom: 10px;
  }

  .facility-card p{
    font-size: 14px;
    line-height: 1.7;
  }

}







/* ===================================
   LOCATION SECTION
=================================== */
/* ===================================
   LOCATION SECTION
=================================== */

.location-section{
  background: #ffffff;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

/* ===================================
   IMAGE
=================================== */

.location-image{
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  height: 100%;
}

.location-image img{
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.location-image:hover img{
  transform: scale(1.04);
}

/* ===================================
   CONTENT
=================================== */

.location-content{
  padding-left: 8px;
}

/* Subtitle */

.location-subtitle{
  display: inline-block;
  background: rgba(6,23,68,0.05);
  border: 1px solid rgba(6,23,68,0.10);
  color: #061744;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Heading */

.location-content h2{
  color: #061744;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Quicksand', sans-serif;
}

/* Description */

.location-description{
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

/* ===================================
   INFO LIST
=================================== */

.location-info{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===================================
   ITEM
=================================== */

.location-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(6,23,68,0.08);
}

/* ===================================
   ICON
=================================== */

.location-icon{
  min-width: 46px;
  width: 46px;
  height: 46px;
  background: #061744;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(6,23,68,0.14);
}

.location-icon i{
  color: #fff;
  font-size: 18px;
}

/* ===================================
   TEXT
=================================== */

.location-text h3{
  color: #061744;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  font-family: 'Quicksand', sans-serif;
}

.location-text p{
  color: #666;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1199px){

  .location-image img{
    height: 520px;
  }

}

@media (max-width: 991px){

  .location-section{
    padding: 55px 0;
  }

  .location-image{
    margin-bottom: 10px;
  }

  .location-image img{
    height: 420px;
  }

  .location-content{
    padding-left: 0;
  }

  .location-content h2{
    font-size: 34px;
  }

}

@media (max-width: 767px){

  .location-section{
    padding: 45px 0;
  }

  .location-image img{
    height: 280px;
  }

  .location-subtitle{
    font-size: 9px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }

  .location-content h2{
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .location-description{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .location-info{
    gap: 10px;
  }

  .location-item{
    gap: 12px;
    padding-bottom: 14px;
  }

  .location-icon{
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .location-icon i{
    font-size: 16px;
  }

  .location-text h3{
    font-size: 16px;
    margin-bottom: 5px;
  }

  .location-text p{
    font-size: 13px;
    line-height: 1.7;
  }

}








/* ===================================
   MEALS SECTION
=================================== */
/* ===================================
   MEALS SECTION
=================================== */

.meals-section{
  background: #ffffff;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

/* ===================================
   CONTENT
=================================== */

.meals-content{
  padding-right: 8px;
}

/* Subtitle */

.meals-subtitle{
  display: inline-block;
  background: rgba(6,23,68,0.05);
  border: 1px solid rgba(6,23,68,0.10);
  color: #061744;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Heading */

.meals-content h2{
  color: #061744;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Quicksand', sans-serif;
}

/* Description */

.meals-description{
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

/* ===================================
   MEAL POINTS
=================================== */

.meal-points{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===================================
   ITEM
=================================== */

.meal-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(6,23,68,0.08);
}

/* ===================================
   ICON
=================================== */

.meal-icon{
  min-width: 46px;
  width: 46px;
  height: 46px;
  background: #061744;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(6,23,68,0.14);
}

.meal-icon i{
  color: #fff;
  font-size: 18px;
}

/* ===================================
   TEXT
=================================== */

.meal-text h3{
  color: #061744;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  font-family: 'Quicksand', sans-serif;
}

.meal-text p{
  color: #666;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* ===================================
   IMAGE
=================================== */

.meals-image{
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  height: 100%;
}

.meals-image img{
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.meals-image:hover img{
  transform: scale(1.04);
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1199px){

  .meals-image img{
    height: 520px;
  }

}

@media (max-width: 991px){

  .meals-section{
    padding: 55px 0;
  }

  .meals-content{
    padding-right: 0;
  }

  .meals-content h2{
    font-size: 34px;
  }

  .meals-image{
    margin-top: 10px;
  }

  .meals-image img{
    height: 420px;
  }

}

@media (max-width: 767px){

  .meals-section{
    padding: 45px 0;
  }

  .meals-subtitle{
    font-size: 9px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }

  .meals-content h2{
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .meals-description{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .meal-points{
    gap: 10px;
  }

  .meal-item{
    gap: 12px;
    padding-bottom: 14px;
  }

  .meal-icon{
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .meal-icon i{
    font-size: 16px;
  }

  .meal-text h3{
    font-size: 16px;
    margin-bottom: 5px;
  }

  .meal-text p{
    font-size: 13px;
    line-height: 1.7;
  }

  .meals-image img{
    height: 280px;
  }

}







/* ===================================
   TESTIMONIAL SECTION
=================================== */

.testimonial-section{
  background: #ffffff;
  padding: 30px 0;
  overflow: hidden;
}

/* Heading */

.testimonial-heading{
  max-width: 700px;
  margin: 0 auto 45px;
}

.testimonial-subtitle{
  display: inline-block;
  background: rgba(6,23,68,0.05);
  border: 1px solid rgba(6,23,68,0.08);
  color: #061744;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.testimonial-heading h2{
  color: #061744;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Quicksand', sans-serif;
}

.testimonial-heading p{
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ===================================
   SLIDER
=================================== */

.testimonial-slider{
  overflow: hidden;
  position: relative;
}

/* Track */

.testimonial-track{
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollTestimonials 30s linear infinite;
}

/* Auto Scroll */

@keyframes scrollTestimonials{

  0%{
    transform: translateX(0);
  }

  100%{
    transform: translateX(-50%);
  }

}

/* ===================================
   BOX
=================================== */

.testimonial-box{
  width: 380px;
  background: #061744;
  padding: 30px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Quote */

.testimonial-box::before{
  content: "”";
  position: absolute;
  top: -18px;
  right: 18px;
  color: rgba(255,255,255,0.08);
  font-size: 110px;
  line-height: 1;
  font-family: serif;
}

/* Stars */

.testimonial-stars{
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

/* Text */

.testimonial-box p{
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* User */

.testimonial-user{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Avatar */

.testimonial-avatar{
  width: 48px;
  height: 48px;
  background: #fff;
  color: #061744;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
}

/* Name */

.testimonial-user h3{
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: 'Quicksand', sans-serif;
}

.testimonial-user span{
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}

/* Pause On Hover */

.testimonial-slider:hover .testimonial-track{
  animation-play-state: paused;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 767px){

  .testimonial-section{
    padding: 55px 0;
  }

  .testimonial-heading{
    margin-bottom: 30px;
  }

  .testimonial-heading h2{
    font-size: 30px;
    line-height: 1.2;
  }

  .testimonial-heading p{
    font-size: 14px;
  }

  .testimonial-track{
    gap: 16px;
  }

  .testimonial-box{
    width: 290px;
    padding: 24px 20px;
  }

  .testimonial-box p{
    font-size: 14px;
    line-height: 1.8;
  }

  .testimonial-avatar{
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .testimonial-user h3{
    font-size: 15px;
  }

}









/* ===================================
   TRUST SECTION
=================================== */

.trust-section{
  background: #061744;
  padding: 85px 0;
  overflow: hidden;
}

/* ===================================
   HEADING
=================================== */

.trust-heading{
  max-width: 760px;
  margin: 0 auto 55px;
}

.trust-subtitle{
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.trust-heading h2{
  color: #fff;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Quicksand', sans-serif;
}

.trust-heading p{
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ===================================
   ROW
=================================== */

.trust-row{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ===================================
   ITEM
=================================== */

.trust-item{
  width: 16.66%;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.no-border{
  border-right: none;
}

/* ===================================
   ICON
=================================== */

.trust-icon{
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.trust-icon i{
  color: #fff;
  font-size: 22px;
}

/* ===================================
   TEXT
=================================== */

.trust-item h3{
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Quicksand', sans-serif;
}

.trust-item p{
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1199px){

  .trust-row{
    row-gap: 40px;
  }

  .trust-item{
    width: 33.33%;
    border-right: none;
  }

}

@media (max-width: 767px){

  .trust-section{
    padding: 55px 0;
  }

  .trust-heading{
    margin-bottom: 40px;
  }

  .trust-heading h2{
    font-size: 30px;
    line-height: 1.2;
  }

  .trust-heading p{
    font-size: 14px;
  }

  .trust-row{
    row-gap: 32px;
  }

  .trust-item{
    width: 50%;
    padding: 0 12px;
  }

  .trust-icon{
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .trust-icon i{
    font-size: 18px;
  }

  .trust-item h3{
    font-size: 16px;
  }

  .trust-item p{
    font-size: 12px;
    line-height: 1.7;
  }

}

/* ===================================
   FAQ SECTION
=================================== */

.faq-section{
  background: #ffffff;
  padding: 85px 0;
}

/* Heading */

.faq-heading{
  max-width: 760px;
  margin: 0 auto 45px;
}

.faq-subtitle{
  display: inline-block;
  background: rgba(6,23,68,0.05);
  border: 1px solid rgba(6,23,68,0.08);
  color: #061744;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq-heading h2{
  color: #061744;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Quicksand', sans-serif;
}

.faq-heading p{
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* Accordion */

.custom-faq{
  max-width: 950px;
  margin: auto;
}

.custom-faq .accordion-item{
  border: 1px solid rgba(6,23,68,0.08);
  margin-bottom: 16px;
  overflow: hidden;
}

.custom-faq .accordion-button{
  background: #fff;
  color: #061744;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 24px;
  box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed){
  background: #061744;
  color: #fff;
}

.custom-faq .accordion-button::after{
  filter: brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after{
  filter: brightness(0) invert(1);
}

.custom-faq .accordion-body{
  color: #666;
  font-size: 15px;
  line-height: 1.9;
  padding: 24px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 767px){

  .trusted-section,
  .faq-section{
    padding: 55px 0;
  }

  .trusted-heading,
  .faq-heading{
    margin-bottom: 30px;
  }

  .trusted-heading h2,
  .faq-heading h2{
    font-size: 30px;
    line-height: 1.2;
  }

  .trusted-card{
    padding: 24px 20px;
  }

  .trusted-card h3{
    font-size: 18px;
  }

  .trusted-card p{
    font-size: 13px;
  }

  .custom-faq .accordion-button{
    font-size: 14px;
    padding: 18px;
  }

  .custom-faq .accordion-body{
    font-size: 14px;
    padding: 18px;
  }

}







/* ===================================
   MINIMAL BLACK FOOTER
=================================== */

.footer-section{
  background: #000;
  padding: 38px 0 24px;
  text-align: center;
  overflow: hidden;
}

/* ===================================
   LOGO
=================================== */

.footer-logo{
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img{
  height: 42px;
}

/* ===================================
   CONTACT
=================================== */

.footer-contact-list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-contact-list a{
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
}

.footer-contact-list a:hover{
  opacity: 0.75;
}

/* ===================================
   ADDRESS
=================================== */

.footer-address{
  margin-bottom: 18px;
}

.footer-address h3{
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Quicksand', sans-serif;
}

.footer-address p{
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

/* ===================================
   LINKS
=================================== */

.footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-links a{
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-links a:hover{
  color: #fff;
}

/* ===================================
   COPYRIGHT
=================================== */

.footer-copy{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 767px){

  .footer-section{
    padding: 32px 0 20px;
  }

  .footer-logo img{
    height: 38px;
  }

  .footer-contact-list{
    gap: 14px;
  }

  .footer-contact-list a{
    font-size: 17px;
  }

  .footer-address h3{
    font-size: 16px;
  }

  .footer-address p{
    font-size: 12px;
  }

  .footer-links{
    gap: 12px;
  }

  .footer-links a{
    font-size: 12px;
  }

  .footer-copy{
    font-size: 11px;
    line-height: 1.7;
  }

}