/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#fff8e7;
    color:#222;
}

/* Navbar */
.custom-nav{
    background:linear-gradient(90deg,#b22222,#ff6b00);
    padding:15px 0;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.navbar-brand{
    font-size:26px;
    letter-spacing:.5px;
}

/* Hero Section */
.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:100px 0;
    background:
      linear-gradient(rgba(0,0,0,.45), rgba(120,20,0,.35)),
      url("img/banner3.png");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.hero-section h1{
    font-size:64px;
    font-weight:700;
    line-height:1.15;
    color:#fff;
    text-shadow:0 4px 12px rgba(0,0,0,.35);
}

.hero-section p{
    font-size:26px;
    color:#f5f5f5;
    max-width:650px;
}

/* Form Card */
.consultation-box{
    background:rgba(255,255,255,.95);
    padding:40px;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.consultation-box h3{
    color:#b22222;
    font-size:42px;
    font-weight:700;
}

.form-control{
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
}

.form-control{
    padding:18px;
    border-radius:12px;
    border:1px solid #ddd;
    font-size:18px;
}

/* Buttons */
.btn-warning{
    background:#ffd700;
    color:#000;
    font-size:18px;
    font-weight:700;
    border:none;
    border-radius:12px;
    padding:14px 30px;
}

.btn-danger{
    background:#b22222;
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:18px;
    padding:15px;
}

.btn-dark{
    padding:12px 22px;
}

/* Section Headings */
.section-title{
    color:#b22222;
    font-weight:700;
}

/* Services */
.services-section{
    background:#fff;
}

.service-card{
    background:#fffaf0;
    padding:30px;
    border-radius:20px;
    transition:.3s;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-card img{
    height:110px;
    object-fit:contain;
}

.service-card h4{
    color:#ff6b00;
    margin-bottom:10px;
}

/* Palm Reading */
.palm-reading{
    background:#fff3d6;
}

.palm-reading img{
    border-radius:20px;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.palm-reading h2{
    color:#b22222;
    margin-bottom:20px;
}

/* Location */
.location-section{
    background:#fff;
}

/* Payment */
.payment-section{
    background:linear-gradient(90deg,#ffecd2,#fcb69f);
}

.payment-section h2{
    color:#b22222;
    font-weight:700;
}

/* Testimonials */
.testimonial-section{
    background:#fff8e7;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 16px rgba(0,0,0,.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:scale(1.03);
}

.testimonial-card h5{
    color:#ff6b00;
    margin-bottom:15px;
}

/* Footer */
.footer{
    background:#b22222;
    color:#fff;
}

/* Mobile */
@media(max-width:768px){

.hero-section{
    text-align:center;
    padding:60px 0;
}

.hero-section h1{
    font-size:32px;
}

.consultation-box{
    margin-top:35px;
}

.service-card{
    margin-bottom:25px;
}

.palm-reading img{
    margin-bottom:25px;
}

}
@media(max-width:768px){

.hero-section{
    text-align:center;
    padding:60px 0;
}

.hero-section h1{
    font-size:40px;
}

.hero-section p{
    font-size:18px;
}

.consultation-box{
    margin-top:40px;
}
}
.custom-nav{
    background: linear-gradient(90deg,#fff8ef,#fff3dd);
    padding: 14px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,.06);
    border-bottom:1px solid #f0dcc2;
}

/* Brand */
.brand-box{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.brand-box img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-right:12px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.brand-text h4{
    margin:0;
    font-size:28px;
    color:#7a1400;
    font-weight:700;
    line-height:1;
}

.brand-text small{
    color:#b56a00;
    letter-spacing:.5px;
}

/* Call Button */
.call-box{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    background:linear-gradient(90deg,#8b0000,#d12f00);
    padding:12px 20px;
    border-radius:50px;
    color:#fff;
    box-shadow:0 5px 15px rgba(139,0,0,.2);
}

.phone-icon{
    font-size:26px;
}

.call-box small{
    display:block;
    font-size:12px;
    opacity:.9;
}

.call-box strong{
    font-size:15px;
    color:#fff;
}