/*
Theme Name: YuthLogistic
Theme URI: https://yuth.lakshan.intern.domedia.lk/
Author: : Lalshan
Author URI: https://yuth.lakshan.intern.domedia.lk/
Description: Theme is for the website that created for the first learnign project at am intern
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yuthlogistic
*/

/* Thin / ExtraLight */
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/gilroy/Gilroy-Thin.woff2') format('woff2'),
       url('fonts/gilroy/Gilroy-UltraLight.woff2') format('woff2');
  font-weight: 100 200;
  font-style: normal;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/gilroy/Gilroy-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular / Medium */
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/gilroy/Gilroy-Regular.woff2') format('woff2'),
       url('fonts/gilroy/Gilroy-Medium.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

/* SemiBold */
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/gilroy/Gilroy-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/gilroy/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ExtraBold / Heavy */
@font-face {
  font-family: 'Gilroy';
  src: url('fonts/gilroy/Gilroy-ExtraBold.woff2') format('woff2'),
       url('fonts/gilroy/Gilroy-Heavy.woff2') format('woff2');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

:root {
  --colour-pure-white: #ffffff;
  --colour-secondary-bg: #ffffff;
  --colour-third-bg: #11101d;
  --colour-pinky-red: #f75353;
  --colour-pinky-redV2: #ef3a3a;
  --button-hover-color: #a50f0f;
  --font-colour: #444444;
  --font-main: "Heebo", sans-serif;
  --font-secondary-colour: #ffffff;
}

body {
  font-family: var(--font-main);
  max-width: 1980px !important;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}

body.fade-out {
  opacity: 0;
  transition: opacity 10s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

.body-wrap {
  overflow-x: hidden;
  top: 0;
}

.container {
  max-width: 1200px;
  background-color: transparent;
  margin: 0 auto;
  text-align: center;
}


.section-gap {
  padding: 100px 0;
}

/* Navbar.css >>> assets / navbar.css */

/* ==================================================================== 
   =                                                                  =
   =                              Home Page                           =
   =                                                                  =
   ====================================================================  */

/* -------------------------------------------------------------Hero Section------------------------------------------------ */
/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 100px;
  box-sizing: border-box;
  width: 100%;
}

.landing-section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.landing-section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

/* Blur Overlay */
.blur-overlay {
  position: absolute;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none; /* ensures overlay does not block clicks */
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}


.hero-content {
  max-width: 680px;
  color: #ffffff;
  text-align: left;
}

.hero-content h1 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 66px;
  margin-bottom: 1rem;
}

.hero-content p {
  font-weight: 300;
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-weight: 600;
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 1rem;
}

/*------------------Services Section Style-------------------------*/

.home-services-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.home-services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background image */
}

.home-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
  /* overlay above image */
}

