/* style.css ke starting mein add karein */
html {
    scroll-behavior: smooth;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a120b; /* Dark coffee bean brown background */
    color: #f5f2eb; /* Creamy off-white text */
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Typography Overrides */
h1, h2, h3, .logo {
    font-family: 'Marcellus', serif;
    letter-spacing: 1px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(26, 18, 11, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(138, 115, 85, 0.2);
}

.logo {
    font-size: 1.8rem;
    color: #d4af37; /* Matte Gold accent */
    font-weight: bold;
}

nav a {
    color: #f5f2eb;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4af37;
}

.btn-nav {
    border: 1px solid #d4af37;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(180deg, rgba(26,18,11,0.6) 0%, rgba(26,18,11,1) 100%), 
                url('https://images.unsplash.com/photo-1611078489935-0cb964de46d6?q=80&w=1200') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-content{
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat{
    0%,100%{
        transform: translateY(0px);
        filter: drop-shadow(0 0 8px rgba(212,175,55,.15));
    }

    50%{
        transform: translateY(-12px);
        filter: drop-shadow(0 0 25px rgba(212,175,55,.45));
    }
}

.hero-content h1{
    animation: premiumHero 5s ease-in-out infinite;
}

@keyframes premiumHero{
    0%,100%{
        transform: translateY(0);
        text-shadow:
            0 0 8px rgba(212,175,55,.2),
            0 0 15px rgba(212,175,55,.1);
    }

    50%{
        transform: translateY(-12px);
        text-shadow:
            0 0 15px rgba(212,175,55,.5),
            0 0 30px rgba(212,175,55,.35),
            0 0 45px rgba(212,175,55,.2);
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #c4b5a0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background-color: #8a7355; /* Warm taupe brown matching screenshot button background */
    color: #1a120b;
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #d4af37;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid #d4af37;
    border-radius: 25px;
    color: #f5f2eb;
    text-decoration: none;
    margin-left: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(212, 175, 55, 0.15);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.highlight-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px;
    margin: 0 auto;
    max-width: 760px;
    text-align: left;
}

.highlight-list li {
    background: rgba(255,255,255,0.06);
    padding: 12px 15px;
    border-radius: 14px;
    color: #f5f2eb;
}

.section-subtitle {
    text-align: center;
    color: #c4b5a0;
    margin: -20px 0 35px;
}

.packaging-grid + .section-subtitle {
    margin-top: 24px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #c4b5a0;
}

.about-content p {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease;
}

.scroll-reveal.active .about-content p {
    opacity: 1;
    transform: translateX(0);
}

/* Delay for each paragraph */
.scroll-reveal.active .about-content p:nth-child(1) {
    transition-delay: 0.2s;
}

.scroll-reveal.active .about-content p:nth-child(2) {
    transition-delay: 0.5s;
}

.scroll-reveal.active .about-content p:nth-child(3) {
    transition-delay: 0.8s;
}

.feature-grid,
.packaging-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card,
.packaging-card,
.process-card,
.testimonial-card {
    background: rgba(43, 32, 22, 0.6);
    border: 1px solid rgba(138, 115, 85, 0.2);
    border-radius: 16px;
    padding: 24px;
    color: #f5f2eb;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}

.feature-card:hover,
.packaging-card:hover,
.process-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.packaging-card{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212,175,55,.15);
    border-radius: 18px;
    background: rgba(43,32,22,.65);
    transition: all .45s ease;
}

/* Shine */
.packaging-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    transform:skewX(-25deg);
    transition:.8s;
}

/* Hover */
.packaging-card:hover{
    transform:translateY(-10px) scale(1.05);

    color:#d4af37;

    border-color:#d4af37;

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.08),
        rgba(43,32,22,.9)
    );

    box-shadow:
        0 0 15px rgba(212,175,55,.30),
        0 0 35px rgba(212,175,55,.20),
        0 15px 30px rgba(0,0,0,.35);
}

/* Shine Animation */
.packaging-card:hover::before{
    left:150%;
}

.feature-card{
    background: rgba(43,32,22,.6);
    border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    color:#f5f2eb;
    position:relative;
    overflow:hidden;
    cursor:pointer;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease,
        color .45s ease;
}

/* Shine Effect */
.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    transform:skewX(-25deg);
    transition:.8s;
}

/* Hover */
.feature-card:hover{
    transform:translateY(-10px) scale(1.04);

    border-color:#d4af37;

    box-shadow:
        0 0 15px rgba(212,175,55,.25),
        0 0 35px rgba(212,175,55,.18),
        0 20px 35px rgba(0,0,0,.35);

    color:#d4af37;

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.08),
        rgba(43,32,22,.85)
    );
}

/* Shine Animation */
.feature-card:hover::before{
    left:150%;
}

