@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Slabo+13px&display=swap');

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.125rem;  /* 18px */
  --font-size-lg: 1.25rem;   /* 20px */
  --font-size-xl: 1.5rem;    /* 24px */
  --font-size-2xl: 2.5rem;   /* 40px */
}
body {
    font-family:   "Jost", sans-serif;
    width: 100%;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    overflow-x: hidden;

}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}
span.hero-tag {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  line-height: 3.1rem;
}
.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #4169E1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-text {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Navigation Styles */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
}

.top-nav.scrolled {
    background: #333;
    padding: 0.5rem 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px;
}

.nav-container {
    display: flex
;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    transition: all 0.3s ease;
    width: 60%;
    margin: 0 auto;
}

.top-nav.scrolled .nav-container {
    justify-content: space-between;
}

a.home-link {
    display: flex;
    text-align: center;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 2.5rem;

    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.top-nav.scrolled .home-link {
    font-size: 1.8rem;
}
.hero-button {
  background-color: #e8722a;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: .04em;
  padding: 20px 60px;
  border-radius: 100px;
  margin-top: 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #d6611f;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(232, 114, 42, 0.3);
}
.cta-button {
  background-color: #e8722a;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: .04em;
  padding: 20px 90px;
  border-radius: 100px;
  margin-top: 20px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #d6611f;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(232, 114, 42, 0.3);
}
.nav-icon {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.top-nav.scrolled .nav-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Slide-out Menu Styles */
.slide-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.slide-menu.active {
    right: 0;
}

.slide-menu-header {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
}

.close-btn {
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #4579bd;
}

.slide-menu-content {
    flex: 1;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: color 0.2s ease;
}

.menu-link:hover {
    color: #4579bd;
}

.slide-menu-social {
    margin-top: 2rem;
    text-align: center;
}

.slide-menu-social .social-icons {
    justify-content: center;
    gap: 1.5rem;
}

.slide-menu-social .social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
}

.slide-menu-social .social-icons img:hover {
    transform: scale(1.1);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive for slide menu */
@media (max-width: 480px) {
    .slide-menu {
        width: 280px;
        right: -280px;
    }
    
    .menu-link {
        font-size: 1.1rem;
    }
}

/* Hero Section Styles */
.hero-container {
  background: linear-gradient(-45deg, #4579bd, #4579bd, #084188, #084188);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin: 0;
  padding: 120px 0px 80px 0px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    /* Add hero image specific styles if needed */
}

.hero-text {
  color: white;
  padding: 1rem;
  display: flex
;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.info.one,
.info.two,
.info.three {

    margin-bottom: 2rem;

}

@media (min-width: 1024px) {
    .info.one,
    .info.three {
        flex-direction: row !important;
    }

    .info.two {
        flex-direction: row-reverse !important;
    }
    .info-text-cont {
      flex: 1;
      justify-content: center;
  }
  .info-pic {
 flex:1;
}
.section-bg {
  flex-direction: row !important;
}
.footer-container {

  width: 60% !important;

}
.text-box {
  background-color: #3c69a6;
  padding: 2rem 1rem 4rem 1rem;
  color: #fff;
  display: flex
;
  width: 60% !important;
  margin: 3rem auto !important;
  flex-direction: row !important;
  gap: 3.5rem !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
}
span.btmcta {
  font-size: var(--font-size-xl) !important;

}
span.btmcta.right {
  flex-direction: row-reverse !important;
}
.product-card {
  width: 65rem;
  margin: 0 auto !important;
  display: flex
;
}
.product-card__image {
  flex: 1;
  justify-content: center;
  display: flex
;
}
.product-card__info {
 
  flex: 1;
}
.cta-button {
  text-align:center !important;
  width:50%;
  margin:0 auto !important;
}
}

.hero-tag {
    /* Add hero tag specific styles if needed */
}

/* Sale Section */
.sale {
    background: #333;
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    height: auto !important;
    min-height: auto !important;
    display: flex;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    max-width: 100%;
    overflow-x: hidden;
}

.sale .scroll {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-right: 50px;
}

@keyframes scroll {
    0% { transform: translateX(60%); }
    100% { transform: translateX(-60%); }
}

/* Info Section Styles */
.info {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}
.info.one, .info.two, .info.three {
  display: flex
;
  flex-direction: column;
}
.info-wrapper
 {
    gap: 4rem 64px;
    display: flex
;
    flex-direction: column;
    margin: 6rem auto 8rem auto;
    max-width: 1000px;

}
.info-text-cont {
  display: flex
;
  flex-direction: column;
  gap: 0.5rem;
}

.info-pic {
    /* Add info pic styles if needed */
}
span.info-tag {
  font-weight: 800;
  font-size: var(--font-size-xl);
}
img.info-pic-img {
    border-radius: 5%;
    margin: 0 auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.info-text-cont {
    /* Add info text container styles if needed */
}

.info-tag {
    /* Add info tag styles if needed */
}

.info-text {
    /* Add info text styles if needed */
}

/* Section Background Styles */
.section-bg {
    background-color: #3c69a6;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-position: center;
    overflow: hidden !important;
    width: 100%;
    max-width: 100%;

}

.img-wrap {
    /* Add image wrap styles if needed */
}

.text-box {
  background-color: #3c69a6;
  padding: 2rem 1rem 4rem 1rem;
  color: #fff;
  display: flex
;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
}

span.btmcta {
  font-size: var(--font-size-md);
  font-weight: 600;
  display: flex
;
  align-items: center;
  gap: 1rem;
}
/* Product Card Styles */
.cont {
  max-width: 100%;
  padding: 4rem 1rem;
}

.product-card {
  background-color: var(--card-background);
  border-radius: 20px;
  padding: 1rem;
  overflow: hidden;
  background: linear-gradient(rgb(255, 255, 255) 40%, rgb(252, 252, 252) 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15)
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.product-card__image img {
  object-fit: cover;
  transition: transform 0.3s ease;
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 7px 5px #00000061);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 1rem 1rem 1rem 1rem;
}

.product-card__title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-card__description {
    color: #666;
    margin-bottom: 20px;
}

.product-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__price {
  font-weight: 600;
  color: var(--primary-color);
  font-size: var(--font-size-xl);
}

.product-card__btn {
  background-color: #e8722a;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: .04em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  border: 0;
}

.product-card__btn:hover {
    background-color: #C71729;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    background-color: #333;
    color: #fff;

}

.footer-column {
    /* Add footer column styles if needed */
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;

    font-weight: 600;
}

img.footer-logo {
    width: 29px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    /* Add footer bottom styles if needed */
}

/* Media Queries */
@media (max-width: 480px) {
    .cont {
        max-width: 100%;
       
    }

    .product-card__image {
        height: 350px;
    }

  
}

.top-nav {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.top-nav.fade-in {
    opacity: 1;
}
.sale {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.sale.fade-in {
    opacity: 1;
}

.info-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.info-wrapper.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-image {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-image.fade-in {
    opacity: 1;
}

.hero-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}