.home-services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-class-wrapper {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-card-link {
  text-decoration: none;
  display: block;
}

.service-card-link:hover h3,
.service-card-link:hover p,
.service-card-link:last-child :hover p {
  color: var(--colour-pinky-redV2);
}

.home-services-title {
  font-size: 29px;
  font-weight: 400;
  line-height: 41px;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.home-service-header {
  font-family: 'Gilroy', sans-serif;
  font-size: 57px;
  font-weight: 800;
  line-height: 63px;
  color: #ffffff;
  margin-bottom: 40px;
}

/* .item {
  padding: 0 15px;
} */

.service-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
  height: 390px;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card-above-section {
  position: relative;
  height: 120px;
  margin-bottom: 24px;
}

.faded-icon {
  width: 120px;
  height: 120px;
  background: url('assets/icon-sprite.png') no-repeat;
  background-size: 900px 780px;
  position: absolute;
  transition: all 0.3s ease;
  filter: invert(45%) sepia(89%) saturate(2574%) hue-rotate(338deg) brightness(98%) contrast(93%);
}

.main-icon {
  width: 150px;
  height: 130px;
  background: url('assets/icon-sprite.png') no-repeat;
  background-size: 840px 720px;
  position: absolute;
  transition: all 0.3s ease;
  filter: invert(45%) sepia(89%) saturate(2574%) hue-rotate(338deg) brightness(98%) contrast(93%);
}


.faded-icon {
  opacity: 0.12;
  top: 20px;
  right: 0;
  transform: scale(1.8);
}

.main-icon {
  top: 0;
  left: 0;
}

.service-btn {
  margin-top: 4%;
  display: none;
}

/* Card 1 - Container Truck Icon (Top Left) */
.faded-icon.card1 {
  background-position: -566px -62px;
}

.main-icon.card1 {
  background-position: -525px -9px;
}

/* Card 2 - Fast Delivery Truck (Top Row, 2nd) */
.faded-icon.card2 {
  background-position: -182px -462px;
}

.main-icon.card2 {
  background-position: -168px -382px;
}

/* Card 3 - Package Delivery Truck (Top Row, 3rd) */
.faded-icon.card3 {
  background-position: -184px -48px;
}

.main-icon.card3 {
  background-position: -170px 0;
}

/* Card 4 - Pallet Transport (Middle Row, 2nd) */
.faded-icon.card4 {
  background-position: -377px -462px;
}

.main-icon.card4 {
  background-position: -348px -382px;
}

/* Card 5 - Point A to B Transport (Top Row, 5th) */
.faded-icon.card5 {
  background-position: -719px -57px;
}

.main-icon.card5 {
  background-position: -683px 0;
}

.service-card-content {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-family: 'Gilroy', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--font-colour);
  margin-bottom: 16px;
  transition: color 0.3s ease;
  line-height: 30px;
}

.service-card p {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 300;
  color: var(--font-colour);
  transition: color 0.3s ease;
  line-height: 1.6;
}

.service-card p:last-child {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.2;
  color: var(--font-colour);
  margin-bottom: 0;
  margin-top: 8px;
}


.relative {
  position: relative;
}

/* .owl-item {
  padding: 10px;
} */

/* Owl Carousel Navigation */
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  pointer-events: all;
  background-color: var(--colour-third-bg) !important;
  border: 3px solid var(--colour-pure-white) !important;
  color: white !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease !important;
  font-size: 34px !important;
  margin: -10px -30px !important;

}

.owl-nav button.owl-prev i,
.owl-nav button.owl-next i {
  color: white;
  font-size: 20px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background-color: #374151 !important;
}


/* Owl Carousel Dots */
.owl-theme .owl-dots {
  display: flex !important;
  justify-content: center;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  margin-top: 20px !important;
}

.owl-theme .owl-dots .owl-dot {
  flex: 0 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #ffffff !important;
}

/*-----------------------------------------------------------------------About Us Style------------------------------------------------------------------------------*/

.about-us-section {
  width: 100%;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* About us Left side */
.about-left-side-container {
  border-radius: 30px;
  min-width: 300px;
  overflow: hidden;
}

.about-image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.about-image-container {
  margin: 0 auto;
  background-size: cover;
}

/* About us right side */
.about-right-side-container {
  text-align: left;
  padding: 1%;
}

/* Responsive sizing for About section columns */
.about-us-section .container {
  gap: 40px;
}

.about-left-side-container {
  flex: 1 1 48%;
  max-width: 560px;
}

.about-right-side-container {
  flex: 1 1 52%;
}


.about-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

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

.about-right-name {
  color: #282828;
  font-size: 29px;
  font-weight: 400;
  line-height: 41px;
  padding-bottom: 10px;
}

.about-right-header {
  color: #282828;
  font-size: 57px;
  font-weight: 800;
  line-height: 63px;
  padding-bottom: 20px;

}

.about-right-content {
  color: #646464;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 20px;
}

.about-left-side-header {
  font-family: 'Gilroy', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 36px;
  margin: 0;
  color: #fff;
  padding: 10px;
  text-align: left;

}

.about-left-side-details {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #222;
}

.about-foundedY {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background-color: #f74949;
  color: #ffffff;
  padding: 20px;
  height: auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 8px;


}

.readmore-btn {
  display: inline-block;
  background-color: var(--colour-pinky-redV2);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;

}

/*--------------------------------------------------------------------------------Choose US Section Style------------------------------------------------------------*/
.why-choose-us {
  width: 100%;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* center content horizontally */
  overflow: hidden;
  /* ensures the background picture doesn't overflow */
}

.why-choose-us-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* behind the content */
  overflow: hidden;
}

