@font-face {
    font-family: 'montserratmedium';
    src: url('../fonts/fmontserrat-medium-webfont.eot');
    src: url('../fonts/montserrat-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/montserrat-medium-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-medium-webfont.woff') format('woff'),
         url('../fonts/montserrat-medium-webfont.svg#montserratmedium') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
  font-family: 'poppinsregular';
  src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
        url('../fonts/poppins-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
    font-family: 'poppinsmedium';
    src: url('../fonts/poppins-medium-webfont.eot');
    src: url('../fonts/poppins-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/poppins-medium-webfont.woff2') format('woff2'),
         url('../fonts/poppins-medium-webfont.woff') format('woff'),
         url('../fonts/poppins-medium-webfont.svg#poppinsmedium') format('svg');
    font-weight: normal;
    font-style: normal;

}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --cm-primary-color :#00b4db;
  --cm-secondary-color : #fc466b;
  --cm-accent :linear-gradient(90deg, #00b4db, #fc466b);
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
body {
  background: #fff;
  color: #222;
  font-size: 14px;
  font-family: 'poppinsregular';
}

img{
  max-width: 100%;
  height: auto;
}
@keyframes gradient { 0% { 
    background-position: 0% 50%; 
}
100% { 
    background-position: 200% 50%; }}
.container {
  width:90%; 
  display: table;
  max-width:1200px;
  margin:0 auto;
  position:relative; 
}
body section {
  padding: 50px 0;
}
h3 {
    font-family:'poppinsmedium' ;
    font-weight: 500;
}
 .heading-section {
  font-size: 24px;
  font-family:  'montserratmedium';
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

 .subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
}

/* HEADER */
.header {
  position: absolute;
  width: 100%;
  top: 20px;
  z-index: 10;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 38px;
}
.nav ul {
  list-style: none;
  display: flex;
}
.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 700;
}

.contact-btn {
  padding: 10px 20px;
  background: var(--cm-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 100;
}

/* HERO */
.hero {
  /* height: 80vh; */
  /* background: url("../images/header-bg.png") center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Pink Glass Box */
.hero-overlay {
  background: rgba(234, 19, 92, 55%);
  /* backdrop-filter: blur(10px); */
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 850px;
  color: #fff;
}

.hero-overlay h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 16px;
  margin-bottom: 25px;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  position: absolute;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
a.btn.whatsapp-btn::before{
    content: "";
    position: absolute;
    border-radius: inherit;
    inset: 0;
    -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    padding: 3px;
    background: var(--cm-accent);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    /* animation: gradient 4s ease infinite; */
    background-size: 200% 200%;
}
/* About section */
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: #eaf7fb;
  color: #000;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
} 
.about-content .stats {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}

.stats h3 {
  font-size: 32px;
  font-weight: normal;
  color: #8b2764;
}

.stats span {
  font-size: 14px;
  color: #777;
}

.btn-contact {
  display: inline-block;
  padding: 12px 26px;
  background: var(--cm-accent);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 100;
  font-size: 14px;
} 

/* RIGHT IMAGE GRID */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 150px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
/* Why choose us */
.chooseus {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 90px;
    align-items: center;
}

/* LEFT CARDS */
.cards {
    position: relative;
    width: 600px;
    height: 400px;
}

.card {
    background: #f1f1f1;
    border-radius: 18px;
    width: 300px;
    position: absolute;
    padding: 25px;
    transition: 0.3s ease;
    margin-right: -25px;
}
.card.top-right {
    right: -50px;
    top: -25px;
    /* position: absolute; */
}
.card.bottom-left {
    top: 235px;
    left: 15px;
    /* position: absolute; */
}
.card.bottom-right {
    /* position: absolute; */
    right: -29px;
    top: 210px;
}
.card:hover {
    transform: translateY(-6px);
}

.card.pink {
    background: #ff4f91;
    color: #fff;
}

.card h3 {
    font-size: 16px;
    line-height: 1.3;
    /* font-family: 'poppinsmedium'; */
    margin: 15px 0 10px;
}

.card p {
    font-size: 12px;
    line-height: 1.5;
}

.icon {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
/* RIGHT CONTENT */

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    position: relative;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn.outline {
    color: #ff4f91;
    /* right: 130px; */
}

a.btn.btn.outline::before{
    content: "";
    position: absolute;
    border-radius: inherit;
    inset: 0;
    -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    padding: 3px;
    background: var(--cm-accent);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradient 4s ease infinite;
    background-size: 200% 200%;
}
/* Product section */
.product-content {
  padding-bottom: 20px;
  text-align: center;
}
.products-section .badge {
   display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e6f4f8;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin: 0 auto 12px;
}
/* Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-tabs li {
    font-size: 16px;
    color: #777;
    cursor: pointer;
    position: relative;
}

.product-tabs li.active {
    color: #222;
    font-weight: 600;
}

.product-tabs li.active::after {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--cm-accent);
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}
.product-section {
    display: flex;
    width: 100%;
}
.single-product {
    width: 100%;
}
/* Grid */
.product-grid {
    /* display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch; */
    width: 80%;
}

.product {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Large left image */
.product.large {
    grid-row: span 2;
    grid-column: span 1;
}

.overlay-text {
  position: absolute; 
  background: rgba(36, 35, 35, 0.541);
  bottom: 160px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 100;
  padding: 45px 25px;
  border-radius: 20px;
  text-align: center;
}

/* Button */
.view-more {
    margin-top: 40px;
    text-align: center;
}

.view-more a {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    background: var(--cm-accent);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* cta section */

.cta-section .container {
    max-width: 1200px;
    margin: auto;
    background: #4aa3c7;
    border-radius: 80px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content {
    color: #fff;
    max-width: 700px;
}

.cta-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button a {
    display: inline-block;
    padding: 15px 45px;
    background: #ff4f91;
    color: #fff;
    border:2px solid #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

/* Testimonial section */

/* Grid */
/* .testimonial-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
} */

/* Card */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    /* width: 20% !important; */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.353);
}

/* Quote icon */
.quote {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}
.quote img {
  width: 45%;
}
.quote.blue {
    background: #4aa3c7;
}

.quote.pink {
    background: #ff4f91;
}

/* Text */
.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    min-height: 100px;
    color: #666;
    margin-bottom: 20px;
}

/* Line */
.line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--cm-accent);
    margin: 0 auto 12px;
}

/* Name */
.testimonial-card h4 {
    font-size: 14px;
    color: #4aa3c7;
    margin-bottom: 6px;
}

/* Stars */
.stars {
    color: #ffc107;
    font-size: 14px;
}
/* Contact section */
.contact-grid {
    display: flex;
    gap: 20px;
}
.contact-form {
    width: 45%;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: #f3f3f3;
    border-radius: 12px;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

.contact-form button {
    width: fit-content;
    padding: 12px 32px;
    border: none;
    border-radius: 30px;
    background: var(--cm-accent);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

/* INFO CARD */
.contact-info {
    background: #ff2b7b;
    width: 30%;
    color: #fff;
    padding: 35px 30px;
    border-radius: 20px;
}

.contact-info h3 {
    font-size: 22px;
    margin: 15px 0;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.socials i {
    font-size: 20px;
}
/* MAP */
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}
.contact-map {
    position: absolute;
    right: -50px;
    top: 0px;
    width: 26%;
    height: 100%;
}
/* FOOTER */
.footer-bar {
    background: #111;
    color: #fff;
    padding: 15px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.footer-inner a {
  text-decoration: none;
  color: #fff;
}
/* --- ISOTOPE GRID FIX --- */
.product-grid {
    display: block; 
    width: 100%;
}

.product {
    width: 20%; 
    float: left;
    padding: 10px; 
    box-sizing: border-box;
    border-radius: 20px;
}

.product img {
    width: 100%;
    display: block;
    border-radius: 20px; 
    height: 250px; 
    object-fit: cover;
}
.product.large {
    width: 100%; 
}
.product.large img {
    height: 520px; 
}




/* Container for the two columns */
.chooseus {
    display: flex;
    flex-direction: row-reverse; /* This "floats" content right and cards left */
    align-items: center;         /* Centers them vertically */
    justify-content: space-between;
    gap: 80px;                   /* Space between the two sections */
}

/* The Right Content (Text) */
.chooseus .content {
    flex: 1;                     /* Takes up equal space */
    text-align: left;
}

/* The Left Content (Cards Grid) */
.chooseus .cards {
    flex: 1.3;                     /* Takes up equal space */
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);  columns for the cards */
    gap: 20px;
}

/* Responsive: Stack them on mobile */
@media (max-width: 992px) {
    .chooseus {
        flex-direction: column;  /* Stack vertically on small screens */
    }
    
    .chooseus .cards {
        grid-template-columns: 1fr; /* Single column for cards on mobile */
    }
}

/* Ensure cards have consistent height */
/* .testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 20px; 
} */

/* Quote Icon Styling */
/* .quote {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
} */
/* .quote.blue { background-color: #e3f2fd; }
.quote.pink { background-color: #fce4ec; } */

.testimonial-card .line {
    display: block;
    width: 50px;
    height: 2px;
    background: #ddd;
    margin: 20px auto;
}

/* bxSlider Override to center dots */
.bx-wrapper .bx-pager {
    bottom: -40px;
}
/* Remove the display: grid from the slider container */
.testimonial-slider {
    display: block; 
    margin: 0 auto;
}

.bx-wrapper {
   
    -webkit-box-shadow: none;
    box-shadow: none !important;
    border:none !important;
    background: #fff;
}

/* details page */
.product-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("../images/header-bg.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  
}
.product-hero .hero-layout {
  position: absolute;
  inset: 0;
  position: absolute;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  top: 35%;
  left: 50%;
  margin-left: -400px;
  width: 800px;
  color: #fff;
}
/* SHOP BY CATEGORY */
.categories {
    padding: 70px 0;
    text-align: center;
}

.section-header span {
    color: #777;
    font-size: 14px;
}

.section-header h2 {
    font-size: 28px;
    margin-top: 8px;
}

.category-grid {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-card {
    width: 140px;
}

.category-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.category-card h4 {
    font-size: 14px;
    font-weight: 500;
}

.product-details {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
/* IMAGE GRID */
.image-grid {
    display: flex;
    width: 45%;
    gap: 15px;
}

/* CONTENT */
.content {
   width: 50%;
}


/* For 404 page */
/* --- UPDATED 404 PAGE STYLES --- */

/* Animation for the 404 text */


.error-page {
    padding-top: 110px;
    background: url('../images/404.gif');
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.error-code {
    display: inline-block;
    font-size: 180px;
    font-weight: 900;
    font-style: italic;
    margin: 0;
    line-height: 1;
    /* Tri-color gradient from image */
    background: linear-gradient(
        to bottom, 
        #5D3A9B 0%, #5D3A9B 38%,   /* Purple */
        #E91E63 38%, #E91E63 68%,  /* Pink */
        #FFC107 68%, #FFC107 100%  /* Yellow */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -5px;
    /* Apply Float Animation */
    animation: float 4s ease-in-out infinite;
}

.ooops {
    /* Note: Ensure Playball is linked in your HTML head */
    font-family: 'Playball', cursive; 
    font-size: 64px;
    color: #1a1a1a;
    margin-top: 10px;
}

.not-found {
    font-family: 'poppinsregular';
    font-size: 24px;
    font-style: italic;
    color: #333;
    margin-bottom: 30px;
}

/* Button using your CSS variables */
.btn-home {
    background: var(--cm-accent);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'poppinsmedium';
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.3);
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 70, 107, 0.4);
    color: #fff;
}
/* Mobile menu */
.head-right {
  display: none;
  
}
/* Mobile menu setting */
.menu-toggle {
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease;
  position: relative;
  top: -4px;
  color: #fff;
 }
 .menu-toggle:hover {
  transform: scale(1.1);
 }
 .mobile-menu {
  position: fixed; 
  top: 0;
  right: -260px; 
  width: 260px;
  height: 100vh;
   background: #fff;
  box-shadow: -3px 0 10px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  z-index: 30;
  padding-top: 60px;
  opacity: 0;
  /* display: none; */
  transform: translateX(50px);
}
.mobile-menu.active {
  display: block;
  right: 0;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 40px;
}
.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}
.mobile-menu ul li a:hover {
  color: #007BFF;
  transform: translateX(5px);
}
/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  transition: transform 0.2s ease;
}
.close-btn:hover {
  transform: rotate(90deg);
}
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}