/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}
/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}
@media only screen and (max-width: 480px) {
html,body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
} 
}
/* Theme Colors */
:root {
  --accent-color: #ffc43f;
  --dark-color: #222222;
  --light-dark-color: #727272;
  --light-color: #fff;
  --grey-color: #dbdbdb;
  --light-grey-color: #fafafa;
  --primary-color: #6995b1;
  --light-primary-color: #eef1f3;
}

/* Fonts */
:root {
  --body-font: "Open Sans", sans-serif;
  --heading-font: "Nunito", sans-serif;
}

body {
  --bs-link-color: #333;
  --bs-link-hover-color: #333;

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  /* --bs-link-color: #FFC43F;
  --bs-link-hover-color: #FFC43F; */

  --bs-light-rgb: 248, 248, 248;

  --bs-font-sans-serif: "Open Sans", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 2;
  --bs-body-color: #747474;

  --bs-primary: #ffc43f;
  --bs-primary-rgb: 255, 196, 63;

  --bs-success: #a3be4c;
  --bs-success-rgb: 163, 190, 76;

  --bs-primary-bg-subtle: #fff9eb;
  --bs-success-bg-subtle: #eef5e5;

  --bs-border-color: #f7f7f7;

  --bs-secondary-rgb: 230, 243, 251;
  /* --bs-success-rgb: 238, 245, 228; */
  --bs-danger-rgb: 249, 235, 231;
  --bs-warning-rgb: 255, 249, 235;
  --bs-info-rgb: 230, 243, 250;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #ffc43f;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f7a422;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ffc43f;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: transparent;
}
.btn-outline-primary {
  --bs-btn-color: #ffc43f;
  --bs-btn-border-color: #ffc43f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff3cd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #fff3cd;
  --bs-gradient: none;
}
.btn-outline-light {
  --bs-btn-color: #747474;
  --bs-btn-border-color: #efefef;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #efefef;
  --bs-btn-hover-border-color: #efefef;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #efefef;
  --bs-btn-active-border-color: #efefef;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #efefef;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #efefef;
  --bs-gradient: none;
}
.btn-warning {
  --bs-btn-color: #747474;
  --bs-btn-bg: #fcf7eb;
  --bs-btn-border-color: #fcf7eb;
  --bs-btn-hover-color: #747474;
  --bs-btn-hover-bg: #ffecbe;
  --bs-btn-hover-border-color: #ffecbe;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffecbe;
  --bs-btn-active-border-color: #ffecbe;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fcf7eb;
  --bs-btn-disabled-border-color: #fcf7eb;
}
.btn-success {
  --bs-btn-color: #222;
  --bs-btn-bg: #eef5e4;
  --bs-btn-border-color: #eef5e4;
  --bs-btn-hover-color: #222;
  --bs-btn-hover-bg: #9de3c2;
  --bs-btn-hover-border-color: #9de3c2;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #222;
  --bs-btn-active-bg: #9de3c2;
  --bs-btn-active-border-color: #9de3c2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #222;
  --bs-btn-disabled-bg: #eef5e4;
  --bs-btn-disabled-border-color: #eef5e4;
}
.btn-danger {
  --bs-btn-color: #222;
  --bs-btn-bg: #ffeada;
  --bs-btn-border-color: #ffeada;
  --bs-btn-hover-color: #222;
  --bs-btn-hover-bg: #ecc9af;
  --bs-btn-hover-border-color: #ecc9af;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #222;
  --bs-btn-active-bg: #ecc9af;
  --bs-btn-active-border-color: #ecc9af;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #222;
  --bs-btn-disabled-bg: #ffeada;
  --bs-btn-disabled-border-color: #ffeada;
}
body {
  letter-spacing: 0.03em;
  font-family: Arial, sans-serif;
 
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--dark-color);
  font-weight: 500;
}
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
}
.breadcrumb.text-white {
  --bs-breadcrumb-divider-color: #fff;
  --bs-breadcrumb-item-active-color: var(--bs-primary);
}
.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--bs-primary);
}
.nav-pills .nav-link {
  --bs-nav-pills-link-active-color: #111;
  --bs-nav-pills-link-active-bg: #f1f1f1;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0.8rem;
}
/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before,
.preloader:after {
  content: "";
  position: absolute;
  top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {
  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em var(--accent-color);
  }
  40% {
    box-shadow: 0 2em 0 0 var(--accent-color);
  }
}

/* *** Start editing below this line *** */
.container-fluid {
  max-width: 1600px;
}
.banner-blocks {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 2rem;
}
.block-1 {
  grid-area: 1 / 1 / 3 / 8;
}
.block-2 {
  grid-area: 1 / 8 / 2 / 13;
}
.block-3 {
  grid-area: 2 / 8 / 3 / 13;
}