.why-choose-us-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.why-choose-us-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  box-sizing: border-box;
}


/* Why Choose Us Section Typography */
.why-choose-us .subtitle {
  font-size: 29px;
  font-weight: 400;
  line-height: 41px;
  margin-bottom: 8px;
}

.why-choose-us .subtitle-header {
  font-family: 'Gilroy', sans-serif;
  font-size: 57px;
  font-weight: 800;
  line-height: 63px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 500px;
}

.features-grid {
  display: grid;
  margin-top: 5%;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 45px;
  width: 100%;
  max-width: 550px;
}

.feature-item {
  background-color: #ffffff;
  color: #333;
  padding: 50px 20px 20px 20px;
  border-radius: 30px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 280px;
}

.feature-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.features-grid .icon-circle {
  width: 84px;
  height: 84px;
  background-color: #282828;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  position: absolute;
  top: -50px;
  left: 10%;
  overflow: visible;
}


.features-grid .icon-circle::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  background-color: var(--colour-pinky-redV2);
  border-radius: 50%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.features-grid .icon-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  -webkit-mask-image: url('assets/icon-sprite.png');
  mask-image: url('assets/icon-sprite.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 270px 250px;
  mask-size: 350px 280px;
  -webkit-mask-position: var(--mask-pos-desktop);
  mask-position: var(--mask-pos-desktop);
}

.feature-item h3 {
  font-family: 'Gilroy', sans-serif;
  font-size: 25PX;
  margin: 0 0 5px 0;
  color: #282828;
  font-weight: 800;
  line-height: 25px;
}

.feature-item p {
  font-size: 19px;
  font-weight: 500;
  color: #6c757d;
  margin: 0;
  line-height: 23px;
}

/*------------------ Blog Section Style -------------------------*/
.blog-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;

}

.blog-section .subtitle {
  color: #282828;
  font-size: 29px;
  font-weight: 400;
  line-height: 41px;
  margin-bottom: 8px;
}


.subtitle-header-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;

}

.blog-section h2 {
  font-family: 'Gilroy', sans-serif;
  color: #282828;
  font-size: 57px;
  font-weight: 800;
  line-height: 63px;
  margin-bottom: 40px;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 10px;


}

.blog-cards .owl-item {
  height: 500px;
}

.blog-section .owl-theme .owl-dots .owl-dot span {
  border-color: #282828;

}

.blog-section .owl-theme .owl-dots .owl-dot.active span {
  background: #282828 !important;
  border-color: #282828;
}

.blog-card {
  background: #ffffff;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 450px;
}

.blog-card:hover {
  transition: color 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  padding: 20px;
  text-align: left;
}

.blog-card-link {
  text-decoration: none;
}

.blog-card-content h3 {
  font-family: 'Gilroy', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 29px;
  color: #13151a;
  margin-bottom: 10px;
}

.blog-card-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  color: #13151a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-link:hover h3,
.blog-card-link:hover p {
  transition: color 0.3s ease;
  color: #ff3932;
}


.menu-item.current-menu-item>a,
.menu-item.current_page_item>a {
  color: #ff3932;
  font-weight: 600;
}

/* ==================================================================== 
   =                                                                  =
   =                           About Us Page                          =
   =                                                                  =
   ====================================================================  */
.about-us-container {
  padding: 60px 0;
  margin: 0 auto;
}

.about-us-above-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}


