@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

:root {

  /**
   * colors
   */

  --middle-blue-green: hsl(51, 100%, 50%); /* Updated from light blue */
  --sonic-silver: hsl(0, 0%, 50%);         /* Neutral gray tone from logo */
  --eerie-black: hsl(0, 0%, 16%);          /* Deep gray/black from tree text */
  --ocean-green: hsl(100, 45%, 55%);       /* Green from leaves */
  --candy-pink: hsl(340, 80%, 60%);        /* Pink-red from leaf to use as use as hover colour */ 
  --cultured: hsl(0, 0%, 92%);             /* Light gray from background/leaf */
  --white: hsl(0, 0%, 100%);               /* Pure white, unchanged */
  --black: hsl(0, 0%, 0%);                 /* Pure black, unchanged */


  /**
   * typography
   */

  --ff-jost: "Jost", sans-serif;

  --fs-1: 2.5rem;
  --fs-2: 1.75rem;
  --fs-3: 1.625rem;
  --fs-4: 1.5rem;
  --fs-5: 1.375rem;
  --fs-6: 1.25rem;
  --fs-7: 1.125rem;
  --fs-8: 0.938rem;
  --fs-9: 0.875rem;
  --fs-10: 0.813rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.75s ease;
  --cubic-out: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-in: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * spacing
   */

  --section-padding: 60px;

}





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

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

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,

ion-icon { display: block; }

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

button {
  text-align: left;
  cursor: pointer;
}

input {
  width: 100%;
  outline-color: var(--middle-blue-green);
}

img { height: auto; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-jost);
  color: var(--sonic-silver);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  padding-block: 70px;
}





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

.container { padding-inline: 15px; }

a,
button { transition: var(--transition-1); }

h3 > a { color: inherit; }

.h1,
.h2,
.h3,
.h4 {
  color: var(--eerie-black);
  font-weight: var(--fw-600);
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1;
}

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

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

.h4 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.btn {
  background: var(--background, var(--eerie-black));
  color: var(--color, var(--white));
  font-weight: var(--fw-600);
  height: var(--height, 60px);
  padding-inline: 50px;
  border: 1px solid var(--border-color, var(--eerie-black));
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary:is(:hover, :focus) {
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--eerie-black);
}

.btn-secondary {
  --height: 50px;
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--white);
}

.btn-secondary:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
}

.btn-outline {
  --height: 50px;
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--eerie-black);
  padding-inline: 40px;
}

.btn-outline:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
}

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

.w-100 { width: 100%; }

/* Section Titles Consistent Style */
.featured-products-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4F5150;
  text-align: center;
  margin-bottom: 60px;
}

.featured-products-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    #F6A23F 0%,
    #F6A23F 33.33%,
    #9acb58 33.33%,
    #9acb58 66.66%,
    #D63B74 66.66%,
    #D63B74 100%
  );
  margin: 12px auto 0;
  border-radius: 2px;
}





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

.header-search { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  width: 100%;
  padding-block: 20px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  position: fixed;
  box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
}

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

.nav-open-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav-open-btn span {
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: var(--transition-1);
}

.nav-open-btn span:nth-child(2) {
  transform: scaleX(0.5);
  transform-origin: right;
}

.nav-open-btn:is(:hover, :focus) span:nth-child(2) { transform: scaleX(1); }

.header-actions {
  background: var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5px;
  padding-block: 16px 10px;
  box-shadow: 0 -2px 20px hsla(0, 0%, 0%, 0.1);
  z-index: 1;
}

.header-action-btn {
  position: relative;
  width: 50px;
  text-align: center;
}

.header-action-btn ion-icon {
  margin-inline: auto;
  font-size: 22px;
  margin-bottom: 3px;
}

.header-action-label {
  color: var(--sonic-silver);
  font-size: var(--fs-10);
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) .header-action-label { color: var(--eerie-black); }

.header-action-btn .btn-badge {
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--background, var(--eerie-black));
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  line-height: 0;
  font-size: 13px;
  color: var(--white);
  border-radius: 50%;
}

.header-action-btn .btn-badge.green { --background: var(--middle-blue-green); }

.navbar {
  background: var(--white);
  position: fixed;
  top: 0;
  right: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
}

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

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.nav-close-btn ion-icon { font-size: 23px; }

.navbar-link {
  padding-block: 10px;
  color: var(--eerie-black);
}

.navbar-list > li:not(:last-child) { border-bottom: 1px solid var(--cultured); }

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
  z-index: 2;
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}



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

