:root {
    --primary-color: #f2e600;
    --secondary-color: #000000;
    --accent-color: #333333;
    --hover-bg: #000000;
    --hover-text: #f2e600;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--accent-color);
    background-color: #fff;
}

header {
    background-color: var(--primary-color);
    padding: 2rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background-color: #000;
    width: 0%;
    transition: width 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    padding-left: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav {
    padding-right: 12px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a.active {
    background-color: #000;
    color: var(--primary-color);
}

nav ul li a:hover:not(.active) {
    opacity: 0.7;
}

nav ul li a.active:hover {
    transform: scale(1.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.title {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--secondary-color);
}

#hero {
    padding: 0;
}

.hero {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    margin-top: 80px;
    position: relative;
    height: 70vh;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider img.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out 0.5s both;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 1s both;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: zoomIn 1s ease-out 1.5s both;
}

.cta-button:hover {
    background-color: var(--hover-bg);
    color: var(--hover-text);
    transform: scale(1.05);
}

section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#pearl-essence {
    margin-bottom: 40px;
}

#pearl-essence-lead-free {
    margin-top: 40px;
}

.container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.container h2 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.profile .profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-item:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.profile-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.profile-item:hover i {
    color: var(--secondary-color);
}

.pack-size .pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pack-card {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pack-card:hover,
.pack-card:active,
.pack-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.pack-card h3 {
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pack-card h3 i {
    color: var(--primary-color);
}

.pack-card ul {
    list-style: none;
    padding: 0;
}

.pack-card li {
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .pack-size .pack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pack-card:nth-child(3) {
        grid-column: span 2;
        margin: 0 auto;
    }
}

@media (max-width: 1023px) {
    .pack-size .pack-grid {
        grid-template-columns: 1fr;
    }

    .pack-card:hover {
        transform: none;
        box-shadow: none;
    }
}

.products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px var(--shadow);
    border-color: var(--primary-color);
}

.product-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.packaging .packaging-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.packaging-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.packaging-item:hover {
    background-color: var(--primary-color);
}

.packaging-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.office, .contact-details {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office:hover, .contact-details:hover,
.office:active, .contact-details:active,
.office:focus-visible, .contact-details:focus-visible {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.office i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-details i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    grid-column: span 2;
    resize: vertical;
}

.submit-button {
    grid-column: span 2;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--hover-bg);
    color: var(--hover-text);
    transform: scale(1.05);
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 991px) {
    header {
        padding: 1rem;
        justify-content: space-between;
    }

    .logo {
        padding-left: 1rem;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #000;
        margin: 3px 0;
        transition: 0.3s;
    }

    .mobile-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        transition: right 0.3s ease;
        z-index: 1001;
        padding: 2rem 1rem;
    }

    .mobile-menu.open {
        right: 0;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu li {
        margin-bottom: 1rem;
    }

    .mobile-menu a {
        color: #000;
        text-decoration: none;
        font-weight: 400;
        padding: 0.5rem 1rem;
        display: block;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .mobile-menu a.active {
        background-color: #000;
        color: var(--primary-color);
    }

    .mobile-menu a:hover:not(.active) {
        opacity: 0.7;
    }

    .mobile-menu a.active:hover {
        transform: scale(1.05);
    }
}

@media (min-width: 992px) {
    .mobile-menu {
        display: none !important;
    }

    .hamburger {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 55vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form textarea {
        grid-column: span 1;
    }

    .submit-button {
        grid-column: span 1;
    }

    .office:nth-of-type(1) {
        animation: slideInLeft 0.6s ease-out;
    }

    .office:nth-of-type(2) {
        animation: slideInBottom 0.6s ease-out;
    }

    .contact-details {
        animation: slideInRight 0.6s ease-out;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pearl-essence .section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.essence-layout {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    width: 630px;
    height: 760px;
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 300px;
    border: #000 1px solid;
}

.slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider img.active {
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: black;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.details-container {
    width: 630px;
    height: 20px;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.product-table th,
.product-table td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: center;
}

.product-table th {
    background-color: #f9f9f9;
    font-weight: 700;
}

.product-table tbody tr.highlight {
    background-color: #e0f7fa;
    transition: background-color 0.3s ease;
}

.product-table tbody tr.highlight td {
    box-shadow: inset 0 0 0 1px #00bcd4;
}

@media (max-width: 768px) {
    .pearl-essence .section-title {
        font-size: 30px;
        line-height: 1.3;
        letter-spacing: 0.03em;
        text-align: center;
    }

    .pearl-essence .essence-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 45px;
    }

    #pearl-essence-lead-free .essence-layout {
        flex-direction: column;
    }

    #pearl-essence-lead-free .section-title {
        order: 1;
    }

    #pearl-essence-lead-free .slider-container {
        order: 2;
    }

    #pearl-essence-lead-free .details-container {
        order: 3;
    }

    .slider-container,
    .details-container {
        width: 100%;
        height: auto;
    }

    .slider-container {
        height: 365px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .details-container {
        display: block;
        margin: 0 auto;
        padding-top: 0;
        text-align: left;
    }

    .slider-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

@media (min-width: 769px) {
    .pearl-essence .essence-layout {
        gap: 40px;
        align-items: center;
    }

    .slider-container {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .slider-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .details-container {
        align-items: center;
    }
}

@media (min-width: 1024px) {

  .pearl-essence .essence-layout {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
  }

  .details-container {
    width: 630px;
    height: 20px;
    box-sizing: border-box;
  }

  .slider-container,
  .image-container {
    width: 630px;
    height: auto;
    min-height: unset;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
  }

  .slider-container img,
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .slider-container,
  .swiper,
  .swiper-wrapper,
  .swiper-slide {
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .slider-arrow,
  .slider-prev,
  .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
  }
}


div#slider2 {
    height: 344px;
}

.para{
    padding-top: 20px;
    text-align: center;
}
/* ===============================
   PRODUCT IMAGE GRID – FINAL
   =============================== */

.six-image-section,
.four-image-section {
    padding: 60px 20px;
}

.six-image-section .section-title,
.four-image-section .section-title {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* IMAGE CARD */
.image-box {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 18px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE SIZE (AUR CHOTI) */
.image-box img {
    width: 100%;
    max-width: 360px;   /* 👈 aur thodi choti */
    margin: 0 auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* TITLE */
.image-title {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 5px 16px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1px;
    z-index: 2;
}

/* HOVER */
.image-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.image-box:hover img {
    transform: scale(1.06);
}

/* ===============================
   MOBILE ANIMATION
   =============================== */

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-box {
        opacity: 0;
        transform: translateX(0);
        animation-duration: 0.7s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-out;
    }

    /* LEFT SLIDE */
    .image-box.slide-left {
        animation-name: slideFromLeft;
    }

    /* RIGHT SLIDE */
    .image-box.slide-right {
        animation-name: slideFromRight;
    }

    .image-box img {
        max-width: 100%;
    }
}

/* KEYFRAMES */
@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ===============================
   NAIL COLOR – FINAL SIZE CONTROL
   =============================== */

/* Table base (safe) */
.nail-color-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.nail-color-table th,
.nail-color-table td {
    border: 2px solid #000;
    padding: 9px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
}

/* Right PHOTO column width */
.nail-color-table td.right-col,
.nail-color-table th.right-head {
    width: 240px; /* image container ke proportion me */
}

/* ===============================
   COLOR BLOCK (PERFECT SIZE)
   =============================== */

.color-swatch {
    width: 95px;          /* 👈 aur chota */
    height: 30px;         /* 👈 slim look */
    margin: 0 auto;
    border-radius: 6px;
    border: 1.5px solid #000;
}

/* COLORS */
.color-swatch.white {
    background: #ececec;
}

.color-swatch.red {
    background: #d8a1a8;
}

.color-swatch.yellow {
    background: #f1df9f;
}

.color-swatch.blue {
    background: #6fa6d9;
}

.color-swatch.green {
    background: #7fb8a8;
}

/* ===============================
   MOBILE FIX
   =============================== */

@media (max-width: 768px) {
    .nail-color-table th,
    .nail-color-table td {
        font-size: 16px;
        padding: 14px;
    }

    .color-swatch {
        width: 80px;
        height: 26px;
    }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.image-box {
    text-align: center;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    transition: transform 0.4s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}

.image-title {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}
.header-logo img {
    height: 45px;      /* header ke hisab se adjust */
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .header-logo img {
        height: 38px;
    }
}
        .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:25px;
	right:15px;
	background-color:#25D366;
	color:#FFF;
	border-radius:70px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 2px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
