@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  font-family: "Inter", sans-serif !important;
  background-color: #fafafa !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
}
:root {
  --color-black: #1a1a1a;
  --color-white: #fff;
  --color-darken: #333;
  --color-teal-100: #c2fae7;
  --color-teal-200: #97f2d7;
  --color-teal-300: #65e6bf;
  --color-teal-400: #3ad9aa;
  --color-teal-500: #20cb98;
  --color-teal-600: #12ba87;
  --color-teal-700: #0ca778;
  --color-teal-800: #f04846;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 -4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none !important;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.navigation {
  height: 60px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 55px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #3e5594;
  text-decoration: none;
}
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}
nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 20px;
  line-height: 55px;
  color: #3e5594;
  /* background: #262626 ; */
  text-decoration: none;
}
nav ul li a {
  background: transparent;
  color: #3e5594;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  /* background: #2581DC; */
  color: #3e5594;
}
.navbar-dropdown li a {
  /* background: #2581DC; */
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " \025BE";
}
nav ul li ul li {
  padding: 10px 10px;
  min-width: 240px;
}
nav ul li ul li a {
  /* padding: 20px!important; */
  line-height: 20px !important;
}
.navbar-dropdown {
  position: absolute;
  display: none;
  z-index: 999 !important;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
}
/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  height: 55px;
  width: 70px;
}
.brand img {
  width: 200px;
  padding-top: 10px;
}
@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }
  nav {
    width: 100%;
    padding: 55px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
    background: #f2f2f2;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
  .navbar-dropdown {
    position: static;
  }
}
@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
#navbar-toggle {
  position: absolute;
  left: 18px;
  top: 15px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#navbar-toggle span,
#navbar-toggle span:before,
#navbar-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 30px;
  padding-top: 3px;
  background: #c80f0f;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#navbar-toggle span:before {
  top: -10px;
}
#navbar-toggle span:after {
  bottom: -10px;
}
#navbar-toggle.active span {
  background-color: transparent;
}
#navbar-toggle.active span:before,
#navbar-toggle.active span:after {
  top: 0;
}
#navbar-toggle.active span:before {
  transform: rotate(45deg);
}
#navbar-toggle.active span:after {
  transform: rotate(-45deg);
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #444; */
  display: flex;
  justify-content: center;
  border-radius: 8px;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 45vh;
  border: 2px solid #ddd;
  border-radius: 8px;
  object-fit: cover;
}

#swiper-container {
  width: 100%;
  /* height: 320px; */
}

swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.promo-banners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

.banner {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 190px;
  margin: 0.5rem 0;
  color: #222;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.banner:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: box-shadow 0.3s ease-in-out;
  transform: translate(1.1px, -1.1px);
}

.banner h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  width: 170px;
}

.banner p {
  font-size: 14px;
  margin-bottom: auto;
  color: #282828;
  width: 170px;
}

.banner .highlight {
  color: #4caf50 !important;
}
.b-1 {
  color: #226ace !important;
}
.b-2 {
  color: #e46837 !important;
}
.b-3 {
  color: #ab9727 !important;
}
.b-4 {
  color: #ecebeb !important;
}
.b-5 {
  color: #e17d30 !important;
}
.b-6 {
  color: #767df1 !important;
}
.b-7 {
  color: #f266cd !important;
}
.b-8 {
  color: #46c958 !important;
}
.banner p {
  font-size: 14px;
  margin-bottom: auto;
  color: #282828;
  width: 170px;
}

.banner .button {
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 14px;
  border: none;
  width: 125px;
  color: #263e83;
  /* color: #EF3F3D; */
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
}

.banner img {
  position: absolute;
  bottom: 13px;
  right: 13px;
  height: 155px;
  /* object-fit: cover; */
  width: 170px;
}

.promotion-fullbanner .banner {
  margin-bottom: 2rem;
  position: relative;
  padding: 30px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
  color: #222;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.banner .button1 {
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 16px;
  border: none;
  width: 140px;
  color: #263e83;
  color: #f66565;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
}
.promotion-fullbanner .banner img {
  position: absolute;
  bottom: 0px;
  right: 13px;
  height: 220px;
  /* object-fit: cover; */
  width: auto;
}

.h4 {
  font-size: 18px;
  margin-bottom: 1rem;
  padding: 10px;
}

.banner .h3 {
  font-size: 25px;
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  width: 50%;
}

.banner .banner-content {
  font-size: 15px;
  width: 50%;
}

.category-slider {
  /* padding: 20px; */
  padding-bottom: 1.8rem;
}
.category-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 170px !important;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-img-wrapper {
  flex: 2;
  /* background: linear-gradient(135deg, #e4eeff, #f6f9ff); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.category-img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.category-name {
  flex: 1;
  background: #f0f2ff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #253d83;
  padding: 8px;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0rem !important;
}
.navbar {
  background-color: #fff;
}
.swiper-button-next,
.swiper-button-prev {
  color: #e94065;
}
.category-img-wrapper {
  flex: 2;
  /* background: linear-gradient(135deg, #e4eeff, #f6f9ff); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden; /* ensures image doesn't spill out */
}

