:root {
	--pink: #ec3aa1;
	--purple: #8c68d4;
	--dark: #222;
	--muted: #6f6f6f;
	--soft: #fff4ef;
	--line: #eee
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: #fff;
}

img {
	max-width: 100%;
	display: block
}

a {
	text-decoration: none;
	color: inherit
}

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #f2f2f2;
    z-index: 9999;
    transition: all .3s ease;
}
.logo{
    flex: 0 0 auto;
}
.logo img{
    height: 130px;
    width: auto;
}

.nav{
    display: flex;
    gap: 50px;
    margin-right: -230px;
}

.nav a{
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #222;
}

.nav a.active,
.nav a:hover {
	color: #926CD1;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 35px;
	padding: 16px 30px;
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase
}

.btn-primary{
    background: linear-gradient(135deg,#ec3aa1,#926CD1);
    color: #fff;
    border-radius: 999px;
    padding: 14px 34px;
    font-size: 13px;
    font-weight: 600;
}

.btn-light {
	background: #fff;
	color: #333
}

.btn-outline {
	border: 1px solid var(--pink);
	color: var(--pink)
}

.btn-outline-light {
	border: 1px solid #fff;
	color: #fff
}

.hero {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	min-height: 720px;
	background: linear-gradient(135deg, #fff7f3, #f5e3dc)
}

.hero-content {
	padding: 135px 8% 80px 13%
}

.eyebrow {
	color: #926CD1;
	text-transform: uppercase;
	font-size: 14px;
    font-family : 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero h1,
.gallery h2,
.cta h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 65px;
    font-weight: 700;
	line-height: 1.05;
	margin: 22px 0;
}

.hero h1 span,
.section h2 span {
	color: var(--pink);
	display: block
}

.section h2{
    font-family: 'Cormorant Garamond', serif;
	font-size: 50px;
	line-height: 1.05;
	margin: 22px 0

}

.gallery h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 40px;
	line-height: 1.05;
	margin: 22px 0
}

.hero p,
.section-text p {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.8;
	max-width: 520px
}

.hero-actions {
	display: flex;
	gap: 18px;
	margin-top: 42px
}

.hero-image {
	position: relative;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover
}
.hero-slider{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider .slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .8s ease-in-out;
}

.hero-slider .slide.active{
    opacity: 1;
}
@media (max-width: 768px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 420px;   /* Choose your preferred height */
        position: relative;
    }

    .hero-slider {
        height: 100%;
    }

    .hero-slider .slide {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .quality-card {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
        z-index: 10;
    }
}

.quality-card {
    position: absolute;
    left: -70px;
    top: 48%;
    background: #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .18);   
    /* --- THE INNER BORDER FIX --- */
    outline: 2px dashed var(--pink); /* Changes the border to an outline */
    outline-offset: -8px;            /* Pulls the dashed ring 8px inside the circle */
    /* --- THE FIXES YOU ASKED FOR --- */
    display: flex;                  /* Swapped grid for flex to explicitly control layout gap */
    flex-direction: column;         /* Stack icon and text vertically */
    justify-content: center;        /* Dead-center content vertically */
    align-items: center;            /* Dead-center content horizontally */
    gap: 6px;                       /* Shrinks the vertical gap between icon and text */    
    font-weight: 500;               /* Reduced font weight from 800 to a clean, medium weight */
    line-height: 1.2;               /* Reduced line height to bring "Premium" and "Quality" closer together */
}

/*.btn-watch-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--muted); 
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.btn-watch-video:hover {
    color: var(--pink); 
}

.btn-watch-video .play-icon {
    width: 44px;
    height: 44px;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

.btn-watch-video .play-icon svg {
    width: 24px;
    height: 24px;
    margin-left: 2px; 
}

.btn-watch-video:hover .play-icon {
    border-color: var(--pink);
    transform: scale(1.05);
}*/

@media (max-width:768px){

    .quality-card{
        top: 10px;          
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
        z-index: 10;
    }

}
/*FEATURES SECTION*/

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 35px 7%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    border-right: 1px solid #e5e5e5;
}

.feature-item:last-child {
    border-right: none;
}

/* Icons */
.feature-item i {
    font-size: 30px;
    color: #926CD1;
    flex-shrink: 0;
}

/* Text Wrapper */
.feature-text {
    display: flex;
    flex-direction: column;
}

/* Heading */
.feature-text strong {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 4px;
    text-transform: uppercase;
}

/* Description */
.feature-text span {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #777;
    line-height: 1.4;
}

/* TABLET */

@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-item {
        border-right: none;
        padding: 15px;
    }
}

/* MOBILE */