.about-us-img-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.about-us-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-us-img-container:hover .about-us-img {
  transform: scale(1.05);
}


.about-us-above-content {
  flex: 1;
  text-align: left;
}

.about-us-container h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: #282828;
  margin-bottom: 20px;
  position: relative;
}


.about-us-container p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #646464;
  margin-top: 20px;
}

.about-us-below-content p {
  text-align: left;
}

.about-us-below-section {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0 auto;
}

.about-us-below-section p {
  margin-bottom: 50px;
}

.about-us-services-title {
  font-size: 29px;
  line-height: 41px;
  font-weight: 400;
  color: #282828;
}

.about-us-services-header {
  color: #282828;
  font-size: 57px;
  line-height: 63px;
  font-weight: 800;
  margin-bottom: 8px;
  margin-bottom: 40px;
}


.about-us-container .services-class-wrapper .owl-theme .owl-dots .owl-dot span {
  border: 2px solid #333333;
  background: transparent;
}

.about-us-container .services-class-wrapper .owl-theme .owl-dots .owl-dot.active span {
  background: #333333;
}


.about-us-container .services-class-wrapper .owl-theme .owl-dots .owl-dot.active span {
  background: #333333 !important;
  border-color: #333333 !important;
}

.about-us-below-section-c2 {
  margin: 50px 0;
}

@media (max-width: 992px) {
  .about-us-above-section {
    flex-direction: column;
    text-align: center;
  }

  .about-us-above-content p {
    margin-top: 10px;
  }

  .about-us-img {
    max-height: 400px;
  }

  .about-us-services-title {

    font-size: 23px;
    line-height: 33px;

  }

  .about-us-services-title {
    font-size: 26px;
    line-height: 37px;
  }

  .about-us-services-header {
    font-size: 50px;
    line-height: 55px;
  }
}

@media(max-width:768px) {
  .about-us-container {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .about-us-above-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .about-us-above-content p {
    font-size: 16px;
    line-height: 24px;
  }

  .about-us-img {
    max-height: 300px;
  }

  .about-us-services-title {
    font-size: 17px;
    line-height: 24px;
  }

  .about-us-services-header {
    font-size: 31px;
    line-height: 34px;
  }

  .about-us-below-section-c2 {
    margin: 0;
  }
}

/* ==================================================================== 
   =                                                                  =
   =                              FAQ Page                            =
   =                                                                  =
   ====================================================================  */

.question-answer-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 0;
}

.question-answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.question-mark {
  width: 15px;
  display: flex;
  top: 0;
  margin-right: 10px;
}

.question-mark i {
  font-size: 20px;
  line-height: 34px;
  color: #282828;
}

.question-answer-container h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #282828;
  margin-bottom: 10px;
}

.question-answer-container p {
  font-size: 15px;
  line-height: 23px;
  color: #646464;
  margin: 0;
}

@media(max-width:767px) {
  .question-mark i {
    font-size: 20px;
    line-height: 26px;

  }

  .question-answer-container h3 {
    font-size: 22px;
    line-height: 26px;

  }


  .question-answer-container p {
    font-size: 15px;
    line-height: 23px;
  }
}

/* ==================================================================== 
   =                                                                  =
   =                         Privacy-Policy Page                      =
   =                                                                  =
   ====================================================================  */

.privacy-policy-section {
  padding: 60px 0 30px 0;
  text-align: left;

}

.privacy-policy-container {
  margin-bottom: 30px;
}

.privacy-policy-section h1 {
  font-size: 30px;
  line-height: 33px;
  font-weight: 500;
  color: #646464;
  margin-bottom: 10px;

}

.privacy-policy-section p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  color: #646464;
  margin-bottom: 8px;

}

@media(max-width:767px) {

  .privacy-policy-section h1 {
    font-size: 22px;
    line-height: 26px;

  }


  .privacy-policy-section p {
    font-size: 15px;
    line-height: 23px;
  }

  .privacy-policy-section {
    padding: 40px 0 0 0;
    text-align: left;

  }

}