.industries-section .feature-card {
    border: none;
    box-shadow: none;
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.industries-section .feature-card::before {
    display: none;
}

.industries-section .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.packaging-card,
.process-card,
.testimonial-card {
    text-align: left;
}

.testimonial-card p {
    color: #c4b5a0;
    font-style: italic;
}

.contact-card {
    margin-top: 30px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card h3 {
    margin-bottom: 12px;
    color: #d4af37;
}

.contact-card p {
    margin-bottom: 8px;
    color: #f5f2eb;
}

/* Showcase Section */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:120px 20px 100px;
    margin-top:60px;
}

.showcase-section{
    padding:100px 8% 80px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #d4af37;
}

.showcase-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    background-color: rgba(43, 32, 22, 0.6);
    border: 1px solid rgba(138, 115, 85, 0.2);
    border-radius: 16px;
    padding: 30px;
    width: 320px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: #8a7355;
}

/* Middle highlighted item matching screenshot style */
.product-card.highlighted {
    border: 1px solid #d4af37;
    background-color: rgba(54, 40, 28, 0.8);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(138, 115, 85, 0.3);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #d4af37;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f5f2eb;
}

.product-card p {
    font-size: 0.9rem;
    color: #c4b5a0;
    margin-bottom: 30px;
    min-height: 60px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.moq {
    font-size: 0.85rem;
    color: #d4af37;
    font-weight: 600;
}

.btn-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background-color: #8a7355;
    color: #1a120b;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.btn-circle:hover {
    background-color: #d4af37;
}

/* Pillars Section */
.pillar-item{
    position: relative;
    padding: 20px;
    border-radius: 18px;
    transition: all .4s ease;
    cursor: pointer;
}

.pillar-item::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.15);
    opacity: 0;
    transition: .4s;
    z-index: -1;
}

.pillar-item:hover{
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.pillar-item:hover::before{
    opacity: 1;
    border-color: rgba(212,175,55,.5);
    box-shadow: 0 0 25px rgba(212,175,55,.25);
}

.pillar-item h3{
    transition: .35s;
}

.pillar-item p{
    transition: .35s;
}

.pillar-item:hover h3{
    color:#d4af37;
}

.pillar-item:hover p{
    color:#fff;
}

.pillar-num{
    transition:.4s;
}

.pillar-item:hover .pillar-num{
    color:rgba(212,175,55,.35);
    transform:scale(1.15);
}

.pillars-section {
    padding: 80px 8%;
    background-color: #150e09;
    border-top: 1px solid rgba(138, 115, 85, 0.1);
    scroll-margin-top: 100px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Quiz Section */
.quiz-section {
    padding: 80px 8%;
    background-color: #1a120b;
    scroll-margin-top: 100px;
}

.quiz-container {
    background: linear-gradient(135deg, #2b2016 0%, #1a120b 100%);
    border: 1px solid rgba(138, 115, 85, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quiz-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quiz-container p {
    color: #c4b5a0;
    margin-bottom: 40px;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.quiz-step.active {
    display: block;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.quiz-opt, .quiz-opt-final {
    background-color: rgba(26, 18, 11, 0.8);
    border: 1px solid #8a7355;
    color: #f5f2eb;
    padding: 15px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quiz-opt:hover, .quiz-opt-final:hover {
    background: linear-gradient(135deg, #8a7355 0%, #d4af37 100%);
    color: #1a120b;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
    border-color: #d4af37;
}

.result-highlight {
    font-size: 2.2rem;
    color: #d4af37;
    font-family: 'Marcellus', serif;
    margin: 20px 0;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #0f0a06;
    font-size: 0.9rem;
    color: #6e5f4f;
    border-top: 1px solid rgba(138, 115, 85, 0.1);
}

/*====================================
            FOOTER
====================================*/

.footer{

    background:#0F0F0F;
    border-top:2px solid #B78B47;
    padding:35px 0;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

}

.footer-copy{

    flex:1;

}

.footer-copy p{

    color:#F5F1E8;
    font-size:17px;
    line-height:1.8;

}

.footer-copy span{

    color:#B78B47;
    font-weight:600;

}

.footer-copy a{

    color:#B78B47;
    transition:.35s ease;

}

.footer-copy a:hover{

    color:#E6C88B;

}

.footer-right{

    display:flex;
    align-items:center;
    gap:30px;

}

.footer-right img{

    width:180px;
    transition:.4s;

}

.footer-right img:hover{

    transform:scale(1.05);

}

/*==========================
      SCROLL BUTTON
==========================*/

.scroll-top{

    width:65px;
    height:65px;
    border:2px solid #B78B47;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#B78B47;
    font-size:22px;
    transition:.4s;
    background:transparent;

}

.scroll-top:hover{

    background:#B78B47;
    color:#0F0F0F;
    transform:translateY(-6px);

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:991px){

.footer-bottom{

    flex-direction:column;
    text-align:center;

}

.footer-right{

    justify-content:center;

}

.footer-right img{

    width:150px;

}

.scroll-top{

    width:55px;
    height:55px;
    font-size:18px;

}

.footer-copy p{

    font-size:15px;

}

}

@media(max-width:576px){

.footer{

    padding:25px 0;

}

.footer-copy p{

    font-size:14px;
    line-height:1.7;

}

.footer-right{

    flex-direction:column;
    gap:20px;

}

.footer-right img{

    width:130px;

}

}