@media screen and (max-width: 1140px) {
  .banner-blocks {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .block-1 {
    grid-area: 1 / 1 / 3 / 2;
  }
  .block-2 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .block-3 {
    grid-area: 4 / 1 / 5 / 2;
  }
}

/* banner ad */
.banner-ad {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.banner-ad.blue {
  background: #e6f3fb;
}
.banner-ad .swiper-pagination {
  bottom: 40px;
  left: 0;
  right: 0;
}
.banner-ad .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 4px;
  background: #fff;
  opacity: 1;
  transition: background 0.3s ease-out;
}
.banner-ad
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffc43f;
}
.banner-ad .swiper-slide {
  min-height: 330px;
  display: flex;
}
/* .banner-ad .banner-content {
  padding: 52px;
}
.banner-ad.large .banner-content {
  padding: 90px;
} */
.banner-ad .banner-content .categories {
  font-family: "Garamond";
  font-size: 20px;
  text-transform: capitalize;
  color: var(--dark-color);
}
.banner-ad .banner-content .sale {
  position: relative;
  display: inline-block;
}
.banner-ad .banner-content .sale:before {
  content: "";
  width: 80px;
  border-bottom: 1px solid #111;
  position: absolute;
  bottom: 6px;
}
.banner-ad .banner-content .sale:after {
  content: "SALE";
  font-family: var(--body-font);
  position: absolute;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #252525;
  bottom: 0;
  right: opx;
}
.banner-ad .banner-content .banner-title {
  letter-spacing: 0.02em;
  font-size: 20px;
}
.banner-ad.large .banner-content .categories {
  color: var(--accent-color);
}
.banner-ad.large .banner-content .banner-title {
  font-size: 25px;
}

/* Swiper carousel */
.swiper-prev,
.swiper-next {
  width: 20px;
  height: 20px;
  line-height: 38px;
  background: #f1f1f1;
  color: #222222;
  padding: 0;
  text-align: center;
  border-radius: 10px;
  --bs-btn-border-color: transparent;
  --bs-btn-active-bg: #ec9b22;
  --bs-btn-active-border-color: transparent;
  --bs-btn-hover-bg: #ffc43f;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-disabled-color: #ccc;
  --bs-btn-disabled-bg: #eaeaea;
  --bs-btn-disabled-border-color: #eaeaea;
}
.swiper-prev:hover,
.swiper-next:hover {
  background: #ffc43f;
}
.btn-link {
  margin-right: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  text-transform: capitalize;
  color: #787878;
}
/* category carousel */
.category-carousel .category-item {
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  text-align: center;
  padding: 60px 20px;
  margin: 20px 0;
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}
.category-carousel .category-item:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}
.category-carousel .category-item .category-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #222222;
  margin-top: 20px;
}

/* brand carousel */
.brand-carousel .brand-item {
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 16px;
}
.brand-carousel .brand-item img {
  width: 100%;
  border-radius: 12px;
}
.brand-carousel .brand-item .brand-details {
  margin-left: 15px;
}
.brand-carousel .brand-item .brand-title {
  margin: 0;
}

/* product tabs */
.product-tabs .nav-tabs {
  justify-content: flex-end;
  border: none;

  --bs-nav-link-hover-color: #111;
  --bs-nav-link-color: #555;
  --bs-nav-tabs-link-border-color: #fff;
  --bs-nav-tabs-link-hover-border-color: transparent;
  --bs-nav-tabs-link-active-border-color: #fff;
}
.product-tabs .nav-tabs .nav-link.active,
.product-tabs .nav-tabs .nav-item.show .nav-link {
  /* border: none; */
  border-bottom: 3px solid var(--accent-color);
}

/* product-grid */
/* .product-grid {
  gap: 25px;
} */
.product-item {
  position: relative;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease-out;
}
.product-item:hover {
  box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}
.product-item h3 {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  color: #333333;
  margin: 0;
}
.product-item figure {
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
}
.product-item figure img {
  max-height: 100px;
  height: auto;
}
.product-item .btn-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d8d8d8;
  transition: all 0.3s ease-out;
}
.product-item .btn-wishlist:hover {
  background: rgb(240, 56, 56);
  color: #fff;
}
.product-item .qty {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9d9d9d;
}
.product-item .rating {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-transform: capitalize;
  color: #222222;
}
.product-item .rating iconify-icon {
  color: #ffc43f;
}
.product-item .price {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  color: #222222;
}
.product-item .product-qty {
  width: 85px;
}
.product-item .btn-link {
  text-decoration: none;
}
.product-item #quantity {
  height: auto;
  width: 28px;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}
.product-item .btn-number {
  width: 26px;
  height: 26px;
  line-height: 1;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  color: #222;
  padding: 0;
}