/* ==================================================================== 
   =                                                                  =
   =                             Blog Page                            =
   =                                                                  =
   ====================================================================  */

.blog-list {
  padding: 60px 20px;
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  border: 2px solid #83838362;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-container:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.image-container {
  flex: 1 1 200px;
  max-width: 300px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;

}

.content-container {
  flex: 2 1 400px;
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  text-align: left;


}

.blog-h {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.blog-h a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-p {
  font-size: 16px;
  line-height: 24px;
  color: #555;
  margin-bottom: 15px;
}

.readmore a {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-h :hover {
  color: var(--colour-pinky-redV2);
}

.readmore a:hover {
  color: var(--colour-pinky-redV2);
}

.readmore a i {
  transition: transform 0.3s ease-in-out;
}

.readmore a:hover i {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .blog-list {
    max-width: 80%;

  }
}

@media (max-width: 982px) {
  .blog-list {
    max-width: 100%;
  }

  .blog-container {
    gap: 30px;
  }

  .blog-page {
    margin-top: 0;
  }

}

@media (max-width: 767px) {

  .blog-list {
    padding: 30px 20px 0 20px;
  }

  .blog-container {
    flex-direction: column;
    height: 400px;

  }

  .image-container {
    max-width: 100%;
    height: 200px;
  }

  .blog-image {
    height: 100%;
  }

  .content-container {
    padding: 15px;
  }

  .blog-h {
    font-size: 21px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .blog-h a {
    text-decoration: none;
    color: inherit;
  }

  .blog-p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}

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

/* ==================================================================== 
   =                                                                  =
   =                         Single Blog Page                         =
   =                                                                  =
   ====================================================================  */

.single-blog-container {
  display: flex;
  gap: 10PX;
  padding: 60px 0;
}

.single-blog-title {
  font-family: 'Gilroy', sans-serif;
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;

}

.single-blog-content {
  text-align: left;
}

/* Post Date  */
.post-date {
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: #231f20;
  margin-bottom: 10px;
}

.intro-text {
  font-size: 15px;
  line-height: 29px;
  font-weight: 400;
  color: #231f20;
  margin: 10px 0;
}

.single-blog-content h1 {
  font-size: 30px;
  line-height: 33px;
  font-weight: 500;
  color: #646464;
  margin: 50px 0 20px 0;
}


.single-blog-content h2 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  margin: 10px 0;
}


.single-blog-content p {
  font-size: 15px;
  line-height: 29px;
  font-weight: 400;
  margin-bottom: 10px;
}


.single-blog-content ul li {
  margin: 10px 0 0 50px;
}

.single-blog-content ol li {
  margin: 0 0 0 20px;
}

/* Latest News and Search Bar Section */
.sidebar {
  flex: 1 1 200px;
  height: fit-content;
}

.search-bar {
  display: flex;
  margin-bottom: 30px;
  border: 2px solid #222;
}

.search-bar input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.search-bar button {
  border: none;
  padding: 0 1rem;
  cursor: pointer;
}


.latest-news {
  text-align: left;
}

.latest-news h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #646464;
  border-bottom: 2px solid #646464;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.latest-news ul {
  list-style: none;
}

.latest-news li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #ccc;
}

.latest-news a {
  text-decoration: none;
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  color: #6464649f;
  transition: 0.2s ease;
}

.latest-news a:hover {
  color: #231f20;
}

@media (max-width: 992px) {
  .single-blog-page {
    padding-top: 60px;
  }


}

@media (max-width: 768px) {
  .single-blog-container {
    flex-direction: column;
    padding: 40px 0;
  }

  .sidebar {
    width: 100%;
    margin-top: 20px;
  }

  .single-blog-title {
    font-size: 30px;
    line-height: 39px;
    font-weight: 700;

  }
}

/* ==================================================================== 
   =                                                                  =
   =                         Footer Section Page                      =
   =                                                                  =
   ====================================================================  */

