                                                                                *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "segoe-ui", sans-serif;
    font-style: normal;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-color: #fff;
}

/* ==========================================
   2. TYPOGRAPHY (Hierarchy)
   ========================================== */
h1 { font-size: clamp(2.2rem, 10vw, 2.4rem); font-weight: 450; letter-spacing: -0.01em; line-height: 1.1; }
h2 { font-size: clamp(2.7rem, 8vw, 4rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: clamp(2.7rem, 8vw, 3rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
h4 { font-size: clamp(1.2rem, 8vw, 1.8rem); font-weight: 400; line-height: 1.1; }
h5 { font-size: clamp(1.2rem, 4vw, 1.4rem); font-weight: 400; text-transform: uppercase; letter-spacing: 0em; }
p { font-size: 1.1rem; font-weight: 300; color: #444; }


.content-block{
    padding:6rem;
    display: flex;
    flex-direction: column;
    width:80%;
    
    
}

.content-block h3 {
    margin-bottom: 3rem; 
}



.hero-title {
    position: relative;
    text-align:center;
    z-index: 1;
    margin: 10px 0;
    color:white;/* Premium spacing */
    
}
/* ==========================================
   3. HEADER & NAVIGATION
   ========================================== */
.nav-container {
    background: #fff;
    height: 56px;
    z-index: 300;
    position: fixed;
    left: 0; top: 0; right: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s ease, background 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav-container nav {
    max-width: 1920px; 
    display: flex;
    margin: 0 auto;
    padding: 1rem 4vw;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}


  .logo-container {
    display: flex;
    align-items: center; /* Vertical centering ke liye */
    gap: 8px;           /* Logo aur text ke beech ka gap */
    
  }
    .divider {
    width: 1px;          /* Divider ki thickness */
    height: 27px;        /* Divider ki height */
    background-color: #033B3D; /* Divider ka color */
  }

  .tagline {
    font-size: 8px;
    letter-spacing: 1px; /* Modern look ke liye spacing */
    color: #000;
    line-height:1.2em;
    text-transform: uppercase;
  }

.nav-right-group {
    align-items: center;
    display: none; 
    gap: 20px;
}

nav .desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav .desktop-nav li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    opacity: 1;
    font-weight:400;
    letter-spacing: -0px;
     padding: 0.5rem 1rem;
    transition: opacity 400ms;
}


/* ==========================================
   3. MEGAMENU
   ========================================== */

.desktop-nav > li .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	overflow-y: hidden;
	max-height: 0;
	transition: max-height 0.8s cubic-bezier(0.39, 1, 0.42, 1);
}

.desktop-nav > li:hover .dropdown-menu {
	max-height: 100vh;
}


.desktop-nav > li .dropdown-menu .container {
	display: flex;
	max-width:1920px;
    height: 100vh;
	grid-gap: 56px;
	flex-wrap: wrap;
	padding: 6rem 4vw;
}
.desktop-nav > li .dropdown-menu .left-section {
	flex-grow: 1;
	flex-basis: 300px;
}
.desktop-nav > li .dropdown-menu .left-section .dropdown-close {
cursor: pointer;
	margin-bottom: 28px;
	display: none;
	
	
}



.desktop-nav > li .dropdown-menu .left-section h1 {
	margin-bottom: 16px;
	font-size: 24px;
}
.desktop-nav > li .dropdown-menu .left-section p {
	line-height: 170%;
	font-size: 16px;
	color: var(--grey);
	margin-bottom: 28px;
}
.desktop-nav > li .dropdown-menu .left-section .btn-see-all {
	padding: 12px 28px;
	background: var(--blue);
	border-radius: 8px;
	color: #fff;
	transition: all .3s ease;
}

.desktop-nav > li .dropdown-menu .right-section {
	flex-grow: 1;
	flex-basis: 700px;
}
.desktop-nav > li .dropdown-menu .right-section h3 {
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 36px;
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 28px;
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links li {
	flex-grow: 1;
	flex-basis: 300px;
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links li a {
	display: flex;
	align-items: center;
	grid-gap: 16px;
	color: #000;
	transition: all.3s ease;
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links li a .bx {
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	background: #f5f5f5;
	transition: all.3s ease;
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links li a h5 {
	font-size: 16px;
	margin-bottom: 6px;
	transition: all.3s ease;
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links li a p {
	font-size: 14px;
	color: var(--grey);
	transition: all.3s ease;
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links li a:hover .bx {
	background: var(--blue);
	color: var(--light-blue);
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links li a:hover h5 {
	color: var(--blue);
}
.desktop-nav > li .dropdown-menu .right-section .dropdown-links li a:hover p {
	color: #000;
}




.link-logo {
    background: url('images/1722751001501.svg');
    display: block;
    background-position: center;
    height: 32px;
    width:69px;
    background-size: contain;
    background-repeat: no-repeat;
}

.heart-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* Default state: Outline */
.heart-icon path {
    fill: transparent; 
    stroke: #000;
}
/* Active state: Solid Black (Jab wishlist mein item ho) */
.link-wishlist.active .heart-icon path {
    fill: #000;
    stroke: #000;
}

/* Wishlist Counter Badge */
.wishlist-count {
    position: absolute;
    top: 5px;
    right: -2px;
    background-color: #d6001c; /* Apple notification red ya solid black */
    color: #fff;
    font-size: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: none; /* Default hide */
    justify-content: center;
    align-items: center;
}

.wishlist-count.show {
    display: flex;
}

.link-close {
    background: url('images/close-icon.svg');
    display: block;
    background-position: center;
    background-size: 17px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

.search-container.hide {
    opacity: 0;
    pointer-events: none;
}

.search-container {
    width: 60%;
    margin: 0 auto;
    padding: 0 42px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.search-container .link-search {
    position: absolute;
    left: 12px;
    opacity: 0.5;
}

.search-container .link-close {
    position: absolute;
    top: 0;
    right: 12px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 400ms;
}

.search-container .link-close:hover {
    opacity: 0.7;
}

.search-container form {
    width: 100%;
    margin: 0 auto;
}

.search-container form input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 17px;
}

/* Hidden Items */

.mobile-nav,
.mobile-search-container {
    display: none;
}


/* ==========================================
   5. LAYOUT & GRID SYSTEM
   ========================================== */
.section { padding: 80px 0; }

.container { 
    margin: auto; 
    max-width: 1920px; 
    padding: 20px 4vw; 
    gap: 3vw; 
}

.fullcont {
    margin:auto;
    padding: 20px 0;
    gao : 3vw;
    max-width:1920px;
}

.grid { display: grid; gap: 4rem; align-items: start; }
.col-50 { grid-template-columns: 1fr 1fr; }
.col-70 { grid-template-columns: 7fr 3fr; }

.col-70 > .card-up { 
    margin-top: -100px; 
    background-color: #f5f5f5; 
    padding: 24px; 
}

/* ==========================================
   6. ANIMATIONS & COMPONENTS
   ========================================== */
.reveal-curtain { position: relative; overflow: hidden; display: block; }
.reveal-curtain::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: grey;
    z-index: 2;
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal-curtain.active::after { transform: translateX(-100%); }
.reveal-curtain img { transform: scale(1.1); transition: transform 1.2s ease; }
.reveal-curtain.active img { transform: scale(1); }

/* Buttons */
.btn-1px {
    position: relative;
    display: inline-flex;
    padding: 10px 24px;
    border: 1px solid #000;
    color: #000;
    letter-spacing: 0.12em;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.8s, border-color 0.4s;
}

.btn-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: -1;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    transform: translateY(100%);
}

.btn-1px:hover { color: #FFF; border-color: #000; }
.btn-1px:hover .btn-bg { transform: translateY(0); }

/* ==========================================
   7. HERO & PARALLAX
   ========================================== */
.hero-image-block {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* ==========================================
   8. CONTACT SECTION
   ========================================== */
.contact-wrapper { display: flex; max-width: 1920px; margin: auto; padding: 100px 3vw; gap: 3vw; }
.contact-block { display: grid; grid-template-columns: 1.2fr 2fr 1.5fr; gap: 60px; padding: 80px 0; }

.sticky-contact {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    height: fit-content;
}

.sticky-contact span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: "acumin-variable", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 10px;
}

 .col {
    display: flex;
    flex-direction: column;
}
.grid {
    display: grid;
   flex-wrap: wrap;
    gap: 80px; /* Left aur Right side ke beech ki space */
   
    align-items: start; /* Sticky ke liye zaroori hai */
}



    
   
.col-50 {
    
    grid-template-columns: 1fr 1fr; /* 50-50 split */
    gap: 80px; /* Left aur Right side ke beech ki space */
    padding: 100px 5%;
   /* Sticky ke liye zaroori hai */
}


/* ==========================================
   9. MEDIA QUERIES (Mobile Fixes)
   ========================================== */
@media (max-width: 990px) {
    .nav-right-group { display: flex; }
    .grid.col-50, .grid.col-70 { grid-template-columns: 1fr; }
    .card-up { margin-top: 0; }
    .sticky-contact { display: none !important; }
    .container { padding: 40px 4vw; width: 100%; }
    .contact-wrapper, .contact-block { display: block !important; }
    
    .hero-image-block {
        width: 100vw;
        height: 30vh !important;
        min-height: 400px;
        margin-left: calc(-50vw + 50%);
    }
    
    .content-block { padding: 4rem 1rem !important; }
    .content-block p { width: 100%; }
}

@media (max-width: 990px) {

.nav-right-group {
      display: flex;
}
  .nav-container nav {
        
        padding: 0 20px;
    }

    .nav-container .desktop-nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0vh;
        background: #fff;
        justify-content: start;
        overflow: hidden;
        z-index: -1;
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); /* Smooth Slide for background */
}    

    .nav-container.active .desktop-nav {
        height: 100vh;
    }
.nav-container .desktop-nav li {
        width: 100%;
        padding: 0 32px;
    }

    .nav-container .desktop-nav li:first-child {
        margin-top: 140px;
    }

.nav-container .desktop-nav li {
    overflow: hidden; /* Isse 'a' tag side se nikalta hua dikhega */
    display: block;
    margin-bottom: 5px;
}

    .nav-container .desktop-nav .link-logo,
    .nav-container .desktop-nav .link-search,
    .nav-container .desktop-nav .link-bag {
        display: none;
    }
.nav-container .desktop-nav li a {
    display: block;
    font-size: 30px; 
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #000;
   
    text-decoration: none;
    padding: 8px 0;
    border-bottom: none !important;
    
    /* Animation Base */
    opacity: 0;
transform: translate3d(100px, 0, 0);  
transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.9s ease;
}

/* 3. Jab menu khule, tab 'A' tag apni jagah aaye */
.nav-container.active .desktop-nav li a {
    opacity: 1;
    transform: translateX(0);
}

/* 4. One-by-One Delay (Stagger Effect) */
/* Har link thoda late aayega pehle wale se */
.nav-container.active .desktop-nav li:nth-child(1) a { transition-delay: 0.2s; }
.nav-container.active .desktop-nav li:nth-child(2) a { transition-delay: 0.3s; }
.nav-container.active .desktop-nav li:nth-child(3) a { transition-delay: 0.4s; }
.nav-container.active .desktop-nav li:nth-child(4) a { transition-delay: 0.5s; }
.nav-container.active .desktop-nav li:nth-child(5) a { transition-delay: 0.6s; }
.nav-container.active .desktop-nav li:nth-child(6) a { transition-delay: 0.7s; }    /* Mobile Nav */

    nav .mobile-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        list-style: none;
    }

    nav .menu-icon-container {
        width: 20px;
        height: 56px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    nav .menu-icon {
        position: relative;
        width: 100%;
    }

    nav .menu-icon .line-1,
    nav .menu-icon .line-2 {
        position: absolute;
        height: 1px;
        width: 100%;
        background: #000;
        transition-property: transform, top;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    nav .menu-icon .line-1 {
        top: -4px;
    }

    nav .menu-icon .line-2 {
        top: 4px;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-1 {
        top: 0;
        transform: rotateZ(45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-2 {
        top: 0;
        transform: rotateZ(-45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    /* Bag Icon Animation */

    .nav-container.active .mobile-nav .link-bag {
        transform: translateY(8px);
        opacity: 0;
        pointer-events: none;
    }

    .nav-container .mobile-nav .link-bag {
        transition: all 1000ms ease;
    }



    /* Search Box */

    .mobile-search-container input {
        width: 100%;
        padding: 12px 36px;
        font-family: "Inter", sans-serif;
        font-size: 17px;
        background: #f2f2f2;
        border: 0;
        color: #fff;
        border-radius: 50px;
        outline: none;
    }

    .mobile-search-container {
        position: relative;
        padding: 0 16px;
        margin-top: -30px;
        border-bottom: 1px solid #616161;
        display: flex;
        padding-bottom: 16px;
        align-items: center;
        transform: rotateX(90deg);
        opacity: 0;
        transition: all 600ms ease;
    }

    .nav-container.active .mobile-search-container {
        transform: rotateX(0deg);
        margin-top: 10px;
        opacity: 1;
    }

  .desktop-nav > li .dropdown-menu {
		top: 0;
		margin-top: 140px;
		overflow-y: auto;
		max-height: 100vh;
		left: 100%;	
		z-index:100;
		transition: all .3s ease;
	}
	.desktop-nav > li .dropdown-menu.show {
		left: 0;
	}
	.desktop-nav > li:hover .dropdown-menu {
		max-height: 100vh;
		
	}
    
 .desktop-nav > li .dropdown-menu .left-section .dropdown-close {
		display: inline-flex;   /* important */
		align-items: center;    /* 👈 vertical center */
    gap: 6px;               /* 👈 space between icon & text */
    font-size: 14px;
	}
  .dropdown-close .bx {
    font-size: 18px;
    line-height: 1;
}

    .mobile-search-container .link-search {
        position: absolute;
        left: 24px;
        opacity: .5;
        background-size: 15px;
    }
  
    /* Nav Move Up */

    .nav-container nav.move-up {
        margin-top: -40px;
    }

    /* Cancel Button */

    .mobile-search-container .cancel-btn {
        color: #000;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        letter-spacing: 1px;
        width: 0px;
        overflow: hidden;
        transition: all 400ms ease;
    }

    .mobile-search-container .search-bar.active + .cancel-btn {
        padding: 0 16px;
        width: 74px;
    }

    .mobile-search-container .search-bar {
        flex: 1;
    }

    /* Desktop Nav Move Down */

    nav .desktop-nav.move-down li:first-child {
        margin-top: 150px;
    }

    nav .desktop-nav.move-down li {
        opacity: 0;
        pointer-events: none;
    }

    
    /* Quick Links */

    .mobile-search-container .search-bar.active ~ .quick-links {
        top: 80px;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 40ms;
    }

    .mobile-search-container .quick-links {
        position: absolute;
        left: 0;
        right: 0;
        padding: 0 32px;
        opacity: 0;
        pointer-events: none;
        top: 10px;
        transition: all 400ms ease;
    }

    .mobile-search-container .quick-links ul {
        list-style: none;
    }

    .mobile-search-container .quick-links h2 {
        color: #86868b;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .mobile-search-container .quick-links ul li a {
        padding: 16px 0;
        display: inline-block;
        text-decoration: none;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid #616161;
        width: 100%;
    }

    .mobile-search-container .quick-links ul li a:hover {
        color: #2997ff;
    }

    /* Nav Animation */

    .nav-container nav {
        transition: all 400ms ease;
    }
    
   .link-logo {
   
    background-position: center;
    height: 28px;
    width:64px;
    
    background-size: contain;
    background-repeat: no-repeat;
}
input,
div,
span,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
}

                                        