/* Custom CSS for Denny Benny Website */

:root {
    --primary-color: #ff8f00;
    --secondary-color: #ffc107;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --orange-gradient: linear-gradient(135deg, #ff8f00 0%, #ffc107 100%);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 0rem 0;
}

.navbar-brand img {
    width: 212px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.3rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: var(--orange-gradient);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Button Styles */
.btn {
    border-radius: 25px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--orange-gradient);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ffc107, #ff8f00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 143, 0, 0.4);
    color: white;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Contact Section Icons */
.contact-info i {
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-lg {
        width: 100%;
    }
}

/* Animation Classes - Simplified */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}
/* Product Card Ambuja Style */
.product-card-ambuja {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    min-height: 400px;
}

.product-card-ambuja:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Normal Content - Default Visible */
.product-card-ambuja .normal-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

/* Hover Content - Hidden by Default */
.product-card-ambuja .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
}

/* On Hover - Show Hover Content, Hide Normal Content */
.product-card-ambuja:hover .normal-content {
    opacity: 0;
    transform: translateY(-20px);
}

.product-card-ambuja:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* Features Grid Layout */
.features-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}

.feature-item {
    text-align: center;
    flex: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 1.5rem;
}

/* Success variant for TMT bars */
.product-card-ambuja .text-success + .card-body .feature-icon {
    background: rgba(25, 135, 84, 0.1);
}

/* Badge Styling */
.product-card-ambuja .badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0 0 15px 0;
}

/* Button Styling */
.product-card-ambuja .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product-card-ambuja .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Card Header */
.product-card-ambuja .card-header {
    background: transparent !important;
    border: none !important;
    padding: 1.5rem 1rem 0.5rem;
}

.product-card-ambuja .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Card Body */
.product-card-ambuja .card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 80px);
}

/* Image Styling */
.product-card-ambuja img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-card-ambuja:hover img {
    transform: scale(1.05);
}

/* Text Styling */
.product-card-ambuja .text-muted.small {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #6c757d !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        gap: 0.5rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .product-card-ambuja .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    padding: 1.5rem 1.5rem 0;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 0 1.5rem 1.5rem;
}

.product-details h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.product-features ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.product-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.product-specifications .spec-item {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.product-specifications .spec-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.875rem;
}

.product-specifications .spec-value {
    color: var(--primary-color);
    font-weight: 500;
}
/* Testimonials Section */
#testimonials {
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,100 1000,0"/></svg>');
    background-size: cover;
    background-position: top;
}

.testimonial-icon {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
    border: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-author h6 {
    color: var(--primary-color) !important;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    opacity: 1;
    transform: scale(1.2);
}

/* FAQ Section */
.accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    color: #333;
    border-radius: 10px !important;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #e9ecef;
}

/* Mobile Responsive Testimonials */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .carousel-indicators {
        bottom: -30px;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    #testimonials h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-icon i {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1rem !important;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* Additional Mobile Responsiveness */
@media (max-width: 992px) {
    .product-card-ambuja {
        margin-bottom: 2rem;
    }
    
    .features-grid {
        gap: 0.5rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .product-card-ambuja .card-title {
        font-size: 1.1rem;
    }
    
    .product-card-ambuja .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .navbar-brand span {
        display: none;
    }
    
    .hero-section .btn-lg {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .product-card-ambuja {
        min-height: 350px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.6rem 0.8rem;
    }
}
/* About Us Section Styles */
.about-image-container {
    position: relative;
}

.main-about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px !important;
}

.about-overlay-card {
    bottom: 20px;
    left: 20px;
    max-width: 250px;
    border-radius: 10px !important;
    border: 3px solid white;
}

.about-feature {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.about-feature:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-5px);
}

.feature-icon-large {
    transition: transform 0.3s ease;
}

.about-feature:hover .feature-icon-large {
    transform: scale(1.1);
}

/* Quality Assured Section */
.quality-badge {
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Counter Section Styles */
.counter-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.counter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--warning-color);
}

.counter-icon {
    transition: transform 0.3s ease;
}

.counter-card:hover .counter-icon i {
    transform: scale(1.1);
}

.counter-number {
    font-size: 2.5rem;
    transition: color 0.3s ease;
}

.counter-card:hover .counter-number {
    color: var(--warning-color) !important;
}

/* Text Colors Update */
.text-primary {
    color: var(--primary-color) !important;
}

.btn-outline-warning {
    color: var(--warning-color);
    border-color: var(--warning-color);
}

.btn-outline-warning:hover {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: white;
}

/* Product Card Updates for Orange Theme */
.product-card-ambuja .card-title.text-primary {
    color: var(--primary-color) !important;
}

.product-card-ambuja .feature-icon {
    background: rgba(255, 143, 0, 0.1);
}

.product-card-ambuja .text-success + .card-body .feature-icon {
    background: rgba(40, 167, 69, 0.1);
}

/* Navigation Updates */
.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Form Updates */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 143, 0, 0.25);
}

/* Footer Updates */
footer .social-links a:hover {
    background: var(--primary-color);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .main-about-image {
        height: 300px;
    }
    
    .about-overlay-card {
        position: static !important;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .quality-badge {
        width: 150px !important;
        height: 150px !important;
        margin: 2rem auto;
    }
    
    .quality-badge i {
        font-size: 2rem !important;
    }
    
    .quality-badge h4 {
        font-size: 1.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-feature h4 {
        font-size: 1.5rem;
    }
    
    .feature-icon-large i {
        font-size: 2rem !important;
    }
    
    .counter-card {
        margin-bottom: 1.5rem;
    }
    
    .counter-icon i {
        font-size: 2.5rem !important;
    }
}
/* Contact Section Styles */
.contact-info-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--warning-color);
}

