/* --- Root Variables (Theme Colors from Logo) --- */
:root {
  --keto-primary-red: #a32125;
  /* Dark Red from Keto 'K' Logo */
  --keto-dark-black: #050505;
  /* Black from Keto text */
  --keto-pure-white: #ffffff;
  --keto-light-gray: #f8f9fa;
  --keto-border-gray: #e9ecef;
  --keto-text-gray: #555555;
  --keto-text-muted: #888888;

  --keto-font-heading: "Poppins", sans-serif;
  --keto-font-body: "Open Sans", sans-serif;

  --keto-transition-fast: all 0.3s ease-in-out;
  --keto-transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- CSS Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--keto-font-body);
  color: var(--keto-text-gray);
  background-color: var(--keto-pure-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--keto-font-heading);
  color: var(--keto-dark-black);
  font-weight: 500;
  /* Kam kiya gaya weight global headings ke liye */
}

a {
  text-decoration: none;
}

/* =========================================
           FIXED SOCIAL MEDIA ICONS
           ========================================= */
.keto-fixed-socials {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1060;
}

.keto-social-link {
  width: 45px;
  height: 45px;
  background-color: var(--keto-dark-black);
  color: var(--keto-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--keto-transition-smooth);
  text-decoration: none;
  border-radius: 8px 0 0 8px; /* Inner edges rounded */
  margin-right: -5px; /* Slight hide effect */
  box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.1);
}

.keto-social-link:hover {
  margin-right: 0;
  width: 55px; /* Smooth expand effect */
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
}

/* Special Brand Color for WhatsApp */
.keto-social-link.whatsapp {
  background-color: #25d366;
}

.keto-social-link.whatsapp:hover {
  background-color: #128c7e;
}

/* =========================================
           SECTION 1: PREMIUM TWO-TIER NAVBAR 
           ========================================= */

.keto-header-wrapper {
  background-color: var(--keto-pure-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  transition: var(--keto-transition-smooth);
}

.keto-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.keto-logo-box {
  flex-shrink: 0;
  padding: 12px 0;
  transition: var(--keto-transition-fast);
}

.keto-logo-box:hover {
  transform: scale(1.02);
}

.keto-brand-logo {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.keto-nav-center-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.keto-nav-top-row {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.keto-top-link-item {
  font-family: var(--keto-font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--keto-text-muted);
  transition: var(--keto-transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.keto-top-link-item i {
  color: var(--keto-primary-red);
  font-size: 0.95rem;
}

.keto-top-link-item:hover {
  color: var(--keto-primary-red);
}

.keto-nav-bottom-row {
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 15px 0 12px 0;
}

.keto-bottom-link-item {
  font-family: var(--keto-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--keto-dark-black);
  position: relative;
  transition: var(--keto-transition-fast);
  padding-bottom: 6px;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

.keto-bottom-link-item::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--keto-primary-red);
  transition: var(--keto-transition-smooth);
  border-radius: 3px;
}

.keto-bottom-link-item:hover,
.keto-bottom-link-item.active-link {
  color: var(--keto-primary-red);
}

.keto-bottom-link-item:hover::after,
.keto-bottom-link-item.active-link::after {
  width: 100%;
}

.keto-dropdown-wrap:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  border-radius: 0 0 10px 10px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--keto-primary-red);
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.keto-dropdown-wrap .dropdown-menu {
  transition: var(--keto-transition-fast);
  padding: 10px 0;
  min-width: 220px;
}

.keto-dropdown-wrap .dropdown-item {
  font-family: var(--keto-font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 25px;
  color: var(--keto-text-gray);
  transition: var(--keto-transition-fast);
  border-bottom: 1px solid var(--keto-light-gray);
}

.keto-dropdown-wrap .dropdown-item:last-child {
  border-bottom: none;
}

.keto-dropdown-wrap .dropdown-item:hover {
  background-color: var(--keto-light-gray);
  color: var(--keto-primary-red);
  padding-left: 32px;
}

.keto-nav-actions-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.keto-round-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--keto-transition-smooth);
  text-decoration: none;
  border: 2px solid var(--keto-primary-red);
  box-shadow: 0 4px 10px rgba(163, 33, 37, 0.2);
}

.keto-round-icon-btn:hover {
  background-color: var(--keto-pure-white);
  color: var(--keto-primary-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(163, 33, 37, 0.3);
}

.keto-mobile-toggle-btn {
  background: none;
  border: none;
  color: var(--keto-dark-black);
  font-size: 1.8rem;
  padding: 5px;
  cursor: pointer;
  transition: var(--keto-transition-fast);
}

.keto-mobile-toggle-btn:hover {
  color: var(--keto-primary-red);
}

.keto-mobile-offcanvas {
  background-color: var(--keto-pure-white);
  border-right: none;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
}

.keto-mobile-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--keto-border-gray);
  padding: 15px 20px;
}

.keto-mobile-offcanvas .offcanvas-body {
  padding: 20px;
}

.keto-mobile-menu-link {
  display: block;
  font-family: var(--keto-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--keto-dark-black);
  padding: 14px 0;
  border-bottom: 1px solid var(--keto-border-gray);
  transition: var(--keto-transition-fast);
}

.keto-mobile-menu-link:hover {
  color: var(--keto-primary-red);
  padding-left: 12px;
}

@media (max-width: 1199px) {
  .keto-nav-center-box {
    padding: 0 20px;
  }

  .keto-nav-bottom-row {
    gap: 30px;
  }

  .keto-nav-top-row {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .keto-header-container {
    padding: 12px 20px;
  }

  .keto-brand-logo {
    max-height: 55px;
  }

  .keto-nav-actions-box {
    gap: 10px;
  }

  .keto-round-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* =========================================
           SECTION 2: PREMIUM HERO SLIDER
           ========================================= */

.keto-hero-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--keto-dark-black);
}

.keto-hero-carousel-item {
  position: relative;
  height: 85vh;
  min-height: 500px;
  background-color: #111;
  overflow: hidden;
}

.keto-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1);
  transition: transform 6s ease-in-out;
}

