/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
} */
/* navbar css start */
.navbar {
    background: linear-gradient(45deg, #f0c442, #ceb697);
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: white;
}
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: bold;
    color: white;
    transition: 0.3s;
}
.navbar-nav .nav-link:hover {
    color: #ffeb3b;
}
.login-signup .btn {
    font-size: 14px;
    padding: 6px 12px;
    margin-left: 10px;
}

/* Navbar Toggle */
/* .navbar-toggler {
    border: none;
    background: transparent;
    padding: 5px;
    cursor: pointer;
}
.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.4s;
} */

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle img {
    border: 2px solid #ccc;
    object-fit: cover;
}

/* Responsive Styles */
/* Navbar Mobile Design Fix */
@media (max-width: 991px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }

    .navbar-brand {
        font-size: 18px;
        font-weight: bold;
    }

    .navbar-toggler {
        border: none;
        background: transparent;
        order: 3;
    }

    /* Hamburger Icon to Cross */
    .navbar-toggler.open .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L24 24M6 24L24 6'/%3E%3C/svg%3E");
    }

    .navbar-toggler-icon {
        transition: all 0.3s ease-in-out;
    }

    /* Mobile Menu Style */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 15px;
        display: none;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}



/* navbar css end */


.hero-buttons {
     
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
.hero-buttons .btn {
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Pandit Section */

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}
.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 25px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.search-box input:focus {
    border-color: #007bff;
    box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.2);
}
.clear-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #888;
    transition: color 0.3s;
}
.clear-icon:hover {
    color: #000;
}