.contact-info-card .icon-circle {
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.map-placeholder {
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: var(--warning-color);
    background-color: rgba(255, 193, 7, 0.05) !important;
}

/* Enquiry Section Styles */
.enquiry-form-container {
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.input-group-text {
    border: 1px solid #dee2e6;
    background-color: #f8f9fa !important;
}

.form-control:focus + .input-group-text,
.form-select:focus + .input-group-text {
    border-color: var(--primary-color);
    background-color: rgba(255, 143, 0, 0.1) !important;
}

.enquiry-form-container .form-control,
.enquiry-form-container .form-select {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.enquiry-form-container .form-control:focus,
.enquiry-form-container .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 143, 0, 0.15);
}

.enquiry-form-container .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%) !important;
}

.footer-brand img {
  
    transition: all 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--warning-color);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.footer-link {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--warning-color) !important;
    padding-left: 20px;
}

.footer-link:hover:before {
    transform: translateX(5px);
}

.footer-products li {
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-products li:hover {
    color: var(--warning-color) !important;
    padding-left: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-radius: 5px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
}

.contact-item i {
    margin-top: 2px;
    font-size: 1.1rem;
}

.contact-text p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design for Contact & Enquiry */
@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .icon-circle {
        width: 60px !important;
        height: 60px !important;
    }
    
    .icon-circle i {
        font-size: 1.5rem !important;
    }
    
    .enquiry-form-container {
        padding: 2rem !important;
    }
    
    .enquiry-icon i {
        font-size: 2.5rem !important;
    }
    
    .map-placeholder {
        height: 250px !important;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 2rem !important;
    }
    
    .enquiry-form-container {
        padding: 1.5rem !important;
    }
    
    .input-group-text {
        padding: 0.5rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.6rem 0.8rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .social-links {
        text-align: center;
        margin-top: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        margin-right: 1rem !important;
    }
}

/* Additional Form Enhancements */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: var(--success-color);
    background-image: url("../img/parallex.jpg");
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: var(--danger-color);
    background-image: url("../img/parallex.jpg");
}

/* Loading Animation for Form Submission */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

/* Product Image Styling */
.product-image {

    width: 100%;
    object-fit: contain;
}

/* Parallax Background Sections */
.parallax-bg-1 {
       background: linear-gradient(135deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 0%) 100%), url(../img/parallex.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}

.parallax-bg-2 {
       background: linear-gradient(135deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 0%) 100%), url(../img/parallex.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}

.parallax-bg-3 {
       background: linear-gradient(135deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 0%) 100%), url(../img/parallex.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}

.parallax-bg-4 {
       background: linear-gradient(135deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 0%) 100%), url(../img/parallex.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}

.parallax-bg-5 {
       background: linear-gradient(135deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 0%) 100%), url(../img/parallex.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}

/* Parallax overlay for better text readability */
.parallax-bg-1::before,
.parallax-bg-2::before,
.parallax-bg-3::before,
.parallax-bg-4::before,
.parallax-bg-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.parallax-bg-1 .container,
.parallax-bg-2 .container,
.parallax-bg-3 .container,
.parallax-bg-4 .container,
.parallax-bg-5 .container {
    position: relative;
    z-index: 2;
}

/* Mobile Parallax Fallback */
@media (max-width: 768px) {
    .parallax-bg-1,
    .parallax-bg-2,
    .parallax-bg-3,
    .parallax-bg-4,
    .parallax-bg-5 {
        background-attachment: scroll;
    }
}

/* Product Enquiry Modal Styles */
#enquiryModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#enquiryModal .modal-header {
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1.5rem;
}

#enquiryModal .modal-body {
    padding: 2rem;
}

#enquiryModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
    border-radius: 0 0 15px 15px;
}

#enquiryModal .form-control,
#enquiryModal .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

#enquiryModal .form-control:focus,
#enquiryModal .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

#enquiryModal .form-label {
    color: #ff8f00;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#enquiryModal .btn {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#enquiryModal .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Modal Animation */
#enquiryModal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

#enquiryModal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive Modal */
@media (max-width: 576px) {

    .navbar {
    transition: all 0.3s ease;
    padding: 0.5rem 0px;
    background: #fff;
}



    #enquiryModal .modal-body {
        padding: 1.5rem;
    }
    
    #enquiryModal .modal-footer {
        padding: 1rem 1.5rem;
    }
    
    #enquiryModal .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Sticky Call & WhatsApp Buttons */
.sticky-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    color: white;
    text-decoration: none;
}

.call-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.call-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.sticky-btn .btn-text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse Animation */
.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sticky-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .sticky-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .sticky-btn .btn-text {
        right: 65px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .sticky-contact-buttons {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .sticky-btn .btn-text {
        display: none; /* Hide text on very small screens */
    }
}

/* Accessibility */
.sticky-btn:focus {
    outline: 3px solid rgba(255, 193, 7, 0.5);
    outline-offset: 2px;
}

/* Animation on page load */
.sticky-contact-buttons {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}