.carousel-item.active .keto-hero-bg-img {
  transform: scale(1.05);
}

.keto-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.keto-hero-content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.keto-hero-content-box {
  max-width: 850px;
  padding: 0 15px;
  position: relative;
}

.keto-hero-subheading {
  font-family: var(--keto-font-heading);
  color: var(--keto-primary-red);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.keto-hero-subheading::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--keto-primary-red);
  display: inline-block;
}

.keto-hero-heading {
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--keto-pure-white);
  line-height: 1.15;
  margin-bottom: 25px;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.keto-btn-pill-custom {
  display: inline-flex;
  align-items: center;
  background-color: var(--keto-pure-white);
  color: var(--keto-dark-black);
  font-family: var(--keto-font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 6px 6px 6px 25px;
  border-radius: 50px;
  transition: var(--keto-transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.keto-btn-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-left: 15px;
  transition: var(--keto-transition-fast);
  font-size: 1.1rem;
}

.keto-btn-pill-custom:hover {
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
  transform: translateX(5px);
}

.keto-btn-pill-custom:hover .keto-btn-pill-icon {
  background-color: var(--keto-pure-white);
  color: var(--keto-primary-red);
}

.keto-carousel-indicators {
  justify-content: flex-start;
  margin-left: 8%;
  margin-bottom: 40px;
  z-index: 3;
}

.keto-carousel-indicators button {
  width: 40px !important;
  height: 4px !important;
  border-radius: 2px;
  margin-right: 10px !important;
  background-color: var(--keto-pure-white) !important;
  opacity: 0.4;
  border: none !important;
  transition: var(--keto-transition-smooth) !important;
}

.keto-carousel-indicators button.active {
  opacity: 1;
  width: 60px !important;
  background-color: var(--keto-primary-red) !important;
}

@media (max-width: 991px) {
  .keto-hero-heading {
    font-size: 3.5rem;
  }

  .keto-hero-carousel-item {
    height: 70vh;
    min-height: 500px;
  }

  .keto-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .keto-carousel-indicators {
    margin-left: 5%;
  }
}

@media (max-width: 768px) {
  .keto-hero-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .keto-hero-overlay {
    background: rgba(0, 0, 0, 0.55);
  }

  .keto-hero-content-container {
    justify-content: center;
    text-align: center;
  }

  .keto-hero-subheading {
    justify-content: center;
  }

  .keto-hero-subheading::before,
  .keto-hero-subheading::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: var(--keto-primary-red);
    display: inline-block;
  }

  .keto-carousel-indicators {
    justify-content: center;
    margin-left: 0;
  }
}

/* =========================================
           GLOBAL SECTION HEADER (CENTERED & BIGGER)
           ========================================= */
.keto-section-header-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  text-align: center;
  flex-wrap: wrap;
}