@media (max-width: 576px) {
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 5%;
    }

    .feature-item {
        /*justify-content: center;
        text-align: center;*/
        border-right: none;
        padding: 10px;
    }

    .feature-item i {
        font-size: 26px;
    }

    .feature-text strong {
        font-size: 14px;
    }

    .feature-text span {
        font-size: 12px;
    }
}

.section {
	padding: 70px 7%
}

.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: 18px;
    height: 520px;
    width: 100%;
    object-fit: cover;
}

.experience {
    position: absolute;
    left: 0;
    bottom: -1px;
    background: #fff;
    padding: 24px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .14);
    /* --- FLEX LAYOUT FOR ALIGNMENT --- */
    display: flex;
    align-items: center; /* Aligns icon and text horizontally centered */
    gap: 15px;           /* Horizontal gap between icon and text */
}

/* Icon Sizing & Customization */
.experience i {
    font-size: 2.5rem;   /* Makes the award icon large and prominent */
    flex-shrink: 0;
}

/* Text Wrapper Block */
.experience .experience-text {
    display: flex;
    flex-direction: column;
    gap: 2px;            /* Tighter vertical gap between "10+" and subtext */   
    font-family: 'Jost', sans-serif;
    color: var(--pink);
    font-size: 28px;     /* Clean, prominent number sizing */
    font-weight: 700;    /* Bold, but readable */
    line-height: 1;
}

/* Lower Subtext Rules */
.experience span {
    display: block;
    color: #555;
    font-size: 13px;     /* Marginally bumped up for premium readability */
    font-weight: 400;    /* Light-to-medium regular text look */
    line-height: 1.2;
}
.section-text li {
	list-style: none;
	margin: 18px 0;
	color: #555
}

.section-text li:before {
	font-weight: 900;
	margin-right: 12px
}

.center {
	text-align: center;
	display: block
}

.center-title {
	text-align: center;
	font-family:'Cormorant Garamond', serif;
    font-weight: 700;
	font-size: 30px;
	margin: 15px 0 45px
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-grid article {
    height: 310px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.product-grid img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Subtle image zoom on hover */
.product-grid article:hover img {
    transform: scale(1.05);
}

/* --- THE NEW CONTAINER FOR LAYOUT ALIGNMENT --- */
.product-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 70px 22px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85)); 
    display: flex;
    justify-content: space-between; /* Pushes text to the left, arrow to the right */
    align-items: flex-end;         /* Keeps both baseline bottom-aligned */
}

/* Cleaned up H3 styles */
.product-grid h3 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    margin: 0;
    padding-right: 10px;
}

/* --- THE PINK ARROW BUTTON --- */
.arrow-btn {
    width: 40px;
    height: 40px;
    background-color: var(--pink); /* Uses your brand pink color code */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    flex-shrink: 0; /* Keeps the circle from changing shape */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.arrow-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 1px; /* Visual balance tweak to center the pointer */
}

/* Hover States */
.arrow-btn:hover {
    background-color: #ec3aa1; /* Slightly deeper pink on hover */
    transform: scale(1.08);
}