/* cart */
.cart .product-qty {
  min-width: 130px;
}

/* floating image */
.image-float {
  margin-top: -140px;
  margin-bottom: -140px;
}
@media screen and (max-width: 991px) {
  .image-float {
    margin: 0;
  }
}
/* post item */
.post-item .post-meta {
  font-size: 0.8rem;
  line-height: 1;
}
.post-item .post-meta svg {
  margin-right: 5px;
}

@media screen and (max-width: 991px) {
  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }
  .offcanvas-body .filter-categories {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #d1d1d1 !important;
    padding: 14px;
    border-radius: 8px;
  }
  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }
  .dropdown-menu a {
    padding-left: 0;
  }
  .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 21px;
  }
}

/* single product */
/* product-thumbnail-slider */
.product-thumbnail-slider {
  height: 740px;
}
@media screen and (max-width: 992px) {
  .product-thumbnail-slider {
    margin-top: 20px;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .product-thumbnail-slider {
    height: 520px;
  }
}
@media screen and (min-width: 1200px) {
  .product-thumbnail-slider {
    height: 740px;
  }
}

/* Services Container */
.services-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  gap: 20px;
}

/* Service Card Styles */
.service-card {
  flex: 1; /* Makes all cards equal width */
  min-width: 160px; /* Ensures cards don’t shrink too much */
  max-width: 180px; /* Controls max width */
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.service-card .icon {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.service-card .icon:hover {
  color: #ff4d00
}


/* Heading and Paragraph */
.service-card h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Tablet View (2x2 Layout) */
@media (max-width: 768px) {
  .services-container {
    justify-content: center;
  }

  .service-card {
    flex: 0 1 calc(50% - 20px); /* Two cards per row */
  }
}

/* Mobile View (Single Column if Needed) */
@media (max-width: 400px) {
  .services-container {
    justify-content: center;
  }

  .service-card {
    flex: 0 1 calc(50% - 20px); /* Two cards per row */
  }

 }  
 :root {
  --header-height: 160px;
  --header-height-min: 80px;
}

@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

@media only screen and (max-width: 480px) {
  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
}

.banner-ad .swiper-slide {
  min-height: 250px; /* Reduced height */
  display: flex;
}

.banner-ad .swiper-pagination {
  bottom: 20px; /* Adjusted for better spacing */
}

.banner-ad .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 3px;
}

.banner-ad .banner-content .categories {
  font-size: 10px; /* Adjusted for smaller screens */
}

.banner-ad .banner-content .banner-title {
  font-size: 8px; /* Adjusted text size */
}

@media screen and (max-width: 768px) {
  .banner-ad .swiper-slide {
    min-height: 200px; /* Further reduced for smaller devices */
  }
}

@media screen and (max-width: 480px) {
  .banner-ad .swiper-slide {
    min-height: 180px;
    max-height: 300px;
  }

  .banner-ad .banner-content .categories {
    font-size: 30px;
  }

  .banner-ad .banner-content .banner-title {
    font-size: 20px;
  }
}



.banner-ad {
  background-size: 100% !important;
  background-position: right !important;
  background-repeat: no-repeat !important;
  min-height: 100px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 468px) {
  .banner-ad {
      min-height: 40px;
      max-height: 80px; /* Reduce height on smaller screens */
      padding: 20px;
      background-size: contain !important;
  }
  .banner-content {
      padding: 15px !important;
      text-align: left;
  }
  .content-wrapper {
      width: 100% !important;
  }
}

@media (max-width: 430px) {
  .banner-ad.block-2,
  .banner-ad.block-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-ad.block-2 .banner-content,
  .banner-ad.block-3 .banner-content {
    order: 1;
    width: 100%;
    padding: 10px;
  }

  .banner-ad.block-2 .img-wrapper,
  .banner-ad.block-3 .img-wrapper {
    order: 2;
    width: 100%;
    text-align: right;
    padding: 10px;
  }

  .banner-ad.block-2 .img-wrapper img,
  .banner-ad.block-3 .img-wrapper img {
    max-width: 50%;
    height: auto;
  }
}

/* General styles for banner ads */
.banner-ad {
  background-repeat: no-repeat;
  background-position: right bottom;
}

/* Media query for screens with a maximum width of 430px */
@media (max-width: 430px) {
  /* Styles for banner ad block 2 */
  .banner-ad.block-2,
  /* Styles for banner ad block 3 */
  .banner-ad.block-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-size: contain; /* Ensure the background image scales to fit the container */
  }

  /* Styles for the content wrapper within banner ad block 2 and block 3 */
  .banner-ad.block-2 .banner-content,
  .banner-ad.block-3 .banner-content {
    order: 1; /* Ensure the content appears first */
    width: 100%;
    padding: 10px;
  }

  /* Styles for the image wrapper within banner ad block 2 and block 3 */
  .banner-ad.block-2 .img-wrapper,
  .banner-ad.block-3 .img-wrapper {
    order: 2; /* Ensure the image appears second */
    width: 100%;
    text-align: right;
    padding: 10px;
  }

  /* Styles for the images within banner ad block 2 and block 3 */
  .banner-ad.block-2 .img-wrapper img,
  .banner-ad.block-3 .img-wrapper img {
    max-width: 50%; /* Ensure the image takes up 50% of the container width */
    height: auto;
  }
}