/* Central control for hero height */
:root {
  --hero-min-height: 100vh;
  --hero-padding-x: 100px;
  --hero-padding-y: 50px;
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  width: 100%;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
}

.hero .container {
  width: 100%;
  padding: 0;
  height:50vh;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: left;
  max-width: 800px;
  margin-left: var(--hero-padding-x);
  margin-right: auto;
  padding: var(--hero-padding-y) 0;
}


@media (max-width: 1200px) {
  .hero-content {
    max-width: 600px;
    margin-left: 24px;
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero .container {
    height: auto; /* Remove fixed height */
    padding: 0;
  }
  .hero-content {
    height: auto; /* Remove fixed height */
    margin-left: var(--hero-padding-x);
    margin-right: var(--hero-padding-x);
    padding: var(--hero-padding-y) 0;
    text-align: left;
  }
  .hero-title {
    font-size: 11vw;
    max-width: 100%;
    text-align: left;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.3rem 0.8rem;
  }
}

/* === Carousel Wrapper === */
.hero-carousel {
  width: 100vw;
  position: relative;
  overflow: hidden;
  height:70vh
}


.carousel {
  position: relative;
}

/* === Slides === */
.carousel-slide {

  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  animation: zoomInSlow 20s ease-in-out infinite;
}
.carousel-slide.active {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 1;
}

/* === Carousel Buttons (Prev/Next) === */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #f59e0b;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* === Dots === */
.carousel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(107, 107, 107, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot:hover {
  background: #f59e0b;
  transform: scale(1.2);
}

.carousel-dots .dot.active {
  background: #f59e0b;
  opacity: 1;
  box-shadow: 0 0 8px #f59e0b;
}


/* === Button Style === */
.btn {
  background-color: #000000;
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #eb477e;
}


/* --- HERO MOBILE/TABLET OVERRIDE --- */
@media (max-width: 992px) {
  /* show only the first slide */
  .hero-carousel .carousel-slide {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .hero-carousel .carousel-slide:first-child {
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
  }

  /* disable animation zoom effect for first slide on mobile */
  .hero-carousel .carousel-slide:first-child {
    animation: none !important;
  }

  /* hide controls and dots */
  .hero-carousel .carousel-btn,
  .hero-carousel .carousel-dots {
    display: none !important;
  }

  /* adjust height for smaller screens */
  .hero-carousel {
    height: 60vh !important;
  }

  .hero-carousel .carousel-slide:first-child {
    background-size: cover !important;
    background-position: center top !important;
  }
}


/* ---------------------------
   SERVICE 
   --------------------------- */

/* colors & variables */
:root{
  --bg-dark: #0d1b2a;
  --overlay: rgba(13,27,42,0.6);
  --card-bg: rgba(255,255,255,0.12);
  --card-border: rgba(255,255,255,0.14);
  --accent-gradient: linear-gradient(
      to right,
      #F6A23F 0%,
      #F6A23F 33.33%,
      #9acb58 33.33%,
      #9acb58 66.66%,
      #D63B74 66.66%,
      #D63B74 100%
  );
  --easing: cubic-bezier(.22,1,.36,1);
}

/* Section wrapper */
.service {
  position: relative;
  padding: 100px 20px;
  background: var(--bg-dark) url('https://www.transparenttextures.com/patterns/leather.png') repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay sits under content but above background */
.service .overlay{
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
  pointer-events: none;
}

/* container above overlay */
.service .container{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.service .section-title{
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: #f0f4f8;
  display: inline-block;
  /* visible by default; JS will add animation behavior */
}

/* underline */
.service .section-title::after{
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Grid */
.service-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: start;
  z-index: 2;
}

/* Card base (always visible by default). */
.service-item{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 42px 26px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 320ms var(--easing), box-shadow 320ms ease;
  /* NOTE: we do NOT hide items here — see JS-enabled rule below */
}

/* Hover */
.service-item:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.34);
}

/* Icon */
.service-item-icon{
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg,#1b3b6f,#0d1b42);
  transition: transform 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.service-item-icon ion-icon{
  font-size: 38px;
  color: #fff;
}

/* Icon hover */
.service-item:hover .service-item-icon{
  transform: rotate(-8deg) scale(1.05);
  background: linear-gradient(135deg,#D73B74,#9ACB58);
}

/* Titles + text */
.service-item-title{
  font-size: 1.35rem;
  font-weight: 700;
  margin: 10px 0 12px;
  color: #fff;
}

.service-item-text{
  font-size: 0.98rem;
  line-height: 1.65;
  color: #d6dfe8;
  margin: 0;
  max-width: 92%;
}

/* ---------------------------
   JS-enabled: scroll animation
   (only active when JS adds `js` class to <html>)
   - This prevents "invisible" content when JS fails.
   --------------------------- */
.js .animate-title,
.js .animate-card {
  /* hidden initial state only when JS is enabled */
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
}

/* allow a small negative translate for the title */
.js .animate-title {
  transform: translateY(-18px);
}

/* when element becomes visible we add `.in-view` on it */
.js .animate-title.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: transform 700ms var(--easing), opacity 700ms ease;
  transition-delay: var(--delay, 0s);
}

.js .animate-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: transform 720ms var(--easing), opacity 720ms ease;
  transition-delay: var(--delay, 0s);
}

/* small responsive tweaks */
@media (max-width: 640px){
  .service { padding: 60px 16px; }
  .service .section-title { font-size: 1.6rem; }
  .service-item { padding: 28px 20px; }
  .service-item-icon { width: 66px; height: 66px; }
}
@media (max-width: 400px){
  .service-item-title { font-size: 1.2rem; }
  .service-item-text { font-size: 0.9rem; }
}



/*-----------------------------------*\
 * #CATETORY
\*-----------------------------------*/

.category { padding-top: 0; }

.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.category-item {
  width: 100%;
  position: relative;
}

.category-banner {
  background: var(--cultured);
  aspect-ratio: 2 / 2.35;
  overflow: hidden;
}

.category-banner img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.category-item:hover .category-banner img { transform: scale(1.05); }

.category-item .btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding-inline: 30px;
}
Pl

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

.blog .section-title { margin-bottom: 40px; }

.blog-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.blog-card .card-banner {
  background: var(--cultured);
  aspect-ratio: 2 / 1.37;
  overflow: hidden;
  margin-bottom: 25px;
}

.blog-card .card-banner img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

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

.blog-card .card-content { padding-inline: 20px; }

.blog-card .card-meta-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}

.blog-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card .card-meta-item ion-icon {
  font-size: 17px;
  --ionicon-stroke-width: 30px;
}

.blog-card .card-meta-link {
  color: inherit;
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

.blog-card .card-meta-link:is(:hover, :focus) { color: var(--eerie-black); }

.blog-card .card-title {
  line-height: 1.4;
  text-align: center;
}





/*-----------------------------------*\
 * #NEWSLATTER
\*-----------------------------------*/

.newsletter { padding-bottom: 120px; }

.newsletter-card {
  background-color: var(--cultured);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  padding: 80px 15px;
  text-align: center;
}

.newsletter-card .card-title {
  color: var(--eerie-black);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  line-height: 1.2;
  margin-bottom: 30px;
}

.newsletter-card .card-text { margin-bottom: 30px; }

.newsletter-card .input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.newsletter-card .input-field {
  background: var(--white);
  height: 60px;
  padding-inline: 50px 20px;
  border-radius: 6px;
}

.newsletter-card .input-wrapper ion-icon {
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.newsletter-card .btn { gap: 10px; }
/*-----------------------------------*\
CTA SECTION
/*-----------------------------------*\





/* CTA Section */
.cta-section {
  background: #f8f9fb; /* very light neutral background */
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
}

/* Container */
.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Title */
.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

/* Text */
.cta-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-text .highlight {
  color: #004080; /* brand blue */
  font-weight: 600;
}

/* Button */
.custom-btn.custom-btn-primary {
  background: #004080; /* brand blue */
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.custom-btn.custom-btn-primary:hover {
  background: #002f5a; /* darker shade */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}



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

.footer-top {
  position: relative;
  background: var(--bg-dark) url('https://www.transparenttextures.com/patterns/leather.png') repeat;
  padding-block: var(--section-padding);
  color: #fff; /* Ensure text stays white */
  overflow: hidden; /* Contain the overlay */
}

.footer-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay */
  z-index: 0;
}

.footer-top .container {
  position: relative;
  z-index: 1; /* Keep content above overlay */
}


.footer-top .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer .logo-footer img {
  display: block;
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}


.footer-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.social-link {
  color: var(--white);
  font-size: 18px;
  width: 35px;
  height: 35px;
  border: 1px solid var(--sonic-silver);
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.social-link:is(:hover, :focus) {
  background: var(--sonic-silver);
  color: var(--white);
  border-color: var(--sonic-silver);
}

.footer-list { width: 100%; }

.footer-list-title {
  color: var(--sonic-silver);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.footer-link {
  position: relative;
  color: inherit;
  padding-block: 5px;
}

.footer-link:is(:hover, :focus) {
  color: var(--sonic-silver);
  transform: translateX(15px);
}

.footer-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%) scale(var(--scale, 0));
  transform-origin: right;
  background: var(--sonic-silver);
  width: 10px;
  height: 2px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus)::before { --scale: 1; }

.footer-bottom { padding-block: 20px; }

.footer-bottom a { color: inherit; }

.copyright {
  margin-bottom: 15px;
  text-align: center;
}

.copyright a {
  display: inline-block;
  color: var(--eerie-black);
  font-weight: var(--fw-600);
}

.footer-bottom-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 15px;
}

.footer-bottom-link:is(:hover, :focus) { color: var(--eerie-black); }

.payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}





/*-----------------------------------*\
 * #MEDIA QUARIES
\*-----------------------------------*/

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

@media (min-width: 480px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3rem;
    --fs-2: 2rem;

  }



  /**
   * CATEGORY
   */

  .category-list > li { width: calc(50% - 15px); }



  /**
   * PRODUCT
   */

  .product-list > li { width: calc(50% - 12.5px); }



  /* *
   * FOOTER
  */

    .footer-brand { width: 100%; }

    .footer-brand .logo img {
      width: 180px;
      height: auto;
      max-width: 100%;
      display: block;
    }

  .footer-text { max-width: 470px; }

  .footer-list { width: calc(50% - 20px); }

}





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

@media (min-width: 580px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3.75rem;
    --fs-2: 2.375rem;
    --fs-3: 2.25rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

}





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

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 700px; }



  /**
   * HERO
   */

  /* .hero {
    background-position: center;
    min-height: 100vh;
  } */



  /**
   * BLOG
   */

  .blog-list > li { width: calc(50% - 15px); }



  /**
   * NEWSLETTER
   */

  .newsletter-card > * {
    max-width: 480px;
    margin-inline: auto;
  }

  .newsletter-card .card-form { position: relative; }

  .newsletter-card .input-wrapper { margin-bottom: 0; }

  .newsletter-card .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: max-content;
    padding-inline: 35px;
    border-radius: 0 6px 6px 0;
  }



  /**
   * FOOTER
   */

  .footer-list { width: calc(33.33% - 26.66px); }

  .copyright,
  .footer-bottom-list { margin-bottom: 0; }

  .footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px 50px;
  }

}





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

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;

  }



  /**
   * RESET
   */

  body { padding-block: 0; }



  /**
   * REUSED STYLE
   */

  .container { max-width: 950px; }



  /**
   * HEADER
   */

  .header {
    position: relative;
    padding-block: 15px;
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
    margin-bottom: 67px;
  }

  .header.active {
    position: relative;
    box-shadow: none;
  }

  .header .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .header-search {
    display: block;
    position: relative;
    width: max-content;
  }

  .header-search .input-field {
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    width: 280px;
    padding: 12px 30px;
    border-radius: 6px;
    transition: var(--transition-1);
  }

  .header-search .input-field:focus { outline: 1px solid var(--eerie-black); }

  .header-search .search-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--eerie-black);
  }

  .header-search .search-btn ion-icon { --ionicon-stroke-width: 30px; }

  .header .logo { margin-inline: auto; }

  .nav-open-btn,
  .header-action-btn:nth-child(2),
  .navbar-top,
  .overlay { display: none; }

  .header-actions {
    all: unset;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
  }

  .navbar {
    all: unset;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    background: var(--white);
  }

  .header.active .navbar {
    position: fixed;
    top: 0;
    box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
  }

  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .navbar-list > li:not(:last-child) { border-bottom: none; }

  .navbar-link {
    font-size: var(--fs-7);
    font-weight: var(--fw-500);
    padding-block: 20px;
  }

  .navbar-link:is(:hover, :focus) { color: var(--middle-blue-green); }



  /**
   * CATEGORY
   */

  .category-list > li:not(:first-child, :nth-child(2)) { width: calc(25% - 22.5px); }

  /**
   * PRODUCT
   */


  /**
   * BLOG
   */

  .blog-list > li { width: calc(33.33% - 20px); }



  /**
   * NEWSLETTER
   */

  .newsletter-card .card-form { max-width: 650px; }

}





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

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.25rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1150px; }



  /**
   * HEADER
   */

  .header-search .input-field { width: 350px; }



  /**
   * PRODUCT
   */

  .product-list > li { width: calc(25% - 18.75px); }



  /**
   * FOOTER
   */

  .footer-brand { width: calc(40% - 30px); }

  .footer-text { max-width: 340px; }

  .footer-list { width: calc(20% - 30px); }

  .footer-bottom .container { justify-content: space-between; }

}
/* Root tokens */
:root{
  --brand:#0d78b9;
  --muted:#6b7378;
  --dark:#111;
  --container:1200px;
}

