body{
    background:#0b0b0f;
    font-family:'Poppins',sans-serif;
    color:#fff;
    padding-top:90px;
}

section{
    padding:60px 0;
}

h1,h2,h3,h4{
    font-family:'Playfair Display',serif;
}

.gold{ 
    color:#d4af37; 
}

/* ================= NAVBAR ================= */

.navbar{
    padding:15px 0;
    background:#0b0b0f;
    z-index:999;
}

.nav-link{
    color:#fff !important;
    margin:0 15px;
}

.btn-gold{
    background:#d4af37;
    color:#000;
    padding:10px 25px;
    border-radius:6px;
    font-weight:500;
}

.btn-gold:hover{
    background:#b8962e;
}

/* Logo */

.navbar-logo{
    height:75px;
    width:auto;
    max-width:180px;
    object-fit:contain;
}

/* ================= HERO ================= */

.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 20px;
    background:radial-gradient(
        circle at center,
        rgba(212,175,55,0.25) 0%,
        rgba(212,175,55,0.12) 30%,
        #0b0f1a 70%
    ), #0b0f1a;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
    letter-spacing: 4px;
}

.hero h1 span{
    color:#d4af37;
    
}

.tagline{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:20px;
}

.subtitle{
    font-size:18px;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
}

.btn-primary{
    background:#d4af37;
    color:#000;
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
}

.btn-primary:hover{
    background:#f0c85a;
}

.btn-outline{
    border:1px solid #fff;
    color:#fff;
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
}

.btn-outline:hover{
    background:#fff;
    color:#000;
}

/* ================= ABOUT ================= */

.about p{
    color:#cfcfcf;
    line-height:1.8;
}

.circle-image{
    width: 420px;   /* thoda bada kar diya */
    height: 420px;
    margin: auto;

    border-radius: 50%;
    overflow: hidden;

    position: relative;

    /* Yellowish background */
    background: radial-gradient(circle at center, 
        rgba(212,175,55,0.4) 0%, 
        rgba(212,175,55,0.2) 40%, 
        rgba(212,175,55,0.05) 70%, 
        transparent 100%);
    
    box-shadow: 0 0 60px rgba(225,200,75,0.4);
}

.circle-image img{
    width: 130%;      /* image ko thoda zoom */
    height: 130%;
    object-fit: cover;
    display: block;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.sacred-dot{
    width:16px;
    height:16px;
    background:#d4af37;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* ================= CARDS ================= */
.card-icon{
    width:60px;
    height:60px;
    margin:0 auto 20px;
}

.card-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}




.custom-card{
    background:#111118;
    border:1px solid #d4af37;
    padding:40px;
    border-radius:12px;
    text-align:center;
    transition:0.3s;
    height:100%;
    
}

/*.custom-card:hover{
    border-color:#d4af37;
    transform:translateY(-8px);
}*/

.custom-card p{
    color:#bfbfbf;
    font-size:14px;
}

.custom-card h4{
    letter-spacing: 0.5px;
}

/* ================= SERVICES ================= */

.service-card{
    background:#111118;
    border:1px solid rgba(212,175,55,0.2);
    padding:35px;
    border-radius:12px;
    transition:0.3s;
    height:100%;
}

#services-ritual h2{
    letter-spacing: 2px;
    line-height: 1.4;
    /* text-transform: uppercase; */
}

.service-card:hover{
    border-color:#d4af37;
    transform:translateY(-8px);
}

/* ================= QUOTE ================= */

.quote{
    text-align:center;
}

.quote h2{
    font-size:42px;
    line-height:1.4;
}

/* ================= CONTACT ================= */


/* ================= CONTACT ================= */

.contact-form input,
.contact-form textarea{
    background:#111118 !important;
    border:1px solid rgba(212,175,55,0.55);  /* normal dark gold */
    color:#ffffff !important;
    padding:14px;
    border-radius:8px;
    transition: all 0.3s ease;
}

