:root {
  --primary-color: #3f3d8f;
  --secondary-color: #5a57c4;
  --alternative-color: #f8f9fa;
  --dark-color: #111;
  --paragraph-color: #4a4a4a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.section-subtitle {
  font-family: "MrsSaintDelafield", sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.4;
}

.section-title {
  font-family: "Andika", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.4;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 23px;
  }

  .faq-section .design {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
}

.section-paragraph {
  font-size: clamp(13px, 1.2vw, 16px);
  text-transform: capitalize;
  color: var(--paragraph-color);
  line-height: 1.6;
}

@font-face {
  font-family: "Andika";
  src:
    url("../fonts/Andika-Regular.woff2") format("woff2"),
    url("../fonts/Andika-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MrsSaintDelafield";
  src:
    url("../fonts/MrsSaintDelafield-Regular.woff2") format("woff2"),
    url("../fonts/MrsSaintDelafield-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============ TOP BAR ============ */
.top-bar {
  background-image: url(../img/top-banner.png);
  font-size: 14px;
  color: #fff;
}

.offer {
  text-align: center;
  font-family: "inter", serif;
  font-size: clamp(11px, 1.5vw, 13px);
  word-spacing: 1px;
  font-weight: 560;
}

.offer i {
  font-size: clamp(10px, 1.5vw, 13px);
  color: #f7dd49;
}

@media (max-width: 991px) {
  .top-bar {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 12px;
  }
}

/* ============ NAVBAR ============ */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 65px;
  width: auto;
  transition: 0.3s ease;
}

.navbar .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navbar .nav-link {
  color: var(--dark-color);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 0.4px currentColor;
}

.navbar a {
  text-decoration: none;
}

.button {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  font-size: clamp(12px, 1.2vw, 14px);
  padding: 8px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 71, 168, 0.3);
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.button:hover::before {
  left: 120%;
}

.dropdown-menu {
  scrollbar-width: thin;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mega-menu .row {
  max-width: 1200px;
  margin: auto;
}

.navbar .dropdown {
  position: static;
}

.menu-title {
  font-size: clamp(14px, 2vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;

  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: transparent;
  background-clip: text;
}

.dropdown-item {
  display: block;
  padding: 6px 0;
  transition: 0.3s;
  font-size: clamp(13px, 1.2vw, 16px);
}

.dropdown-item:hover {
  color: var(--primary-color);
  padding-left: 6px;
}

.dropdown-item:active {
  color: var(--secondary-color);
  background-color: transparent;
}

.menu-image-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-image-box img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 10px;
  transition: 0.3s ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .nav-link {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar .navbar-nav .nav-link {
    padding: 1.4rem 0;
  }

  .navbar .navbar-nav .nav-item {
    margin: 0 1.2rem;
  }

  .navbar .dropdown-menu {
    left: 0;
    right: 0;
    transform: none;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 991px) {
  .dropdown-menu {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .menu-title {
    font-size: 16px;
  }

  .dropdown-item {
    font-size: 14px;
  }

  .navbar-brand img {
    height: 54px;
  }

  .navbar-nav {
    text-align: center;
    padding-top: 10px;
  }

  .navbar .nav-link {
    font-size: 14px;
  }

  .navbar-nav .nav-item {
    margin: 8px 0;
  }

  .navbar .nav-item::after {
    display: none;
  }

  .mega-menu {
    width: 100%;
  }

  .menu-image-box {
    display: none;
  }

  .dropdown-menu {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .navbar-nav {
    padding: 10px 0 0;
  }

  .menu-title {
    font-size: 15px;
  }

  .dropdown-item {
    font-size: 13px;
  }

  .navbar-collapse {
    padding: 0px 0 15px;
  }

  .navbar-brand img {
    height: 46px;
  }

  .navbar .nav-link {
    font-size: 13px;
  }

  .button {
    margin-top: 10px;
    width: 80%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ FOOTER SECTION ============ */
.footer-top {
  margin-top: 80px;
  position: relative;
  background: #2c3e50;
  color: #fff;
  max-width: 100%;
  padding: 40px 0 35px;
}

.footer-logo {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.footer-logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eee;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-text {
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: auto;
  line-height: 1.6;
  position: relative;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-text p {
  margin: 0;
  font-family: "Andika", sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
}

.footer-wrapper {
  width: 80%;
  margin: auto;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links li i {
  color: #ccc;
  font-size: 12px;
  transition: 0.3s;
}

.footer-links li:hover i {
  color: var(--secondary-color);
}

.footer-links li:hover a {
  color: #fff;
}

.footer-links h4,
.footer-contact h4,
.social h4 {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.4px;
  font-family: "Andika", sans-serif;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a,
.footer-contact a,
.copyright a {
  color: #cfcfcf;
  text-decoration: none;
  font-family: "Andika", sans-serif;
  font-size: clamp(13px, 1vw, 14px);
  transition: 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.copyright a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: clamp(12px, 1vw, 14px);
  color: #cfcfcf;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  font-size: 15px;
  margin-top: 4px;
  min-width: 16px;
}

.phone-numbers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icons a i {
  color: #2c3e50;
  font-size: 16px;
}

.social-icons a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.social-icons a:hover i {
  color: #fff;
}

footer hr {
  margin: 50px 0 25px;
  border-color: rgba(255, 255, 255, 0.671);
}

.copyright {
  font-size: clamp(12px, 0.9vw, 14px);
  color: #cfcfcf;
}

.no-hover,
.no-hover:hover,
.no-hover:focus,
.no-hover:active {
  pointer-events: none;
  background: inherit !important;
  color: inherit !important;
  box-shadow: none !important;
  transform: none !important;
}

@media (max-width: 1200px) {
  .footer-top {
    margin-top: 55px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-wrapper {
    width: 98%;
  }

  .footer-about h4 {
    font-size: 18px;
  }

  .footer-about p {
    font-size: 13px;
  }
}

@media (max-width: 1008px) {
  .footer-wrapper {
    width: 100%;
  }

  .footer-links li {
    margin-bottom: 6px;
  }
}

@media (max-width: 991px) {
  .footer-top {
    margin-top: 90px;
  }

  .footer-wrapper {
    width: 90%;
  }

  .footer-bottom-row {
    margin-top: 35px;
  }
}

@media (max-width: 576px) {
  .footer-wrapper {
    width: 95%;
  }

  .footer-links li {
    margin-bottom: 7px;
  }

  .footer-contact p {
    font-size: 12px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 576px) {
  .footer-text p {
    font-size: 13px;
  }
}

/* ============ BACK-TO-TOP ============ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  z-index: 999;
  cursor: pointer;
  color: #fff;

  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  box-shadow: 0 6px 18px rgba(63, 61, 143, 0.35);

  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px) scale(1.08);

  box-shadow:
    0 0 12px rgba(90, 87, 196, 0.8),
    0 0 25px rgba(90, 87, 196, 0.5),
    0 0 40px rgba(63, 61, 143, 0.4);
}

#backToTop i {
  font-size: 16px;
}

@media (max-width: 991px) {
  #backToTop {
    width: 42px;
    height: 42px;
    right: 25px;
    bottom: 25px;
  }
}

@media (max-width: 576px) {
  #backToTop {
    width: 38px;
    height: 38px;
    right: 18px;
    bottom: 20px;
  }

  #backToTop i {
    font-size: 14px;
  }
}

/* ========================= INDEX PAGE ========================= */

/* ============ HERO SECTION ============ */
.hero-section {
  width: 95%;
  margin: auto;
}

.banner-section {
  background-image: url(../img/home-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: auto;
}

.hero-content {
  color: white;
  z-index: 2;
}

.hero-title {
  font-weight: 700;
  line-height: 1.2;
  font-size: 36px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.8;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.custom-btn,
.custom-outline-btn {
  padding: 12px 22px;
  font-size: clamp(12px, 1.2vw, 14px);
  border-radius: 10px;
  transition: 0.3s;
}

.custom-btn {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.custom-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 71, 168, 0.25);
}

.custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.custom-btn:hover::before {
  left: 120%;
}

.custom-outline-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-size: clamp(12px, 1.2vw, 14px);
}

.custom-outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.hero-images {
  position: relative;
  height: 500px;
}

.image-box {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.4s;
}

.image-box img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
}

.img-1 {
  width: 202px;
  height: 190px;
  top: 0;
  left: 10%;
}

.img-2 {
  width: 202px;
  height: 190px;
  top: 60px;
  right: 5%;
}

.img-3 {
  width: 202px;
  height: 190px;
  bottom: 15%;
  left: 10%;
}

.img-4 {
  width: 202px;
  height: 190px;
  bottom: 5%;
  right: 5%;
}

.image-box:hover {
  transform: translateY(-10px) scale(1.03);
}

@media (min-width: 1200px) {
  .hero-images {
    background-image: url(../img/banner-home-mobile.png);
    margin-left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .image-box {
    display: none;
  }
}

@media (max-width: 1200px) {
  .banner-section {
    padding: 30px 0 0;
  }

  .hero-title {
    font-size: 27px;
  }

  .hero-description {
    font-size: 14px;
    text-align: justify;
  }

  .img-1 {
    width: 180px;
    height: 170px;
    top: 0;
  }

  .img-2 {
    width: 180px;
    height: 170px;
    top: 60px;
  }

  .img-3 {
    width: 180px;
    height: 170px;
    bottom: 22%;
  }

  .img-4 {
    width: 180px;
    height: 170px;
    bottom: 10%;
  }
}

@media (max-width: 991px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    width: 100%;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 13px;
    max-width: 100%;
    text-align-last: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-images {
    height: 400px;
  }

  .banner-section {
    padding: 40px 0;
  }

  .hero-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-height: 320px;
    max-width: 380px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .image-box {
    width: 160px;
    height: 150px;
  }

  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .img-1,
  .img-2,
  .img-3,
  .img-4 {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .hero-description {
    font-size: 13px;
  }

  .custom-btn,
  .custom-outline-btn {
    padding: 10px 18px;
  }
}

@media (max-width: 576px) {
  .banner-section {
    padding: 30px 0;
  }

  .hero-title {
    font-size: 20px;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .custom-btn,
  .custom-outline-btn {
    width: 100%;
    max-width: 260px;
    padding: 10px 16px;
  }

  .hero-images {
    background-image: url(../img/banner-home-mobile.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  .image-box {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 18px;
  }

  .hero-description {
    font-size: 12px;
  }

  .hero-images {
    background-image: url(../img/banner-home-mobile.png);
    margin-left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

/* ============ ABOUT SECTION HOME ============ */
.hero-top {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--paragraph-color);
}

.hero-text .section-paragragh {
  text-align: justify;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 25px 0;
}

.hero-stats h3 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: #000;
}

.hero-stats p {
  font-size: 14px;
  margin: 0;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .hero-text {
    text-align: center;
  }

  .hero-text .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-text .section-paragragh {
    text-align: justify;
    text-align-last: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 25px;
  }

  .hero-image {
    margin-top: 50px;
  }

  .hero-image img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .hero-text {
    text-align: center;
  }

  .hero-text .section-title {
    font-size: 24px;
  }

  .hero-text .section-paragragh {
    font-size: 15px;
    text-align: justify;
    text-align-last: center;
  }

  .hero-top {
    font-size: 13px;
    justify-content: center;
    margin-bottom: 12px;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero-top {
    font-size: 12px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-image img {
    max-width: 300px;
  }
}

@media (max-width: 382px) {
  .hero-top {
    font-size: 11px;
  }

  .hero-text .section-title {
    font-size: 19px;
  }

  .hero-text .section-paragragh {
    font-size: 14px;
  }
}

/* ============ CATEGORY CARDS SECTION ============ */
.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: contain;
  transition: 0.4s ease;
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  border-radius: 20px;
  color: #fff;
}

.overlay .brand {
  font-size: 25px;
  font-family: "MrsSaintDelafield", serif;
  font-style: italic;
}

.overlay h3 {
  font-size: 32px;
  font-family: 'Andika', sans-serif;
}

.overlay h4 {
  font-size: 28px;
  font-family: 'Andika', sans-serif;
}

.overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.large-card {
  height: 100%;
  min-height: 450px;
}

.small-card {
  width: 100%;
  height: 220px;
}

.wide-card {
  height: 300px;
}

.category-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .large-card {
    height: 300px;
  }

  .small-card,
  .wide-card {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .overlay h3 {
    font-size: 22px;
  }

  .overlay h4 {
    font-size: 18px;
  }

  .large-card {
    min-height: 250px;
  }
  
  .overlay {
    padding: 15px;
  }
}

/* ============ WHY CHOOSE US SECTION ============ */
.choose-strip {
  background: #f1f1f1;
  padding: 40px 20px;
  border-radius: 20px;
}

.why-box {
  transition: all 0.3s ease;
}

.why-box:hover {
  transform: translateY(-8px);
}

.why-box h5 {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
}

.why-box p {
  font-size: clamp(12px, 1vw, 15px);
  color: var(--paragraph-color);
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}

.why-box img {
  height: 80px;
}

.why-col {
  position: relative;
}

.why-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1%;
  right: 0;
  width: 1px;
  height: 100%;
  background: #ccc;
}

@media (max-width: 991px) {
  .why-col::after {
    display: none;
  }

  .why-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .why-box p {
    max-width: 100%;
  }

  .choose-strip {
    border-radius: 12px;
    padding: 25px 15px;
  }
}

/* ============ CTA BANNER SECTION ============ */
.cta-banner {
  background: url("../img/cta-bg.png") center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
}

.cta-desc {
  max-width: 700px;
  margin: auto;
  color: #ebebeb;
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  text-align-last: center;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 70px 15px;
  }
}

@media (max-width: 576px) {
  .cta-banner {
    padding: 50px 10px;
  }

  .cta-desc {
    font-size: 13px;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============ INNOVATION SECTION ============ */
.innovation-section {
  background-color: #f3f3f3;
}

.innovation-content {
  max-width: 1200px;
}

.product-tabs {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tab-text {
  font-size: 14px;
  display: block;
}

.tab-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  margin: 0;
  transition: 0.3s;
}

.tab-btn {
  flex: 1;
  padding: 25px;
  border: none;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  display: flex;             
  align-items: center;        
  justify-content: center;    
  gap: 10px;  
}

.tab-btn:not(:last-child) {
  border-right: 1px solid #d5d5d5;
}

.tab-btn.active {
  background: #fff;
  border-bottom: 3px solid var(--primary-color);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@media (max-width: 991px) {
  .innovation-content {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .innovation-content {
    max-width: 98%;
  }

  .product-tabs {
    flex-direction: row;
  }

  .tab-text {
    display: none;
  }

  .tab-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 14px;
  }

  .tab-img {
    width: 26px;
    height: 26px;
    display: block;
    margin: auto;
  }

  .tab-btn.active {
    border-bottom: 3px solid var(--primary-color);
  }
}

/* ============ MODULAR KITCHEN SECTION ============ */
.modular-section {
  margin-bottom: 80px;
}

.modular-img {
  border-radius: 30px;
  width: 100%;
}

.overlay-box {
  position: relative;
  bottom: 0;
  left: 0;
  transform: none;
  width: 100%;
  margin-top: 20px;

  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;

  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.overlay-box p {
  font-size: clamp(13px, 1.2vw, 16px);
}

.overlay-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
}

.overlay-btn:hover {
  background: #fff;
  color: var(--primary-color);
}

.modular-desc {
  font-size: clamp(15px, 1.8vw, 16px);
  line-height: 1.6;
  text-align: justify;
  color: var(--paragraph-color);
}

.features-list h6, .features h6 {
  font-size: clamp(15px, 1.2vw, 17px);
}

.features-list p {
  font-size: clamp(13px, 1.2vw, 15px);
  text-align: justify;
  color: var(--paragraph-color);
}

.features-icon {
  width: clamp(18px, 2.5vw, 24px);
  height: clamp(18px, 2.5vw, 24px);
  color: var(--secondary-color);
  margin-top: 3px;
}

@media (min-width: 992px) {
  .overlay-box {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .modular-content {
    margin-top: 60px;
  }

  .modular-section {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .modular-content {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .modular-content {
    margin-top: 30px;
  }

  .overlay-box {
    padding: 15px;
  }

  .overlay-box p {
    font-size: 14px;
  }
}

/* ============ Blog ============ */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 18px;
  text-align: left;
}

.blog-content h6 {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content small {
  display: block;
  font-size: clamp(12px, 1vw, 13px);
  color: #888;
  margin-bottom: 12px;
}

.read-more {
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 16px);
  text-decoration: none;

  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: 0.3s ease;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .blog-left {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .blog-card img {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .blog-card img {
    height: 140px;
  }
}

/* ============ TESTIMONIAL SECTION ============ */
.testimonial-section {
  background-color: var(--alternative-color);
}

.testimonial-wrapper {
  width: 90%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-item {
  width: 100%;
  padding: 20px;
  transition: all 0.4s ease;
}

.testimonial-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 26px;
}

.client-info {
  display: flex;
  align-items: center;
}

.rating i {
  color: #ffc107;
  font-size: 14px;
}

.client-info h5 {
  font-size: 18px;
}

.client-info img {
  width: 50px;
  border-radius: 50%;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dots span {
  height: 10px;
  width: 10px;
  margin: 3px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: var(--primary-color);
}

@media (max-width: 991px) {
  .client-info h5 {
    font-size: 17px;
  }

  .testimonial-item p {
    font-size: 16px;
  }

  .quote-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .dots span {
    height: 9px;
    width: 9px;
    margin: 3px;
  }
}

@media (max-width: 767px) {
  .testimonial-item {
    width: 90%;
    margin: auto;
    padding: 15px;
  }

  .client-info h5 {
    font-size: 17px;
  }

  .testimonial-item p {
    font-size: 16px;
  }

  .quote-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .dots span {
    height: 9px;
    width: 9px;
    margin: 3px;
  }
}

@media (max-width: 576px) {
  .testimonial-item {
    width: 80%;
    margin: auto;
    padding: 15px;
  }

  .client-info h5 {
    font-size: 16px;
  }

  .testimonial-item p {
    font-size: 16px;
  }

  .quote-icon {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .dots span {
    height: 8px;
    width: 8px;
    margin: 3px;
  }
}

@media (max-width: 450px) {
  .testimonial-item {
    width: 95%;
    margin: auto;
    padding: 10px;
  }

  .client-info h5 {
    font-size: 16px;
  }

  .testimonial-item p {
    font-size: 14px;
  }

  .quote-icon {
    font-size: 22px;
    margin-bottom: 6px;
  }
}

/* ============ FAQ HOME ============ */
.faq-accordion .accordion-item {
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  background: white;
  box-shadow: none;
  padding: 18px 20px;
  font-size: clamp(14px, 1.2vw, 16px);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f4f7ff;
  color: #000;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  font-size: 15px;
  color: var(--paragraph-color);
  line-height: 1.7;
}

@media (max-width: 576px) {
  .faq-accordion .accordion-button {
    padding: 16px 18px;
  }
}

@media (max-width: 576px) {
  .faq-accordion .accordion-button {
    padding: 13px 15px;
  }
}

@media (max-width: 480px) {
  .faq-accordion .accordion-button {
    padding: 13px 15px;
    font-weight: 500;
    font-size: 14px;
  }

  .accordion-body {
    font-size: 14px;
  }
}

/* ============ INSTA SECTION ============ */
.insta-id {
  font-weight: 600;
  margin-left: 5px;
}

.insta-id a {
  text-decoration: none;
  color: var(--primary-color);
}

.insta-img {
  border-radius: 12px;
  transition: 0.3s;
}

.insta-img:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .insta-id {
    display: block;
    margin-top: 5px;
  }
}

/* ============ POP UP MODAL FORM SECTION ============ */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content-box {
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: modalfadeIn 0.4s ease;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.modal-content-box h4 {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 8px;
}

.modal-content-box p {
  font-size: clamp(13px, 2vw, 15px);
  margin-bottom: 10px;
  color: #555;
}

.modal-content-box input,
.modal-content-box textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.modal-content-box button {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 25px;
  transition: 0.3s;
}

.modal-content-box button:hover {
  background: var(--secondary-color);
}

@keyframes modalfadeIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

@media (max-width: 480px) {
  .custom-modal {
    padding: 10px;
  }

  .modal-content-box {
    padding: 20px;
    width: 95%;
    border-radius: 10px;
  }

  .modal-close-btn {
    font-size: 20px;
    top: 8px;
    right: 10px;
  }

  .modal-content-box input,
  .modal-content-box textarea {
    padding: 9px;
    font-size: 13px;
  }

  .modal-content-box button {
    padding: 11px;
  }
}

@media (max-width: 768px) {
  .modal-content-box {
    max-width: 360px;
  }
}

/* ========================= ABOUT PAGE ========================= */

/* ============ HERO SECTION ============ */
.hero {
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  height: 400px;
}

.hero-about {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.041)),
    url("../img/about-banner.jpg") center/cover no-repeat;
}

.hero-info {
  font-size: 15px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .hero-info {
    font-size: 13px;
  }

  .hero-about {
    background:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.041)),
      url("../img/about-banner.jpg") right/cover no-repeat;
  }

  .hero {
    padding: 80px 0;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-info {
    font-size: 12px;
  }

  .hero {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  .hero-info {
    width: 80%;
    margin: auto;
    font-size: 12px;
  }

  .hero {
    padding: 60px 0;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-info {
    width: 90%;
    margin: auto;
    font-size: 12px;
  }
}

/* ============ WHO WE ARE SECTION ============ */
.about-text {
  color: var(--paragraph-color);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  text-align: justify;
}

.about-text {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.7;
  text-align: justify;
  text-align-last: center;
}

.divider {
  height: 2px;
  width: 100px;
  background: linear-gradient(90deg, #0ea5a4, #1e3a8a);
  margin: 20px auto 0;
  border-radius: 10px;
}

.custom-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.253);

  transition: 0.3s;
}

.offer-imp {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
  color: var(--paragraph-color);
}

@media (max-width: 992px) {
  .divider {
    width: 50px;
    margin: 18px auto;
  }
}

@media (max-width: 768px) {
  .divider {
    width: 80px;
    margin: 10px auto;
  }
}

/* ============ WHO WE ARE SECTION ============ */
.journey-section {
  background-color: var(--alternative-color);
}

.journey-text {
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--paragraph-color);
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
}

.journey-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.103);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.journey-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.journey-number {
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.journey-card p {
  font-size: clamp(14px, 2vw, 18px);
  color: #444;
}

@media (min-width: 1200px) {
  .features {
   width: 40%;
  }
}

@media (max-width: 1199px) {
  .journey-number {
    font-size: 27px;
    margin-bottom: 12px;
  }

  .journey-card p {
    font-size: 16px;
  }

  .features {
   width: 45%;
  }

  .journey-card {
    padding: 28px 26px;
  }
}

@media (max-width: 992px) {
  .journey-number {
    font-size: 25px;
    margin-bottom: 15px;
  }

   .features {
    width: 60%;
  }

  .journey-card p {
    font-size: 15px;
  }

  .journey-card {
    padding: 20px 20px;
  }
}

@media (max-width: 768px) {
  .journey-number {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .journey-card p {
    font-size: 14px;
  }

  .journey-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .journey-card {
    padding: 20px 20px;
  }

   .features {
    max-width: 300px;
  }
}

/* ============ MISSION SECTION ============ */
.mission-section {
  background: var(--alternative-color);
}

/* ============ CTA SECTION ============ */
.cta {
  background: linear-gradient(
    to bottom right,
    #092a4e 11%,
    #0a2f57 57%,
    var(--secondary-color) 100%
  );
  color: #fff;
  border-radius: 20px;
}

/* ========================= PRODUCT PAGE ========================= */

/* ============ PRODUCT HERO SECTION ============ */
.product-hero {
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom right,
    #092a4e 11%,
    #0a2f57 57%,
    var(--secondary-color) 100%
  );
}

@media (max-width: 991px) {
  .product-hero {
    padding: 80px 0;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  .product-hero {
    padding: 60px 0;
    height: 250px;
  }
}

/* ============ PRODUCT SLIDER SECTION ============ */
.product-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.product-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px;
  align-items: stretch;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-item {
  min-width: 140px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-item i {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.products-icon {
  font-size: clamp(2rem, 5vw, 18px);
  color: var(--primary-color);
}

.product-item span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.product-item:hover {
  transform: translateY(-5px);
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: absolute;
  z-index: 2;
}

.product-prev-btn {
  left: -10px;
}

.product-next-btn {
  right: -10px;
}

@media (max-width: 576px) {
  .slider-btn {
    display: none;
  }

  .product-slider {
    gap: 12px;
  }

  .product-item {
    min-width: 120px;
  }

  .product-item i {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

/* ============ MODULAR KITCHEN SECTION ============ */
.modular-kitchen {
  margin: auto;
  background: linear-gradient(
    135deg,
    rgba(63, 61, 143, 0.08),
    rgba(90, 87, 196, 0.08)
  );
  border-radius: 15px;
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.modular-kitchen h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 600;
  margin-bottom: 10px;
}

.modular-kitchen p {
  font-size: clamp(14px, 2vw, 16px);
  color: #555;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .modular-kitchen {
    padding: 30px 20px;
  }
}

/* ============ PROCESS SECTION ============ */
.process .row > [class*="col-"] {
  display: flex;
}

.process .step {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: flex-start;
  background: linear-gradient(
    135deg,
    rgba(63, 61, 143, 0.06),
    rgba(90, 87, 196, 0.06)
  );
  border-radius: 15px;
  padding: 30px 20px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
}

.process .step:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
  color: #0f2a44;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 2vw, 20px);
}

.process .step h5 {
  font-size: clamp(16px, 3.5vw, 20px);
}

/* ========================= CHIMNEY PAGE ========================= */
.banner-features {
  position: relative;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.banner-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

.banner-features .container {
  position: relative;
  z-index: 2;
}

.banner-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(10px, 2vw, 20px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(15px, 2vw, 20px);
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-description {
    font-size: 14px;
    text-align: center;
  }
}

.feature-item {
  background: rgba(248, 249, 250, 0.1);
  padding: clamp(8px, 2vw, 15px);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.5vw, 10px);
  min-height: 180px;
  text-align: center;
}

.feature-item p {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 15px);
  font-weight: 600;
  color: #fff;
}

.feature-icon {
  font-size: clamp(2rem, 5vw, 18px);
  color: var(--secondary-color);
}

/* ============ PRODUCTS SECTION ============ */
.product-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.253);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image-box {
  background: #ffffff;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.feature-left {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-left span {
  background: rgba(117, 140, 243, 0.342);
  color: #00796b;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
}

.feature-left span i {
  color: #00796b;
}

.btn-product {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-product:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.top-specs {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.top-specs div {
  background: rgba(117, 140, 243, 0.342);
  color: #004d40;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-specs div i {
  color: #004d40;
}

.product-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  transform: scale(1.08);
}

/* ========================= INDUCTION, INFRARED, COOKTOP, RICE COOKER, OTG PAGE ========================= */
.induction-features {
  position: relative;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.induction-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.induction-features .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(10px, 2vw, 20px);
}

.induction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 2vw, 20px);
}

@media (max-width: 768px) {
  .induction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .induction-grid {
    grid-template-columns: 1fr;
  }
}

.induction-item {
  background: rgba(248, 249, 250, 0.1);
  padding: clamp(8px, 2vw, 15px);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.5vw, 10px);
  min-height: 180px;
  text-align: center;
}

.induction-item p {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 15px);
  font-weight: 600;
  color: #fff;
}

.induction-icon {
  font-size: clamp(2rem, 5vw, 18px);
  color: var(--secondary-color);
}

/* ========================= STOVE, SANDWICH MAKER PAGE ========================= */
.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(15px, 2vw, 20px);
}

@media (max-width: 768px) {
  .features-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ========================= CONTACT PAGE ========================= */

.hero-contact {
  background: url("../img/contact-banner.jpg") center/cover no-repeat;
}

/* ============ CONTACT FORM SECTION ============ */
.contact-box {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  width: 100%;
  margin: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-left h2 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-left p {
  color: #444;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 18px;
  color: var(--dark-color);
  margin-top: 4px;
  min-width: 20px;
}

.contact-info-item span {
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.5;
  max-width: 100%;
}

.contact-box input,
.contact-box textarea,
.contact-box .form-select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-box input,
.contact-box textarea {
  min-height: 44px;
}

.contact-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.contact-social-icons a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--dark-color);
  justify-content: center;
  background: #e3eef1;
  text-decoration: none;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.contact-social-icons a:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(10, 111, 115, 0.1);
  outline: none;
}

.contact-box textarea {
  resize: none;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
  color: #777;
  font-size: 15px;
}

.contact-box .row {
  margin-left: 0;
  margin-right: 0;
}

.contact-box [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.btn-submit {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-submit:hover {
  color: white;
  background: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .contact-box {
    padding: 35px;
  }

  .contact-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-box {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .contact-box {
    padding: 20px;
    border-radius: 12px;
  }

  .contact-left h2 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .contact-box .row {
    row-gap: 6px;
  }

  .contact-left p {
    font-size: 14px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-info-item i {
    font-size: 20px;
  }

  .contact-social-icons a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    margin: 25px 0;
  }

  .contact-box {
    padding: 10px;
  }

  .contact-left h2 {
    font-size: 23px;
    letter-spacing: 1px;
  }

  .contact-left p {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-info-item {
    gap: 10px;
  }

  .contact-info-item span {
    font-size: 14px;
  }

  .contact-info-item i {
    font-size: 18px;
  }

  .contact-social-icons {
    gap: 8px;
  }

  .contact-social-icons a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .contact-form textarea {
    height: 100px;
  }

  .btn-submit {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 360px) {
  .contact-left {
    padding: 10px;
  }

  .contact-left h2 {
    font-size: 21px;
  }

  .contact-left p {
    font-size: 13px;
  }

  .contact-info-item span {
    font-size: 13px;
  }

  .contact-box {
    padding: 0;
  }
}

/* ============ MAP SECTION ============ */
.map-section {
  width: 100%;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .map-wrapper {
    height: 220px;
    border-radius: 8px;
  }
}