.site-footer {
  background: #ffffff;

}

.footer-container {
  max-width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  overflow: hidden;
}

.footer-title-container-wrapper {
  text-align: center;
  margin: 0 0 -35PX 0;
  z-index: 999;


}

.footer-bottom-section {
  padding: 30px 0;
}

.footer-title-container {
  display: inline-block;
  padding: 10px;
  background-color: var(--colour-pure-white);
}

.footer-title {
  font-family: 'Gilroy', sans-serif;
  text-align: center;
  font-size: 50px;
  line-height: 55px;
  font-weight: 800;
  color: #282828;
}

.footer-content {
  position: relative;
  background: none;
  background-size: cover;
  width: 100%;
  height: 500px;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-bg-picture,
.footer-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



.footer-content-wrapper {
  color: #ffffff;
  text-align: left;
  width: 100%;
  position: relative;
  z-index: 1;

}

.footer-content-header {
  font-family: 'Gilroy', sans-serif;
  line-height: 58px;
  font-size: 58px;
  font-weight: 600;
  max-width: 540px;

}

.footer-content-para {
  line-height: 35px;
  font-size: 25px;
  font-weight: 300;
}

.contact-btn {
  background-color: var(--colour-pinky-redV2);
  margin-top: 10px;
  padding: 10px 20px;
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 400;
  color: #ffffff;
  border-radius: 50px;
}

.contact-btn:hover {
  background-color: rgba(239, 58, 58, 0.769);
}


.footer-contact .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border: 2px solid #ef6b6b;
  border-radius: 999px;
  padding: 29px 28px;
  width: 100%;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #222;
}

.contact-pill .icon-circle {
  width: 40px;
  height: 40px;
  border: 2px solid var(--colour-pinky-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colour-pinky-red);
  font-size: 18px;
}

.contact-pill.is-static {
  cursor: default;
}



.pill-text {
  font-size: 22px;
  line-height: 29px;
  font-weight: 300;
}

.footer-nav {
  margin-top: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 28px;
  justify-content: center;
  padding: 0;
  margin: 12px 0 0 0;
}

.footer-links a {
  font-size: 19px;
  line-height: 27px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.footer-links a.active {
  color: red;
  font-weight: bold;
}

.footer-bottom {
  background: #d8a3a1;
  margin-top: 18px;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.do-media-credit-before {
  padding-left: 4px;
  border-left: 2px solid #242424;

}

.copyright-text {
  display: flex;
  align-items: center;
}

.do-media-credit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.do-badge {
  background: #111;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
}

.do-name a {
  color: #282828;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-bottom-logo {
  height: 20px;
  width: auto;
}

.footer-links li a:hover {
  color: var(--colour-pinky-red);

}

/*------------------------------------------------------- Booking Form ------------------------------------------------- */
.booking-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.booking-container {
  position: relative;
  background: #111;
  padding: 40px 30px;
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  color: #fff;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

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

.booking-above-container {
  text-align: center;
  margin-bottom: 30px;
}

.booking-above-container h4 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  color: var(--colour-pure-white);
  margin-bottom: 10px;
}

.booking-above-container h2 {
  font-size: 60px;
  line-height: 66px;
  font-weight: 800;
  font-family: 'Gilroy', sans-serif;
  margin: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}


#cf7-booking-form .wpcf7-form {
  display: grid;
  gap: 20px;
}


#cf7-booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}


#cf7-booking-form .form-row-full {
  display: grid;
  grid-template-columns: 1fr;
}


#cf7-booking-form .wpcf7-form p {
  margin: 0;
}


#cf7-booking-form input[type="text"],
#cf7-booking-form input[type="email"],
#cf7-booking-form input[type="tel"],
#cf7-booking-form select,
#cf7-booking-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-family: inherit;
  transition: all 0.3s;
  box-sizing: border-box;
}

