

 /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1268px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            background: #9f1515;
            color: white;
            padding: 8px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background: #3a5aef;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 90, 239, 0.3);
        }
        
        section {
            padding: 80px 0;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            color: #222;
            position: relative;
        }
        
        h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #9f1515;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        /* Header Styles */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 75px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: bold;
            color: #9f1515;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            transition: all 0.5s ease;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.1rem;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #9f1515;
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: #9f1515;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #9f1515;
        }
        
        /* Hero Banner */
       .hero {
    background-image: 
       
        url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-container {
    display: flex;
    justify-content: flex-end; /* Align form to right */
    width: 100%;
}
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        /* About Section */
        .about {
			
            background: #f9f9f9;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
			text-align:justify;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        
        .about-image:hover {
            transform: scale(1.02);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Products Section */
        .products {
            background: white;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            background: white;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: auto;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 350px;
			;
           
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-info h3 {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #222;
        }
        
        .product-info p {
            margin-bottom: 15px;
            color: #666;
        }
        
        .price {
            font-weight: bold;
            color: #9f1515;
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: block;
        }
        
        /* Testimonials Section */
       .testimonials {
    padding: 60px 0;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
}

.testimonial-card {
    min-width: 100%;
    scroll-snap-align: start;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.play-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-30%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 1);
}

/* For slider controls - customize as needed */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: #333;
}

.arrow {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 15px;
}
        /* Footer */
        footer {
            background: #222;
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: #9f1515;
            bottom: 0;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1rem;
        }
        
        .footer-column a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #9f1515;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 0.9rem;
        }
		 
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
                max-width: 600px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 40px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .testimonial-card {
                padding: 30px 20px;
            }
        }

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile styles */
}
/* Testimonial Slider Styles */
.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #9f1515;
    transform: scale(1.2);
}

.slider-arrows {
    display: flex;
    gap: 15px;
}

.arrow {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #9f1515;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    background: #9f1515;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .slider-arrows {
        width: 100%;
        justify-content: center;
    }
}
/* Add these to your existing CSS */

.hero-content {
    display: none;
}
/* Hero Contact Form */
.hero-contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin-left: auto;
    margin-right: -50px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #9f1515;
}

.hero-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #9f1515;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #9f1515;
    font-size: 18px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.8);
}

.form-group input:focus {
    border-color: #9f1515;
    box-shadow: 0 0 0 3px rgba(159, 21, 21, 0.1);
    outline: none;
}

#heroContactForm .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9f1515;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn i {
    margin-left: 10px;
    transition: all 0.3s;
}

.btn:hover {
    background: #7a1010;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn:hover i {
    transform: translateX(5px);
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.form-footer span {
    color: #9f1515;
    font-weight: 600;
}

/* Enhanced WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: auto;
    height: 60px;
    border-radius: 30px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float i {
    margin-right: 10px;
}

.whatsapp-float span {
    font-size: 16px;
    font-weight: 500;
    display: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #128C7E;
    width: auto;
    padding: 0 25px;
}

.whatsapp-float:hover span {
    display: inline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-contact-form {
        margin: 0 auto;
        max-width: 90%;
        padding: 30px 20px;
    }
    
    .hero {
        background-attachment: scroll;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-float span {
        display: none;
    }
}


.hero-contact-form h3 {
    color: #9f1515;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-modal:hover {
    color: #333;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Products Grid Spacing */
.products-grid-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Horizontal Tabs Styles */
.product-tabs {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.tab-header {
    background: #f9f9f9;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tab-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover {
    color: #fff !important;
    background: #cdb332
}

.tab-btn.active {
    color: #fff;
    border-bottom-color: #9f1515;
    background: #cdb332;
}

.tab-content {
    background: white;
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
    gap: 20px;
    padding: 10px;
}

.product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 350px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .tab-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    
    .tab-buttons::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /*.product-grid {*/
    /*    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));*/
    /*    gap: 15px;*/
    /*}*/
    
    .product-card img {
        height: 316px;
    }
    
    .tab-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    /*.product-grid {*/
    /*    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));*/
    /*}*/
    
    .product-card img {
        height: 316px;
    }
}

.floating-contact-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
   
}

.contact-trigger {
	top:-260px;
    background: #9f1515;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: right center;
    position: relative;
    right: 0px;
    white-space: nowrap;
}

.contact-trigger:hover {
    background: #7a1010;
    transform: rotate(-90deg) translateX(50%) scale(1.05);
}

.contact-trigger i {
    font-size: 18px;
    transform: rotate(90deg);
}

.contact-trigger span {
    font-weight: 600;
    font-size: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-contact-btn {
        right: 15px;
        bottom: 20px;
    }
    
    .contact-trigger {
        padding: 12px 15px;
      
    }
}

.honnaras-red-section {
            background-color: #f8f8f8;
            padding: 20px 0;
            margin: 30px 0;
            font-family: Arial, sans-serif;
        }
        
        .honnaras-red-section .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .honnaras-header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .honnaras-logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .honnaras-subtitle {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }
        
        .honnaras-divider {
            border-top: 1px solid #e0e0e0;
            margin: 20px 0;
        }
        
        .honnaras-red-content {
            background-color: #fff;
            border-radius: 4px;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .honnaras-red-item {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .honnaras-red-item:before {
            content: "•";
            color: #d32f2f;
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -2px;
        }
        
        .honnaras-red-item strong {
            color: #d32f2f;
            font-weight: bold;
        }
        
        .honnaras-disclaimer {
            font-size: 12px;
            color: #666;
            margin-top: 15px;
            line-height: 1.4;
        }
        
        .honnaras-disclaimer a {
            color: #d32f2f;
            text-decoration: none;
            font-weight: bold;
        }
        
        .honnaras-selected-text {
            background-color: #f0f0f0;
            padding: 10px;
            border-left: 3px solid #d32f2f;
            margin: 15px 0;
            font-size: 14px;
        }
        
        .play-button i.fab.fa-instagram {
    color: #E1306C; /* Instagram brand color */
    font-size: 85px;
}
.showinsta{
    background:none !important;
}
        .instagram-video-container {
   
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height:450px !important
}
        
        