.gallery {
    background: #282522;
    color: #fff;
    padding: 40px 7%;
    display: grid;
    grid-template-columns: .8fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* Anchors the floating position relative to the grid area */
.gallery-wrapper {
    position: relative;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-grid img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* --- THE FLOATING CIRCULAR MORE BUTTON --- */
.gallery-more-btn {
    position: absolute;
    right: -25px; /* Pushes the button halfway off the right edge of the grid */
    top: 50%;
    transform: translateY(-50%);  
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #282522;
    text-decoration: none;   
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;   
    /* Matches the smooth surrounding aura blur seen in image_7b407f.png */
    box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.15), 
                0px 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Subtle hover interaction */
.gallery-more-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0px 0px 0px 16px rgba(255, 255, 255, 0.2), 
                0px 12px 35px rgba(0, 0, 0, 0.3);
}
.cta {
	margin: -80px 7% 0 7%;
	transform: translateY(45px);
	background: linear-gradient(135deg, #ba0d73, var(--pink));
	color: #fff;
	border-radius: 18px;
	padding: 45px 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.cta p1 {
	font-size: 22px;
	margin: 0
}

.cta p {
	max-width: 430px
}

.footer {
    padding: 80px 7% 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
}

/* Individual Column Container */
.footer > div {
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid #f0f0f0; /* Soft vertical dividers seen in reference */
    padding-right: 20px;
}

/* Remove the right border from the last column */
.footer > div:last-child {
    border-right: none;
    padding-right: 0;
}

/* --- RECREATING THE CIRCULAR ICON BADGE --- */
.footer .icon-badge {
    width: 46px;
    height: 46px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); /* Clean, soft aura shadow */
    flex-shrink: 0;
}

/* Icon style inside badge */
.footer .icon-badge i {
    color: #926CD1;;
    font-size: 20px;
}

/* Vertical Text Stack Wrapper */
.footer .footer-text {
    display: flex;
    flex-direction: column;
    gap: 3px; /* Keeps label and value close together */
}

/* Header Text Style */
.footer strong {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2b2b2b;
}

/* Value Description Style */
.footer span {
    font-family: 'Jost', sans-serif;
    display: block;
    color: var(--muted, #666666);
    font-size: 13px;
    font-weight: 400;
    margin-top: 0; /* Clear previous margin override */
}
@media(max-width:900px) {
	
	.hero,
	.about,
	.gallery {
		grid-template-columns: 1fr
	}

	.hero-content {
		padding: 40px 7%
	}

	.hero h1 {
		font-size: 46px
	}

	.features,
	.product-grid,
	.footer {
		grid-template-columns: 1fr 1fr
	}

	.cta {
		flex-direction: column;
		text-align: center
	}
}

@media(max-width:560px) {

	.features,
	.product-grid,
	.footer {
		grid-template-columns: 1fr
	}

	.site-header {
		padding: 0 5%
	}

	.btn {
		padding: 13px 18px
	}

	.hero h1 {
		font-size: 40px
	}

	.section h2 {
		font-size: 38px
	}

	.cta {
		margin: 0 5%;
		padding: 35px 25px
	}
}

.sub-footer {
    background: #000;
    padding: 20px 7%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.sub-footer-logo{
    display:flex;
    align-items:center;
    justify-self:start;
    height:100px;
}

.sub-footer-logo img{
    height:130px;
    width:auto;
    object-fit:contain;
}

.footer-center{
    text-align:center;
}

.copyright{
    margin:0;
    font-size:13px;
    color:rgba(255,255,255,.9);
}

.developer-credit{
    margin-top:6px;
    font-size:12px;
    color:#bdbdbd;
    letter-spacing:.3px;
}

.developer-credit a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.developer-credit a:hover{
    color:#926CD1;
}

.social-links{
    display:flex;
    gap:12px;
    justify-self:end;
}

.social-icon{
    width:34px;
    height:34px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.social-icon:hover{
    background:#926CD1;
    border-color:#fff;
    transform:translateY(-2px);
}
/* --- MOBILE RESPONSIVENESS TWEAK --- */
@media (max-width:768px){

    .sub-footer{
        display:flex;
        flex-direction:column;
        gap:20px;
        text-align:center;
        padding:30px 7%;
    }

    .sub-footer-logo,
    .social-links,
    .copyright{
        justify-self:center;
    }
}
p,
li,
.features span,
.footer span,
.section-text p{
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 13px;
}

/*MOBILE HEADER */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:24px;
    cursor:pointer;
    color:#222;
}

.mobile-quote{
    display:none;
}

.desktop-quote{
    display:inline-flex;
}

@media (max-width:900px){

.site-header{
    position: relative;
    z-index:1000;

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

/* Toggle */
.menu-toggle{
    display:flex;
    order:1;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
    font-size:24px;
    cursor:pointer;
}

/* Logo */
.logo{
    order:2;
    flex:1;
    display:flex;
    justify-content:center;
}

.logo img{
    height:90px;
    width:auto;
}

/* Desktop button becomes mobile button */
.desktop-quote{
    order:3;
    display:inline-flex;
    padding:10px 18px;
    font-size:11px;
    white-space:nowrap;
}

/* Hide duplicate button inside menu */
.mobile-quote{
    display:none !important;
}

/* Mobile Menu */
.nav{

    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    max-height:0;
    overflow:hidden;
    transition:.35s ease;
    margin:0;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.nav.active{
    max-height:500px;
}

.nav a:not(.mobile-quote){
    display:flex;
    align-items:center;
    width:100%;
    height:10px;          /* Fixed height */
    padding:0 30px;       /* Remove top & bottom padding */
    font-size:13px;
    font-weight:600;
    line-height:1;
}
.nav a:nth-last-child(2){
    margin-bottom:30px;
}
/* Space above Home */
.nav a:first-child{
    margin-top:20px;
}

/* Space below Contact Us */
.nav a:nth-last-child(2){
    margin-bottom:25px;
}
}

/*floating icon*/
.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.action-item{
    position:relative;
}

.float-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    color:#fff;
    cursor:pointer;
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#007BFF;
}

.top-btn{
    background:#926CD1;
}

.popup-menu{
    position:absolute;
    right:70px;
    top:0;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    display:none;
    min-width:180px;
    overflow:hidden;
}

.popup-menu a{
    display:block;
    padding:12px 15px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
}

.popup-menu a:last-child{
    border-bottom:none;
}

.popup-menu a:hover{
    background:#f5f5f5;
}
.popup-menu.show{
    display:block;
}