/* Section wrapper */
.about-section{
  padding: 80px 5%;
  background: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
.container { max-width: var(--container); margin: 0 auto; }

/* Two-column desktop grid */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 48px;
  align-items: center;
  position: relative;
}

/* LEFT text column */
.eyebrow{
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #9acb58;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.about-heading{
  font-size: clamp(36px, 5vw, 60px);
  margin: 0 0 18px 0;
  color: var(--dark);
  font-weight: 900;
  line-height: 0.92;
}
.about-paragraph{
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 58ch;
}

/* Stats row */
.about-stats{
  display: flex;
  gap: 36px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.stat{
  display:flex;
  gap:12px;
  align-items:center;
}
.stat svg{ color: #d73b74; flex-shrink:0; }
.stat-number{
  font-weight:800;
  font-size:1.1rem;
  color: var(--dark);
}
.stat-label{
  font-size:0.88rem;
  color: var(--muted);
}

/* CTA buttons */
.cta-row{ display:flex; gap:16px; align-items:center; }
.btn{
  display:inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:700;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform: translateY(-3px); }
.btn-primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 120, 185, 0.12);
}
.btn-outline{
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

/* Container */
.about-right { 
  position: relative; 
  height: 440px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Decorative corners */
.img-stack .corner {
  position: absolute;
  width: 42px; 
  height: 42px;
  border: 3px solid #9acb58;
  z-index: 5;
  transition: all 0.3s ease;
}

.img-stack .corner.top-left { 
  top: -16px; left: -16px; 
  border-right: none; border-bottom: none; 
}
.img-stack .corner.bottom-right { 
  bottom: -16px; right: -16px; 
  border-left: none; border-top: none; 
}


/* Main image */
.main-img {
  position: absolute;
  right: -90px;
  top: 10px;
  width: 600px;
  max-width: calc(100% + 120px);
  height: calc(100% - 20px);   /* reduced height a bit */
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(16, 24, 40, 0.22);
  transform: translateX(-100px);
  z-index: 1;
  border: 10px solid #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Smaller image */
.sub-img {
  position: absolute;
  top: 60px;
  right: -30px;
  width: 200px;      
  height: 280px;     
  object-fit: cover;
  border-radius: 14px;
  border: 6px solid #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
  transform: rotate(-3deg);
  z-index: 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover animations */
.main-img:hover {
  transform: translateX(-80px) scale(1.02);
  box-shadow: 0 30px 65px rgba(0,0,0,0.25);
}
.sub-img:hover {
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 0 25px 55px rgba(0,0,0,0.3);
}

/* Responsiveness */
@media (max-width: 992px) {
  .about-right { height: auto; }
  .main-img {
    position: relative;
    width: 100%;
    transform: translateX(0);
    top: 0;
  }
  .sub-img {
    position: relative;
    right: 0;
    margin: 20px auto 0;
    display: block;
    transform: rotate(0);
  }
  .img-stack .corner { display: none; }
}

/* Responsiveness */
@media (max-width: 1150px){
  .about-grid{ grid-template-columns: 1fr 520px; gap: 36px; }
  .main-img{ width: 640px; transform: translateX(-90px); }
  .about-right{ height: 380px; }
}
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; gap: 28px; }
  .about-right{ order: 2; height: auto; }
  .img-stack{ height: auto; display:flex; justify-content:center; }
  .main-img{
    position: static;
    width: 100%;
    max-width: 820px;
    height: auto;
    transform: translateX(0);
  }
  .sub-img{
    position: relative;
    right: auto;
    top: -70px;
    margin-left: -10%;
    transform: none;
    width: 42%;
    height: auto;
  }
  .eyebrow{ margin-top:8px; }
}
@media (max-width: 520px){
  .about-paragraph{ font-size: 0.98rem; }
  .about-stats{ gap: 14px; flex-wrap:wrap; }
  .sub-img{ width: 48%; margin-left: -6%; top: -56px;}
}



/* CTA row wrapper */
.custom-cta-row {
  display: flex;
  gap: 18px;
  justify-content: flex-start; /* left align under text */
  margin-top: 40px;
}

/* Base button */
.custom-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Primary style */
.custom-btn-primary {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}
.custom-btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #d97706);
  transform: translateY(-2px);
}

/* Outline style */
.custom-btn-outline {
  border: 2px solid #f97316;
  color: #f97316;
  background: transparent;
}
.custom-btn-outline:hover {
  background: #f97316;
  color: #fff;
  transform: translateY(-2px);
}







/* Submenu base styles */
.navbar-item.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 0.5em 0;
  z-index: 100;
  border-radius: 6px;
}