.category-img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.swiper-button-next,
.swiper-button-prev {
  width: 25px !important;
  height: 25px !important;
  background: #749add;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #ffffff !important;
  font-size: 14px;
  padding: 3px;
  transition: all 0.2s ease;
}
.h4 {
  font-size: 18px !important;
  margin-bottom: 1rem !important;
  padding: 10px !important;
}
.category-name {
  color: #226ace !important;
}

/* Slider arrows */
.business-next,
.business-prev {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 10;
  width: 35px;
  height: 35px;
  background: #226ace;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.business-next::after,
.business-prev::after {
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
}
.business-next {
  right: 0px;
}
.business-prev {
  left: 0px;
}
.business-next::after {
  content: "›";
}
.business-prev::after {
  content: "‹";
}

.business-disabled {
  opacity: 0;
  pointer-events: none;
}
.footer {
  background: #253d83;
  color: #ffffff;
  padding: 40px 0 20px 0;
}
.footer-section a,
.footer-section a:visited {
  list-style: none;
  padding: 0;
  color: #ffffff;
  line-height: 2;
  font-size: 14px;
}
.footer-section a:hover,
.footer-section a:visited:hover {
  color: #ef3f3e;
}
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
ol,
ul {
  padding-left: 0rem !important;
}

.container {
  /* max-width: 1200px!important; */

  /* padding: 0 20px;  */
}
.about img {
  background-color: #fff;
  padding: 10px;
  width: 250px;
  margin: 1rem 0;
  border-radius: 8px;
}
.services li,
.links li,
.contact-form li {
  margin-bottom: 10px;
}

.about p {
  font-size: 14px;
  line-height: 1.6;
  color: #f0f0f0;
  width: 95%;
}

.contact-form p {
  font-size: 14px;
  /* line-height: 1.3; */
  color: #f0f0f0;
}

.CC {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 48px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
}

.CC::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ee2e2c, #010088, #ee2e2c);
  animation: shimmer 2s infinite;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.title {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.subtitle {
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

input,
textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #253d83;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}

input:hover,
textarea:hover {
  border-color: #d1d5db;
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Inter", sans-serif;
}

.submit-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ee2e2c, #e93a37);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.form-footer {
  margin-top: 24px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.success-message {
  background: #d1fae5;
  border: 2px solid #10b981;
  color: #047857;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: none;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-message {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

@media (max-width: 640px) {
  /* .container {
                padding: 32px 24px;
                margin: 20px;
                border-radius: 20px;
            } */

  p {
    font-size: 13.5px !important;
  }
  .heading {
    font-size: 1.5rem !important;
  }
  .section {
    background: #fff;
    border-radius: 15px;
    padding: 25px !important;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .border-top {
    font-size: 13px;
  }
  .h5,
  h5 {
    font-size: 1.1rem !important;
  }
  swiper-slide img {
    display: block;
    width: 100%;
    height: 22vh !important;
    border: 2px solid #ddd;
    border-radius: 8px;
    object-fit: cover;
  }
  .wrapper .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 50%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }
  .product_img {
    height: 180px !important;
  }
  .badge {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10.5px !important;
    z-index: 9999;
    background-color: red;
  }

  .promotion-fullbanner .banner {
    margin-bottom: 2rem;
    position: relative;
    padding: 22px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
  }

  #swiper-container {
    display: none !important;
  }
  .banner p {
    font-size: 13px;
    margin-bottom: auto;
    color: #282828;
    width: 170px;
  }
  .banner img {
    position: absolute;
    bottom: 13px;
    right: 10px;
    height: 145px;
    object-fit: contain !important;
    width: 158px;
  }

  .promotion-fullbanner .banner img {
    position: absolute;
    bottom: 0px;
    right: 5px;
    height: 120px;
    /* object-fit: cover; */
    width: auto;
  }
  .banner .h3 {
    font-size: 16px;
    margin: 0 0 8px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    width: 100%;
  }

  .banner .banner-content {
    font-size: 12px;
    width: 100%;
  }
  .title {
    font-size: 28px;
  }

  .form-group.double {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group.double .form-group {
    margin-bottom: 24px;
  }
}

/* Floating labels effect */
.floating-label {
  position: relative;
}

.floating-label input,
.floating-label textarea {
  padding-top: 24px;
  padding-bottom: 8px;
}

.floating-label label {
  position: absolute;
  left: 20px;
  top: 16px;
  transition: all 0.2s ease;
  pointer-events: none;
  background: white;
  padding: 0 4px;
  margin: 0;
}

.floating-label input:focus + label,
.floating-label textarea:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:not(:placeholder-shown) + label {
  transform: translateY(-24px) scale(0.85);
  color: #10b981;
}

h1,
h2 {
  /* text-align: center; */
  color: #111;
}
.section {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.section h2 i {
  color: #007bff;
  margin-right: 10px;
}
.specs table {
  width: 100%;
  border-collapse: collapse;
}
.specs th,
.specs td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
.specs th {
  background: #000085;
  color: white;
}
.icon {
  color: #007bff;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .specs table,
  .specs th,
  .specs td {
    font-size: 14px;
  }
}
.whatsapp {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
}
.whatsapp img {
  width: 55px;
}
