.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    position: relative;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.company-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.navbar-brand-container {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    max-width: calc(100% - 70px);
}

.navbar-brand {
    margin-bottom: 0;
    padding-bottom: 0;
}

.tagline {
    color: #adb5bd;
    font-size: 0.8rem;
    margin-top: -5px;
}

.marquee-container {
    background: #333;
    padding: 0;
    margin-top: 56px;
    height: 40px;
    display: flex;
    align-items: center;
}

.custom-marquee {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 40px;
    height: 100%;
}

.navbar-logo {
    width: auto;
    height: 50px;
    max-height: 50px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
        max-height: 40px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 35px;
        max-height: 35px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .tagline {
        font-size: 0.6rem;
    }
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1rem;
}

.about-image {
    padding: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.quote-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #0d6efd;
    border: 2px solid #0d6efd;
}

.quote-btn:hover {
    background-color: transparent;
    color: #0d6efd;
    border-color: #0d6efd;
}

@media (max-width: 991px) {
    .quote-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* Quote Form Styles */
#quoteForm {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#quoteForm label {
    font-weight: 500;
    color: #333;
}

#quoteForm .form-control,
#quoteForm .form-select {
    border: 1px solid #ddd;
    padding: 0.75rem;
}

#quoteForm .form-control:focus,
#quoteForm .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
}

#quoteForm .btn-lg {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 10px;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    border-radius: 10px 10px 0 0;
}

.modal-title {
    color: #333;
    font-weight: 600;
}

#quoteModal .modal-body {
    padding: 1.5rem;
}

/* Make modal scrollable on mobile */
@media (max-width: 768px) {
    .modal-dialog {
        max-height: 90vh;
        margin: 1rem;
    }
    
    .modal-body {
        max-height: calc(90vh - 120px);
        overflow-y: auto;
    }
}

/* Client Logo Slider */
.logo-slider {
    background: #f8f9fa;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 20px 0;
}

.logo-slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: calc(250px * 12);
    gap: 40px;
}

.logo-slide {
    width: 250px;
    height: 150px; /* Add fixed height */
    padding: 20px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-slide img {
    max-width: 100%;
    max-height: 100px; /* Control image height */
    object-fit: contain;
   
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6 - 40px * 6)); }
}

/* Gradient edges for smooth transition */
.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, rgba(248,249,250,0) 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, rgba(248,249,250,0) 100%);
}

@media (max-width: 768px) {
    .logo-slide {
        width: 200px;
        height: 120px;
        padding: 15px;
        margin: 5px;
    }
    
    .logo-slide img {
        max-height: 80px;
    }
    
    .logo-slider::before,
    .logo-slider::after {
        width: 50px;
    }
}

/* 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: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Product Gallery Styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.card-img-wrapper::before {
    content: '';
    display: block;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

.card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: white;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.specs-list {
    font-size: 0.9rem;
}

.specs-list ul {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.filter-controls {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-controls select {
    border: 1px solid #ddd;
    padding: 10px;
}

.filter-controls select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
}

/* Animation for filtering */
.product-item {
    transition: all 0.4s ease;
}

.product-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    display: none;
}

/* Product Detail Styles */
.product-detail-content {
    padding: 1rem;
}

.product-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.product-benefits {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.product-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0d6efd;
}

.brochure-download {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.brochure-download:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
}

.brochure-download i {
    font-size: 1.5rem;
    color: #0d6efd;
}

/* Service Card Styles */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #0d6efd;
    color: white;
    transform: rotateY(360deg);
}

/* Testimonials Section Styles */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: #0d6efd;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Trusted Brands Styles */
.trusted-brands {
    padding-top: 3rem;
    border-top: 1px solid #dee2e6;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brand-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.05);
}

.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.brand-item span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }

    .brands-grid {
        gap: 2rem;
    }

    .brand-logo {
        width: 80px;
        height: 80px;
    }
}

/* Footer Mega Menu Styles */
.footer-mega {
    padding-top: 4rem;
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
}

.footer-company .footer-logo {
    height: 40px;
    width: auto;
}

.footer-mega .footer-logo {
    height: 40px;
    width: auto;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #0d6efd;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #adb5bd;
}

.footer-contact i {
    color: #0d6efd;
    font-size: 1.2rem;
    width: 20px;
}

.footer-divider {
    margin: 2rem 0;
    border-color: rgba(255,255,255,0.1);
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom .text-end {
        text-align: center !important;
    }
}

/* About Page Styles */
.about-hero {
    padding-top: 120px;
    background: linear-gradient(to right, #f8f9fa 50%, #fff 50%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #0d6efd;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-box i {
    font-size: 2rem;
    color: #0d6efd;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.team-info h4 {
    margin: 0;
    color: #333;
}

.team-info p {
    color: #666;
    margin: 5px 0 0;
}

.value-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
}