/* Hero Section */
.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}

/* Hero Box: A centered box with rounded corners */
.hero-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1700px;
  width: 100%;
  background: #c1e8ff; /* Light blue-ish white box */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

/* Text Section Styling */
.hero-text {
  flex: 1;
  max-width: 500px;
  padding-left: 4rem;
}

.hero-text h1 {
  font-size: 3rem;
  color: #1e3a8a; /* Dark Blue */
  font-weight: bold;
}

.hero-text p {
  font-size: 1.5rem;
  color: #2563eb; /* Medium Blue */
  margin-top: 10px;
}

/* Call to Action Button */
.hero-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #2563eb; /* Blue */
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #ff8400; /* Darker Blue */
}

/* Image Styling */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  padding-left: 6rem;
}

.hero-image img {
  width: 100%;
  max-width: 700px; /* Adjusted size */
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Responsive Design */
@media (max-width: 450px) {
  .hero-box {
      flex-direction: column;
      text-align: left;
      padding: 20px;
  }

  .hero-text {
      max-width: 100%;
      font-size: 50px;
      padding-left: 1rem;
      margin-top: 40px;
      background-image: url('images/hero-section.png'); /* Set the image as background */
      background-size: cover;
      background-position: center;
      padding: 100px 20px; /* Adjust padding to ensure text remains readable */
      color: white;
      text-align: center;
  }

  .hero-text h1 {
    font-size: 50px;
    color: #1e3a8a; /* Make the text white for contrast */
    font-weight: bold;
  }
  
  .hero-text p {
    font-size: 20px;
    color: #2563eb; /* Make the text white for contrast */
    margin-top: 10px;
  }

  .hero-image {
      display: none; /* Hide the image container */
  }
}


/* Custom Card Section Styles */
.custom-card-section {
  padding: 4rem 0;
}

.custom-card-container {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin: 50px 0; 
  flex-wrap: wrap;
}

/* Card Styles */
.custom-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 45%;
  max-width: 600px;
  overflow: hidden;
  flex-direction: row;
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-10px);
}

/* Card Image */
.custom-card-image {
  width: 40%;
  height: auto;
  object-fit: contain; /* Ensure the entire image is visible */
}

/* Card Content */
.custom-card-content {
  padding: 20px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-card h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.custom-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.custom-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #ff9f00;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-btn {
  padding: 8px 16px; /* Smaller padding for smaller screens */
  font-size: 14px; /* Smaller font size for smaller screens */
  background-color: #004aad;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #e68900;
}

.custom-button:hover {
  background-color: #004aad;
}


/* Specific Card Colors */
.custom-card-blue {
  background-color: #cce7ff;
}

.custom-card-yellow {
  background-color: #ffe6b3;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .custom-card-container {
      flex-direction: column;
      align-items: center;
  }

  .custom-card {
      width: 80%;
      margin-bottom: 20px;
  }

  .custom-card-image {
      width: 100%;
      height: 200px;
  }

  .custom-card-content {
      padding: 15px;
  }

  .custom-btn {
      padding: 12px 24px;
      font-size: 14px;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Media Queries for Smaller Screens */
@media (max-width: 450px) {
  .custom-card-container {
      flex-direction: column;
      align-items: center;
      gap: 1rem; /* Reduced gap for smaller screens */
  }

  .custom-card {
      width: 100%;
      margin-bottom: 10px; /* Reduced margin for smaller screens */
      flex-direction: row; /* Keep content in row direction */
  }

  .custom-card-image {
      width: 50%;
      height: auto;
      object-fit: contain; /* Ensure the entire image is visible */
  }

  .custom-card-content {
      width: 60%;
      padding: 10px; /* Reduced padding for smaller screens */
  }

  .custom-card h2 {
      font-size: 20px; /* Adjusted font size for smaller screens */
  }

  .custom-card p {
      font-size: 14px; /* Adjusted font size for smaller screens */
  }

  .custom-btn {
      padding: 8px 16px; /* Smaller padding for smaller screens */
      font-size: 14px; /* Adjusted font size for smaller screens */
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