.navbar-item.has-submenu:hover .submenu,
.navbar-item.has-submenu:focus-within .submenu {
  display: block;
}

.submenu li {
  list-style: none;
}

.submenu .navbar-link {
  display: block;
  padding: 0.75em 1.5em;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.submenu .navbar-link:hover {
  background: #f5f5f5;
  color: #FF9800;
}

      /* Responsive Styles */
      @media (max-width: 900px) {
        .about-content {
          flex-direction: column;
          gap: 24px;
        }
        .values-list {
          flex-direction: column;
          gap: 20px;
          align-items: stretch;
        }
        .about-image,
        .about-text {
          max-width: 100%;
        }
      }







      /*-----------------------------------*\
  * #CORPORATE GIFTS PAGE */

  .hero-short {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-short::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-short .container {
  position: relative;
  z-index: 1;
}

.hero-short-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-short-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}


.product-category-block {
  margin-bottom: 60px;
}

.category-title {
  font-size: 2rem;
  color: #22223b;
  margin-bottom: 10px;
}

.category-description {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #555;
}



/* TESTIMONIAL SECTION */
.testimonials {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.testimonials .section-title {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

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

.testimonial-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: #FF9800;
  font-weight: 600;
  margin-top: 10px;
  text-align: right;
}

/* Optional: Add a quote icon */
.testimonial-card::before {
  content: "“";
  font-size: 3rem;
  color: #FF9800;
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: serif;
  opacity: 0.1;
}
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .about-image, .about-text {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .section.about {
    padding: 32px 0;
  }
  .about-content {
    gap: 16px;
  }
  .about-highlights {
    flex-direction: column;
    gap: 12px;
  }
  .about-highlights li {
    min-width: 0;
    padding: 12px 10px;
  }
}


/*STYLING THE FOOTER LOGO(MOBILE RESPONSIVENESS)*/


            .logo-footer {
              margin-bottom: 1rem;
              transition: transform 0.2s;
            }
            .logo-footer:hover {
              transform: scale(1.05);
            }
            @media (max-width: 600px) {
              .logo-footer {
                max-width: 120px;
              }
              .logo-footer img {
                max-width: 120px;
                min-width: 80px;
              }
            }







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

  /* --- Pagination Styling --- */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.custom-pagination {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-pagination li {
  display: inline-flex;
}

.custom-pagination button {
  border: none;
  padding: 8px 14px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
}

.custom-pagination button:hover {
  background: #f68b1e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(246,139,30,0.2);
}

.custom-pagination button.active {
  background: #f68b1e;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(246,139,30,0.25);
  transform: translateY(-1px);
}


/* --- Prev/Next Button Styling --- */
.custom-pagination .arrow-btn {
  background: #fff;
  color: #f68b1e;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #f68b1e;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-pagination .arrow-btn:hover:not(:disabled) {
  background: #f68b1e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(246,139,30,0.25);
}

.custom-pagination .arrow-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #fafafa;
  border-color: #ddd;
  color: #aaa;
}



/* --- Color Swatches --- */

/* ===== New styles for swatch overlay on right of product image ===== */
.image-figure {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 6px;
  box-sizing: border-box;
  overflow: hidden;
}

.image-figure .product-card-main-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
}

.swatch-overlay {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  z-index: 6;
  max-height: 84%;
  overflow-y: auto;
  backdrop-filter: blur(2px);
}

.swatch-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  padding: 0;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.swatch-btn:hover,
.swatch-btn:focus {
  transform: scale(1.08);
  border-color: #999;
}
.swatch-btn.active {
  border: 2px solid #f68b1e;
  box-shadow: 0 6px 14px rgba(246,139,30,0.12);
}

/* responsive tweaks */
@media (max-width: 720px) {
  .swatch-overlay {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    padding: 8px 6px;
    max-height: none;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
    background: transparent;
  }
  .swatch-btn {
    width: 28px;
    height: 28px;
  }
}