/* Hover effect */
.contact-form input:hover,
.contact-form textarea:hover{
    border-color:#c9a227;   /* little brighter gold */
}

/* Focus / Typing effect */
.contact-form input:focus,
.contact-form textarea:focus{
    background:#151520 !important;
    border-color:#d4af37;   /* strong theme gold */
    box-shadow:0 0 35px rgba(212,175,55,0.45);
    color:#ffffff !important;
    outline:none;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#888;
}

/* Autofill fix */
.contact-form input:-webkit-autofill{
    -webkit-text-fill-color:#ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}
.btn-gold:hover{
    /*background:#f0c85a;*/
    box-shadow:0 0 15px rgba(212,175,55,0.5);
}

/* ================= FOOTER ================= */

.custom-footer{
    background: #0b0b14;
    padding: 20px 20px 5px;   /* top kam, bottom controlled */
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.4);
}

/* ===== TITLE WITH GOLD LINES ===== */
.footer-title{
    color: #d4af37;
    font-weight: 600;
    font-size: 32px;
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    padding: 0 25px;
    letter-spacing: 1px;
}

/* Left Gold Line */
.footer-title::before,
.footer-title::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 160px;
    height: 3px;
    background: linear-gradient(to right, #d4af37, #f6e09c);
    transform: translateY(-50%);
    border-radius: 3px;
}

/* Position lines */
.footer-title::before{
    right: 100%;
    margin-right: 15px;
}

.footer-title::after{
    left: 100%;
    margin-left: 15px;
}