.pandit-section {
        padding: 20px;
        background: #f9f9f9;
    }
    .section-title {
        text-align: center;
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .pandit-card {
        display: flex;
        align-items: center;
        background: white;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 15px;
    }
    .pandit-img {
        width: 60px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
    }
    .pandit-details h3 {
        margin: 0;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .experience {
        font-size: 14px;
        color: #777;
    }
    .pooja-list {
        font-size: 14px;
        color: #444;
    }
    .view-all-btn {
        margin-top: 5px;
        padding: 6px 12px;
        font-size: 14px;
        background: #ff9800;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

/* Modal Styling */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
}
.modal-content {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 90%;
max-width: 400px;
}
.close-btn {
font-size: 22px;
cursor: pointer;
float: right;
}

/* Pooja Samagri Section */
.pooja-samagri-section {
padding: 20px;
background: #f9f9f9;
}

.section-title {
font-size: 22px;
font-weight: bold;
margin-bottom: 20px;
}

.pooja-card {
background: white;
padding: 15px;
border-radius: 12px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
margin-bottom: 15px;
}

.pooja-img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
}

.samagri-list {
margin-top: 10px;
}

.samagri-item {
display: flex;
align-items: center;
gap: 10px;
margin: 5px 0;
}

.samagri-item img {
width: 40px;
height: 40px;
border-radius: 50%;
}

/* View All Button */
.view-all-btn {
margin-top: 8px;
padding: 6px 12px;
font-size: 14px;
background: #ff9800;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}

.view-all-btn:hover {
background: #e68900;
}

/* View All Pooja Samagri Button */
.view-all-pooja-btn {
padding: 10px 16px;
font-size: 16px;
background: #d32f2f;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
}

.view-all-pooja-btn:hover {
background: #b71c1c;
}


/* Modal Styling */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
}
.modal-content {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 90%;
max-width: 400px;
}
.close-btn {
font-size: 22px;
cursor: pointer;
float: right;
}

/* About Us Section */
.about-us-section {
background: #f4f4f4;
padding: 40px 20px;
}

.section-header h2 {
font-size: 24px;
font-weight: bold;
color: #333;
}

.section-header p {
font-size: 16px;
color: #666;
max-width: 600px;
margin: 0 auto 20px;
}

/* Feature Cards */
.feature-card {
background: white;
padding: 20px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
margin-bottom: 20px;
}

.feature-card:hover {
transform: translateY(-5px);
}

.feature-card img {
width: 100%;
max-height: 160px;
border-radius: 8px;
object-fit: cover;
}

.feature-card h3 {
font-size: 18px;
font-weight: bold;
color: #222;
margin-top: 12px;
}

.feature-card p {
font-size: 14px;
color: #555;
margin-top: 6px;
}

/* Explore More Button */
.explore-btn {
background: #d32f2f;
color: white;
border: none;
padding: 12px 20px;
font-size: 16px;
border-radius: 6px;
cursor: pointer;
margin-top: 20px;
transition: background 0.3s;
}

.explore-btn:hover {
background: #b71c1c;
}

/* Responsive Design */
@media (max-width: 768px) {
.section-header h2 {
    font-size: 22px;
}

.feature-card {
    padding: 15px;
}

.feature-card h3 {
    font-size: 16px;
}

.feature-card p {
    font-size: 13px;
}

.explore-btn {
    padding: 10px 16px;
    font-size: 14px;
}
}

/* Customer Experience Section */
.customer-experience {
background: linear-gradient(to bottom, #f8f9fa, #eaeaea);
padding: 50px 20px;
text-align: center;
}

/* Section Heading */
.section-header h2 {
font-size: 26px;
font-weight: bold;
color: #222;
margin-bottom: 10px;
}

.section-header p {
font-size: 16px;
color: #666;
max-width: 600px;
margin: 0 auto 30px;
}

/* Experience Cards */
.experience-card {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out, box-shadow 0.3s;
text-align: center;
margin-bottom: 20px;
}

.experience-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Icon Box */
.icon-box {
width: 60px;
height: 60px;
margin: 0 auto 10px;
background: #d32f2f;
color: white;
font-size: 26px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: background 0.3s;
}

.experience-card:hover .icon-box {
background: #b71c1c;
}

/* Experience Card Text */
.experience-card h3 {
font-size: 18px;
font-weight: bold;
color: #222;
margin-top: 10px;
}

.experience-card p {
font-size: 14px;
color: #555;
margin-top: 5px;
}

/* Action Buttons */
.action-btn {
background: #d32f2f;
color: white;
border: none;
padding: 12px 20px;
font-size: 16px;
border-radius: 6px;
cursor: pointer;
margin: 10px;
transition: background 0.3s;
}

.buy-btn {
background: #0288d1;
}

.action-btn:hover {
background: #b71c1c;
}

.buy-btn:hover {
background: #0277bd;
}

/* Responsive Design */
@media (max-width: 768px) {
.section-header h2 {
    font-size: 22px;
}

.experience-card {
    padding: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    font-size: 22px;
}

.experience-card h3 {
    font-size: 16px;
}

.experience-card p {
    font-size: 13px;
}

.action-btn {
    padding: 10px 16px;
    font-size: 14px;
}
}

/*//testimonial*/
.testimonials-section {
background: #fdf3e3;
border-radius: 12px;
text-align: center;
}
.section-title {
font-size: 24px;
font-weight: bold;
color: #d97706;
}
.testimonial-card {
background: white;
border-radius: 12px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.testimonial-img {
width: 80px;
height: 80px;
border-radius: 50%;
}
.stars {
color: #ff9800;
font-size: 18px;
}

/*contact*/
.contact-section {
background: #f9f9f9;
padding: 50px 0;
}
.section-title {
font-size: 26px;
font-weight: bold;
margin-bottom: 30px;
}
.contact-form {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-form .form-control {
border-radius: 8px;
padding: 10px;
}
.contact-form button {
background: #ff6600;
border: none;
font-size: 16px;
font-weight: bold;
border-radius: 8px;
padding: 10px;
}
.contact-form button:hover {
background: #e65c00;
}
.contact-section h4 {
font-size: 22px;
margin-bottom: 10px;
}
.contact-section p {
font-size: 16px;
margin: 5px 0;
}
.contact-section i {
color: #ff6600;
margin-right: 8px;
}

.footer-section {
background: #1a1a1a;
color: white;
padding: 20px 0;
font-size: 14px;
}
.footer-section h4 {
font-size: 18px;
margin-bottom: 10px;
}
.footer-section p, .footer-section a {
color: #ddd;
text-decoration: none;
}
.footer-section a:hover {
color: #ff6600;
}
.footer-menu ul {
list-style: none;
padding: 0;
}
.footer-menu ul li {
margin-bottom: 5px;
}
.footer-bottom {
margin-top: 10px;
padding-top: 10px;
border-top: 1px solid #444;
}