.keto-number-outline {
  font-family: var(--keto-font-heading);
  font-size: 7rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 2px #e5e5e5;
  line-height: 1;
  margin-right: 25px;
}

.keto-section-title-clean {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--keto-dark-black);
  margin: 0;
  text-transform: capitalize;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .keto-section-header-centered {
    margin-bottom: 35px;
  }

  .keto-number-outline {
    font-size: 4.5rem;
    margin-right: 15px;
    -webkit-text-stroke: 1.5px #e5e5e5;
  }

  .keto-section-title-clean {
    font-size: 2.5rem;
  }
}

/* =========================================
           SECTION 3: ABOUT US 
           ========================================= */
.keto-about-wrapper {
  padding: 90px 0 60px 0;
  background-color: var(--keto-pure-white);
  overflow: hidden;
}

.keto-about-img-box {
  position: relative;
  z-index: 1;
  padding-right: 30px;
  padding-bottom: 30px;
}

.keto-about-img-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 4px solid var(--keto-primary-red);
  border-radius: 8px;
  z-index: -1;
  transition: var(--keto-transition-smooth);
}

.keto-about-img-box:hover::before {
  transform: translate(-15px, -15px);
}

.keto-about-main-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.keto-about-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--keto-dark-black);
  color: var(--keto-pure-white);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 8px solid var(--keto-pure-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.keto-about-badge-number {
  font-family: var(--keto-font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--keto-primary-red);
  margin-bottom: 5px;
}

.keto-about-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.keto-about-text {
  color: var(--keto-text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.keto-about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.keto-about-features li {
  width: calc(50% - 15px);
  font-size: 1.1rem;
  font-family: var(--keto-font-heading);
  font-weight: 600;
  color: var(--keto-dark-black);
  display: flex;
  align-items: center;
}

.keto-about-features li i {
  color: var(--keto-primary-red);
  margin-right: 12px;
  font-size: 1.3rem;
}

@media (max-width: 991px) {
  .keto-about-img-box {
    margin-bottom: 60px;
    padding-right: 20px;
  }

  .keto-about-badge {
    width: 140px;
    height: 140px;
    border-width: 6px;
  }

  .keto-about-badge-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .keto-about-features li {
    width: 100%;
  }

  .keto-about-img-box::before {
    display: none;
  }

  .keto-about-img-box {
    padding-right: 0;
    padding-bottom: 0;
  }

  .keto-about-badge {
    right: -10px;
    bottom: -20px;
    width: 120px;
    height: 120px;
  }

  .keto-about-badge-number {
    font-size: 2rem;
  }
}

/* =========================================
           SECTION 4: 02 EXPLORE PRODUCTS (CAROUSEL)
           ========================================= */
.keto-explore-section {
  padding: 60px 0 90px 0;
  background-color: var(--keto-light-gray);
}

.keto-interior-card {
  text-decoration: none;
  display: block;
  background-color: var(--keto-pure-white);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: var(--keto-transition-fast);
}

.keto-interior-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.keto-interior-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}

.keto-interior-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.keto-interior-card:hover .keto-interior-img-wrapper img {
  transform: scale(1.08);
}

.keto-interior-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.keto-interior-card-title {
  color: var(--keto-dark-black);
  font-family: var(--keto-font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
  transition: var(--keto-transition-fast);
}

.keto-interior-card:hover .keto-interior-card-title {
  color: var(--keto-primary-red);
}

.keto-circle-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--keto-light-gray);
  color: var(--keto-text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  transition: var(--keto-transition-fast);
}

.keto-interior-card:hover .keto-circle-arrow-btn {
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
}

.keto-products-indicators {
  bottom: -50px;
  margin-bottom: 0;
}

.keto-products-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: var(--keto-text-gray) !important;
  opacity: 0.4;
  margin: 0 6px !important;
  border: none !important;
  transition: var(--keto-transition-fast);
}

.keto-products-indicators button.active {
  opacity: 1;
  background-color: var(--keto-primary-red) !important;
  transform: scale(1.3);
}

/* =========================================
           SECTION 5: 03 FIND WHAT YOU NEED
           ========================================= */
.keto-find-section {
  padding: 60px 0 90px 0;
  background-color: var(--keto-pure-white);
}

.keto-find-box {
  background-color: var(--keto-dark-black);
  color: var(--keto-pure-white);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  height: 100%;
  transition: var(--keto-transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.keto-find-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.keto-find-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: var(--keto-transition-fast);
}

.keto-find-box:hover .keto-find-icon {
  border-color: var(--keto-primary-red);
  color: var(--keto-primary-red);
}

.keto-find-content h3 {
  font-family: var(--keto-font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--keto-pure-white);
  margin-bottom: 10px;
}

.keto-find-content p {
  font-size: 0.95rem;
  color: #d1d1d1;
  margin-bottom: 25px;
  line-height: 1.5;
}

.keto-find-btn {
  display: inline-flex;
  align-items: center;
  color: var(--keto-pure-white);
  border: 1px solid var(--keto-pure-white);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: var(--keto-font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--keto-transition-fast);
}

.keto-find-btn:hover {
  background-color: var(--keto-primary-red);
  border-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
}

@media (max-width: 768px) {
  .keto-find-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .keto-find-content h3 {
    font-size: 1.3rem;
  }
}

/* =========================================
           SECTION 6: THE KETO PLY GUARANTEE
           ========================================= */
.keto-guarantee-wrapper {
  padding: 80px 0;
  background-color: var(--keto-light-gray);
  text-align: center;
}

.keto-guarantee-main-heading {
  font-family: var(--keto-font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--keto-dark-black);
  margin-bottom: 60px;
  text-transform: capitalize;
}

/* 5 items alignment layout */
.keto-guarantee-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.keto-guarantee-col {
  flex: 0 0 18%;
  /* Takes about 1/5th space */
  max-width: 200px;
}

.keto-guarantee-item {
  padding: 15px 5px;
  transition: var(--keto-transition-fast);
}

.keto-guarantee-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--keto-primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 2.2rem;
  color: var(--keto-primary-red);
  background-color: var(--keto-pure-white);
  transition: var(--keto-transition-smooth);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.keto-guarantee-item:hover .keto-guarantee-icon-box {
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(163, 33, 37, 0.2);
}

.keto-guarantee-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--keto-text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 991px) {
  .keto-guarantee-main-heading {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }

  .keto-guarantee-col {
    flex: 0 0 30%;
    max-width: none;
  }

  /* 3 items per row */
}

@media (max-width: 768px) {
  .keto-guarantee-wrapper {
    padding: 50px 0;
  }

  .keto-guarantee-main-heading {
    font-size: 2.2rem;
  }

  .keto-guarantee-col {
    flex: 0 0 45%;
  }

  /* 2 items per row */
  .keto-guarantee-icon-box {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
  }

  .keto-guarantee-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .keto-guarantee-col {
    flex: 0 0 100%;
    max-width: 250px;
  }

  /* Stack completely */
}

/* =========================================
           SECTION 7: PARALLAX DIVIDER
           ========================================= */
.keto-parallax-divider {
  position: relative;
  width: 100%;
  height: 30vh;
  background-image: url("../images/backgrounds/home-paralox.jpeg");
  /* Premium wood texture */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* =========================================
           SECTION 8: QUALITY, SERVICE, INNOVATION (TEXT)
           ========================================= */
.keto-text-section {
  background-color: var(--keto-dark-black);
  padding: 80px 0;
  color: #d1d1d1;
}

.keto-text-heading {
  font-family: var(--keto-font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--keto-pure-white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.keto-text-divider {
  width: 70px;
  height: 3px;
  background-color: var(--keto-primary-red);
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.keto-text-content p {
  font-family: var(--keto-font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.keto-text-content strong {
  color: var(--keto-pure-white);
  font-weight: 700;
}

@media (max-width: 991px) {
  .keto-text-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .keto-text-section {
    padding: 60px 0;
  }

  .keto-text-heading {
    font-size: 2rem;
  }

  .keto-text-content p {
    font-size: 0.95rem;
    text-align: left;
    /* Better readability on small screens */
  }
}

/* =========================================
           SECTION 9: TESTIMONIALS
           ========================================= */
.keto-testimonial-section {
  background-color: var(--keto-light-gray);
  padding: 80px 0 100px 0;
  text-align: center;
}

.keto-testimonial-card {
  background-color: var(--keto-pure-white);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.keto-quote-icon {
  font-size: 4rem;
  color: var(--keto-primary-red);
  opacity: 0.15;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: -1;
}

.keto-client-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--keto-text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.keto-client-name {
  font-family: var(--keto-font-heading);
  font-weight: 700;
  color: var(--keto-dark-black);
  font-size: 1.2rem;
  margin: 0 0 5px 0;
}

.keto-client-role {
  color: var(--keto-primary-red);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.keto-testimonial-indicators {
  bottom: -50px;
}

.keto-testimonial-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: var(--keto-text-gray) !important;
  opacity: 0.4;
  margin: 0 5px !important;
  border: none !important;
}

.keto-testimonial-indicators button.active {
  opacity: 1;
  background-color: var(--keto-primary-red) !important;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .keto-testimonial-card {
    padding: 40px 20px;
  }

  .keto-client-text {
    font-size: 1.05rem;
  }

  .keto-quote-icon {
    font-size: 3rem;
    top: 20px;
    left: 20px;
  }
}

/* =========================================
           SECTION 10: PREMIUM FOOTER
           ========================================= */
.keto-footer {
  background-color: var(--keto-light-gray);
  /* Dark se light background kiya */
  color: var(--keto-text-gray);
  /* Light text se dark text kiya */
  padding-top: 80px;
  border-top: 1px solid var(--keto-border-gray);
  /* Red border hata kar subtle gray border lagaya */
}

.keto-footer-logo {
  max-height: 60px;
  margin-bottom: 25px;
  /* Filter hata diya taaki original logo dikhe */
}

.keto-footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.keto-footer-heading {
  color: var(--keto-dark-black);
  /* White se black heading ki */
  font-family: var(--keto-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.keto-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--keto-primary-red);
  border-radius: 2px;
}

.keto-footer-link {
  color: var(--keto-text-gray);
  /* Light gray se dark gray kiya */
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  transition: var(--keto-transition-fast);
  font-size: 0.95rem;
  font-weight: 500;
}

.keto-footer-link:hover {
  color: var(--keto-primary-red);
  transform: translateX(5px);
}

.keto-footer-contact p {
  margin-bottom: 18px;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  font-weight: 500;
}

.keto-footer-contact i {
  color: var(--keto-primary-red);
  width: 30px;
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Footer Newsletter */
.keto-newsletter-form {
  position: relative;
}

.keto-newsletter-input {
  background: var(--keto-pure-white);
  /* Light background for input */
  border: 1px solid var(--keto-border-gray);
  color: var(--keto-dark-black);
  padding: 12px 20px;
  border-radius: 50px;
  width: 100%;
  margin-bottom: 15px;
  font-size: 0.95rem;
  transition: var(--keto-transition-fast);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
}

.keto-newsletter-input:focus {
  outline: none;
  border-color: var(--keto-primary-red);
  background: var(--keto-pure-white);
  box-shadow: 0 0 0 3px rgba(163, 33, 37, 0.1);
}

.keto-newsletter-btn {
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
  border: 2px solid var(--keto-primary-red);
  padding: 10px 25px;
  border-radius: 50px;
  font-family: var(--keto-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--keto-transition-fast);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.keto-newsletter-btn:hover {
  background-color: var(--keto-dark-black);
  border-color: var(--keto-dark-black);
  color: var(--keto-pure-white);
}

/* Footer Bottom Bar */
.keto-footer-bottom {
  background-color: var(--keto-pure-white);
  /* Dark se white kiya */
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid var(--keto-border-gray);
}

.keto-footer-bottom-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--keto-text-muted);
  font-weight: 500;
}

.keto-footer-bottom-links a {
  color: var(--keto-text-muted);
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.9rem;
  transition: var(--keto-transition-fast);
  font-weight: 500;
}

.keto-footer-bottom-links a:hover {
  color: var(--keto-primary-red);
}

@media (max-width: 991px) {
  .keto-footer-bottom {
    text-align: center;
  }

  .keto-footer-bottom-links {
    margin-top: 15px;
  }

  .keto-footer-bottom-links a {
    margin: 0 10px;
  }
}

/* =========================================
           COOKIE CONSENT BANNER 
           ========================================= */
.keto-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--keto-dark-black);
  color: var(--keto-pure-white);
  z-index: 1060;
  padding: 15px 0;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease-in-out;
  border-top: 2px solid var(--keto-primary-red);
}

.keto-cookie-banner.hidden {
  transform: translateY(100%);
}

.keto-cookie-text {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 400;
}

.keto-cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.keto-cookie-btn {
  font-family: var(--keto-font-heading);
  font-weight: 600;
  padding: 8px 25px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: var(--keto-transition-fast);
  cursor: pointer;
  border: none;
}

.keto-cookie-accept {
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
}

.keto-cookie-accept:hover {
  background-color: var(--keto-pure-white);
  color: var(--keto-primary-red);
}

.keto-cookie-decline {
  background-color: transparent;
  color: var(--keto-pure-white);
  border: 1px solid var(--keto-pure-white);
}

.keto-cookie-decline:hover {
  background-color: var(--keto-pure-white);
  color: var(--keto-dark-black);
}

@media (max-width: 768px) {
  .keto-cookie-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* @@@@@@@@@@ contact us page @@@@@@@@ */
/* =========================================
           SECTION 1: PAGE HEADER BANNER
           ========================================= */
.keto-page-header {
  position: relative;
  padding: 140px 0 100px 0;
  background-image: url("../images/banner/contact-ban.jpeg"); /* Premium office/contact background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  height: 60vh;
}

.keto-page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.85); /* Dark overlay */
  z-index: 1;
}

.keto-page-header-content {
  position: relative;
  z-index: 2;
}

.keto-page-title {
  font-size: 3.8rem;
  color: var(--keto-pure-white);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.keto-page-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: var(--keto-font-heading);
  font-weight: 500;
  color: var(--keto-pure-white);
  font-size: 1.05rem;
}

.keto-page-breadcrumb a {
  color: var(--keto-pure-white);
  transition: var(--keto-transition-fast);
}

.keto-page-breadcrumb a:hover {
  color: var(--keto-primary-red);
}

.keto-page-breadcrumb span {
  color: var(--keto-primary-red);
}

/* =========================================
           SECTION 2: CONTACT MAIN AREA
           ========================================= */
.keto-contact-wrapper {
  padding: 100px 0;
  background-color: var(--keto-light-gray);
}

/* --- Left Side: Contact Form --- */
.keto-contact-form-box {
  background-color: var(--keto-pure-white);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.keto-contact-heading {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.keto-contact-subtext {
  color: var(--keto-text-muted);
  margin-bottom: 35px;
  font-size: 1rem;
}

.keto-form-group {
  margin-bottom: 25px;
}

.keto-form-label {
  font-family: var(--keto-font-heading);
  font-weight: 600;
  color: var(--keto-dark-black);
  margin-bottom: 8px;
  display: block;
  font-size: 0.95rem;
}

.keto-form-input,
.keto-form-textarea {
  width: 100%;
  background-color: var(--keto-light-gray);
  border: 1px solid var(--keto-border-gray);
  padding: 15px 20px;
  border-radius: 8px;
  font-family: var(--keto-font-body);
  font-size: 1rem;
  color: var(--keto-dark-black);
  transition: var(--keto-transition-fast);
}

.keto-form-input:focus,
.keto-form-textarea:focus {
  outline: none;
  background-color: var(--keto-pure-white);
  border-color: var(--keto-primary-red);
  box-shadow: 0 0 0 4px rgba(163, 33, 37, 0.1);
}

.keto-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.keto-submit-btn {
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
  border: 2px solid var(--keto-primary-red);
  padding: 12px 35px;
  border-radius: 50px;
  font-family: var(--keto-font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--keto-transition-fast);
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.keto-submit-btn:hover {
  background-color: transparent;
  color: var(--keto-primary-red);
}

/* --- Right Side: Contact Info Cards --- */
.keto-contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
}

.keto-info-card {
  background-color: var(--keto-dark-black);
  padding: 35px 30px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--keto-transition-smooth);
  border-bottom: 4px solid transparent;
}

.keto-info-card:hover {
  transform: translateX(-10px);
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--keto-primary-red);
}

.keto-info-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--keto-primary-red);
  flex-shrink: 0;
  transition: var(--keto-transition-fast);
}

.keto-info-card:hover .keto-info-icon {
  background-color: var(--keto-primary-red);
  color: var(--keto-pure-white);
  border-color: var(--keto-primary-red);
}

.keto-info-content h4 {
  color: var(--keto-pure-white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.keto-info-content p {
  color: #cccccc;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.keto-info-content a {
  color: #cccccc;
  transition: var(--keto-transition-fast);
}

.keto-info-content a:hover {
  color: var(--keto-primary-red);
}

/* =========================================
           SECTION 3: GOOGLE MAP
           ========================================= */
.keto-map-header {
  text-align: center;
  padding: 50px 0 30px 0;
  /* background-color: var(--keto-pure-white); */
}

.keto-map-header h2 {
  font-size: 2.8rem;
  color: var(--keto-dark-black);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.keto-map-section {
  width: 100%;
  height: 450px;
  /* background-color: #e5e3df; */
  position: relative;
}

.keto-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* Grayscale filter to make the map look premium */
  filter: grayscale(100%) contrast(120%);
  transition: var(--keto-transition-smooth);
}

.keto-map-iframe:hover {
  filter: grayscale(0%) contrast(100%);
}

/* Responsive */
@media (max-width: 991px) {
  .keto-page-title {
    font-size: 3rem;
  }
  .keto-contact-form-box {
    padding: 40px 25px;
  }
}

@media (max-width: 768px) {
  .keto-page-header {
    padding: 100px 0 70px 0;
  }
  .keto-page-title {
    font-size: 2.2rem;
  }
  .keto-info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .keto-info-card:hover {
    transform: translateY(-5px);
  }
}

/* @@@@@@@@ blogs page @@@@@@@@ */
/* =========================================
           SECTION 1: BLOG PAGE HERO BANNER
           ========================================= */
.keto-blogpage-hero {
  position: relative;
  padding: 140px 0 100px 0;
  background-image: url("../images/banner/blog-ban.jpeg"); /* Inspiration/Blog background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  height: 60vh;
}

.keto-blogpage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.85);
  z-index: 1;
}

.keto-blogpage-content {
  position: relative;
  z-index: 2;
}

.keto-blogpage-title {
  font-size: 3.8rem;
  color: var(--keto-pure-white);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.keto-blogpage-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: var(--keto-font-heading);
  font-weight: 500;
  color: var(--keto-pure-white);
  font-size: 1.05rem;
}

.keto-blogpage-breadcrumb a {
  color: var(--keto-pure-white);
  transition: var(--keto-transition-fast);
}

.keto-blogpage-breadcrumb a:hover {
  color: var(--keto-primary-red);
}

.keto-blogpage-breadcrumb span {
  color: var(--keto-primary-red);
}

/* =========================================
           SECTION 2: BLOG CONTENT AREA
           ========================================= */
.keto-blog-wrapper {
  padding: 80px 0 100px 0;
}

/* --- Blog Page Heading --- */
.keto-blog-heading {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--keto-dark-black);
  text-transform: uppercase;
}

/* --- Standard Blog Cards (Grid) --- */
.keto-blog-card {
  background-color: var(--keto-pure-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--keto-transition-smooth);
  border-bottom: 3px solid transparent;
}

.keto-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--keto-primary-red);
}

.keto-blog-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.keto-blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.keto-blog-card:hover .keto-blog-card-img-wrap img {
  transform: scale(1.08);
}

.keto-blog-card-content {
  padding: 30px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.keto-blog-card-content h3 {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 600;
}

.keto-blog-card-content h3 a {
  color: var(--keto-dark-black);
  transition: var(--keto-transition-fast);
}

.keto-blog-card-content h3 a:hover {
  color: var(--keto-primary-red);
}

.keto-blog-card-content p {
  color: var(--keto-text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Read More Button Link */
.keto-blog-read-more {
  display: inline-flex;
  align-items: center;
  font-family: var(--keto-font-heading);
  font-weight: 600;
  color: var(--keto-dark-black);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--keto-transition-fast);
  margin-top: auto;
}

.keto-blog-read-more i {
  margin-left: 8px;
  color: var(--keto-primary-red);
  transition: var(--keto-transition-fast);
}

.keto-blog-read-more:hover {
  color: var(--keto-primary-red);
}

.keto-blog-read-more:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .keto-blogpage-title {
    font-size: 3rem;
  }
  .keto-blog-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .keto-blogpage-hero {
    padding: 100px 0 70px 0;
  }
  .keto-blogpage-title {
    font-size: 2.2rem;
  }
  .keto-blog-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