/* ===== CONTACT LINE ===== */
.footer-contact{
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-contact a{
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a i{
    color: #d4af37;
    /* margin-right: 3px; */
}

.footer-contact a:hover{
    color: #d4af37;
}

.divider{
    margin: 0 18px;
    color: #d4af37;
    font-weight: 500;
}

/* ===== SOCIAL ICONS ===== */
.footer-social{
    margin-bottom: 20px;
}

.footer-social a{
    margin: 0 8px;
    font-size: 22px;
    transition: 0.3s ease;
    display: inline-block;
}

/* Brand Colors */
.twitter{ color:#1DA1F2; }
.youtube{ color:#FF0000; }
.linkedin{ color:#0A66C2; }
.instagram{ color:#E4405F; }
.facebook{ color:#1877F2; }

.footer-social a:hover{
    transform: translateY(-5px) scale(1.15);
}

/* ===== COPYRIGHT ===== */
.footer-copy{
    color: #bbbbbb8a;
    font-size: 14px;
    margin-top: 15px;   /* niche push karega */
    letter-spacing: 0.5px;
}

.footer-copy{
    margin-bottom: -40px;
}

@media (max-width: 768px){

    .footer-title::before,
    .footer-title::after{
        width: 70px;
    }

    .footer-contact{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .divider{
        display: none;
    }

}

/* ================= BRAND STORY CARD ================= */

.brand-quote-card{
    background: linear-gradient(
        145deg,
        rgba(212,175,55,0.08),
        rgba(17,17,24,0.9)
    );
    border: 1px solid rgba(212,175,55,0.3);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(8px);
    transition: 0.4s ease;
}

.brand-quote-card p{
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.9;
    letter-spacing: 0.5px;
    color: #f5f5f5;
}

.brand-quote-card:hover{
    border-color: #d4af37;
    transform: translateY(-6px);
}

/* ================= PHILOSOPHY INTENT ================= */

/* .philosophy-intent{
    padding:140px 0;
    background:linear-gradient(
        180deg,
        #0b0b0f 0%,
        #0e111a 50%,
        #0b0b0f 100%
    );
} */

.philosophy h2{
    letter-spacing: 2px;
    line-height: 1.4;
}

.philosophy-intent{
    padding:60px 0 40px 0;   /* top right bottom left */
    background:linear-gradient(
        180deg,
        #0b0b0f 0%,
        #0e111a 50%,
        #0b0b0f 100%
    );
}

.philosophy-intent p{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.9;
    max-width:850px;
    margin:auto;
}

.philosophy-intent strong{
    font-family:'Playfair Display', serif;
    font-size:22px;
    font-weight:600;
}

.highlight-line{
    font-size:20px;
    font-family:'Playfair Display', serif;
}

/* ================= SIGNATURE MANIFESTO ================= */

.signature-manifesto{
    padding:70px 0;   /* Top & bottom gap (proper breathing space) */
    text-align:center;
    background:#0b0b0f;
}

.signature-manifesto h2{
    font-family:'Playfair Display', serif;
    font-size:44px;
    line-height:1.5;
    max-width:900px;
    margin:auto;
    color:#f5f5f5;
}

/* ================= SACRED REFLECTION ================= */

.sacred-reflection{
    padding:20px 0;   /* Proper breathing space */
    margin-top:-20px;
    background:linear-gradient(
        180deg,
        #0b0b0f 0%,
        #0f1320 50%,
        #0b0b0f 100%
    );
}

.reflection-card{
    background:rgba(17,17,24,0.8);
    border:1px solid rgba(212,175,55,0.25);
    padding:50px 20px;
    border-radius:20px;
    backdrop-filter: blur(8px);
    transition:0.4s ease;
}

.reflection-card h3{
     padding:30px 0;
    font-family:'Playfair Display', serif;
    font-size:30px;
    line-height:1.6;
}

.reflection-card p{
    color:#cfcfcf;
    font-size:17px;
    line-height:1.9;
}

.reflection-card:hover{
    border-color:#d4af37;
    transform:translateY(-6px);
}




/* ================= RESPONSIVE ================= */

/* ================= RESPONSIVE FIX ================= */

/* Tablet View */
@media (max-width: 1024px){

    section{
        padding:60px 20px;
    }

    .hero{
        height:auto;
        padding:120px 20px 80px;
    }

    .hero h1{
        font-size:44px;
        line-height:1.3;
        letter-spacing:2px;
    }

    .subtitle{
        font-size:16px;
    }

    .circle-image{
        width:320px;
        height:320px;
        margin-top:40px;
    }

    .footer-title::before,
    .footer-title::after{
        width:80px;
    }
}


/* Mobile View */
@media (max-width: 768px){

    body{
        padding-top:70px;
    }

    section{
        padding:50px 20px;
    }

    /* NAVBAR */
    .navbar{
        padding:10px 0;
    }

    .navbar-logo{
        height:45px;
    }

    .navbar-nav{
        margin-top:15px;
        text-align:center;
    }

    .nav-link{
        margin:10px 0;
    }

    .btn-gold{
        padding:8px 18px;
        font-size:14px;
    }

    /* HERO */
    .hero{
        height:auto;
        padding:110px 20px 70px;
    }

    .hero h1{
        font-size:30px;
        line-height:1.3;
        letter-spacing:1px;
    }

    .tagline{
        font-size:12px;
        letter-spacing:2px;
    }

    .subtitle{
        font-size:15px;
        margin-bottom:30px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        text-align:center;
    }

    /* ABOUT */
    .circle-image{
        width:260px;
        height:260px;
        margin-top:30px;
    }

    /* CARDS */
    .custom-card{
        padding:30px 20px;
    }

    .custom-card p{
        font-size:13px;
    }

    /* PHILOSOPHY PAGE */
    .brand-quote-card{
        padding:30px 20px;
    }

    .brand-quote-card p{
        font-size:18px;
    }

    .philosophy-intent p{
        font-size:16px;
    }

    .reflection-card{
        padding:35px 20px;
    }

    .reflection-card h3{
        font-size:22px;
        padding:20px 0;
    }

    /* FOOTER */
    .footer-title{
        font-size:22px;
        padding:0 10px;
    }

    .footer-title::before,
    .footer-title::after{
        display:none;
    }

    .footer-contact{
        flex-direction:column;
        gap:8px;
    }

    .divider{
        display:none;
    }

}

    