#cf7-booking-form input:focus,
#cf7-booking-form select:focus,
#cf7-booking-form textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 2px #f15b5b;
}

/* Placeholder styles */
#cf7-booking-form input::placeholder,
#cf7-booking-form textarea::placeholder {
  color: #999;
}

/* Select dropdown styling */
#cf7-booking-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Textarea specific */
#cf7-booking-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Submit button */
#cf7-booking-form .wpcf7-submit,
#cf7-booking-form input[type="submit"] {
  width: 100%;
  background: #f15b5b;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  font-family: var(--font-main);
}

#cf7-booking-form .wpcf7-submit:hover {
  background: #e04d4d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(241, 91, 91, 0.3);
}

/* Loading spinner */
#cf7-booking-form .wpcf7-spinner {
  display: none;
}

/* Validation errors */
#cf7-booking-form .wpcf7-not-valid {
  border: 1px solid #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
}

#cf7-booking-form .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

/* Response messages */
#cf7-booking-form .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  font-size: 15px;
  border: none;
}

#cf7-booking-form .wpcf7-mail-sent-ok {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}

#cf7-booking-form .wpcf7-mail-sent-ng,
#cf7-booking-form .wpcf7-aborted,
#cf7-booking-form .wpcf7-spam-blocked,
#cf7-booking-form .wpcf7-validation-errors {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-container {
    padding: 30px 20px;
    margin: 20px;
  }

  .booking-above-container h2 {
    font-size: 50px;
    line-height: 45px;
  }

  /* Stack form fields on mobile */
  #cf7-booking-form .form-row {
    grid-template-columns: 1fr;
  }

  #cf7-booking-form input[type="text"],
  #cf7-booking-form input[type="email"],
  #cf7-booking-form input[type="tel"],
  #cf7-booking-form select,
  #cf7-booking-form textarea {
    font-size: 16px;
    /* Prevent zoom on iOS */
  }
}

@media (max-width: 480px) {

  .booking-above-container h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .booking-container {
    padding: 25px 15px;
  }
}

#menu-item-90.navbar-btn {
  color: #fff;

}

/* ==================================================================== 
   =                                                                  =
   =                          Contact us Page                         =
   =                                                                  =
   ====================================================================  */
.contact-us-booking-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
}

.contact-us-booking-container-left,
.booking.container-right {
  flex: 1;
  min-width: 300px;
  padding: 10px;

}

/* Form Styles */
.contact-us-booking-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.contact-us-booking-form input,
.contact-us-booking-form select,
.contact-us-booking-form textarea {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 216x;
  outline: none;
  transition: 0.3s;
  font-family: var(--font-main);
}

.contact-us-booking-form input:focus,
.contact-us-booking-form select:focus,
.contact-us-booking-form textarea:focus {
  border-color: #e04d4d;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
}

.contact-us-booking-form button.submit-btn {
  background-color: #e04d4d;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.contact-us-booking-form button.submit-btn:hover {
  background-color: #e04d4d;
}

/* Custom Select with Arrow */
.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding-right: 35px;
}

.custom-select::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
}

.booking-container-right-above .contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-radius: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.booking-container-right-above .contact-pill .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-container-right-above .container .contact-pill .pill-text {
  font-size: 18px;
}

.booking-container-right-below .container {
  display: flex;
  gap: 15px;
  margin-top: 10px;

}

.booking-container-right-below .contact-pill a {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-us-booking-container {
    flex-direction: column;
  }


}


.pagination {
  margin: 10px 0 20px 0;
  letter-spacing: 20px;

}

.pagination .nav-links .page-numbers {
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 30px;
  color: #646464;
  word-spacing: 10px;
}

.pagination .nav-links .page-numbers.current {
  color: #282828;
  font-weight: bold;
}

@media(max-width:768px) {
  .pagination {
    margin: 5px 0 10px 0;
    letter-spacing: 10px;

  }

  .pagination .nav-links .page-numbers {
    font-size: 19px;
    font-weight: 25px;

  }

}