@font-face {
    font-family: 'MontserratBold'; 
    src: url('../fonts/Montserrat-SemiBold.woff'); 
}
@font-face {
    font-family: 'MontserratRegular'; 
    src: url('../fonts/Montserrat-Regular.woff'); 
}
@font-face {
    font-family: 'MontserratThin'; 
    src: url('../fonts/Montserrat-Thin.woff'); 
}
/* General Styles */
html {
    scroll-behavior: smooth;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'MontserratRegular';
    font-weight: normal;
    background-color: #FFF;
    color: #000;
}
.Boldfont {
    font-family: 'MontserratBold'; 
    font-weight: bold;
}
/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 0 15px;
}

.nav-link {
    padding: 35px 0 !important;
}

.mega-menu {
    padding: 1.5rem 0;
    animation: fadeIn 0.3s ease;
    left: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.dropdown-item {
    padding: 8px 0;
    color: #666;
}

.dropdown-item:hover {
    background: transparent;
    color: #000;
}

/* Handle hover effect */
.nav-item.dropdown:hover .mega-menu {
    display: block;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5em;
}

/* Make mega menu full width but contained */
.position-static {
    position: static !important;
}

.mega-menu .container {
    padding: 20px;
}
#stats {
    background: linear-gradient(45deg, #ed8034, #feb123);
}
/* Carousel Styles */
.carousel-item img {
    object-fit: cover;
    height: 600px;
}
.videolink {
    font-size: 60px;
    left: 45%;
    top: 35%;
    color: white;
    text-decoration: none;
}
.videolink:hover {
    transform: scale(1.1);
}
/* Gallery Styles */
#gallery {
    padding: 80px 0;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.masonry-column {
    padding: 0 1px;
  }
  
  .masonry-grid > div .thumbnail {
    margin: 5px 1px;
  }

/* Contact Form Styles */
#contactForm {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer a {
    color: #fff;
}

footer a:hover {
    color: #ccc;
}

/* Fix Location Section Overlap */
#location {
    padding: 80px 0 0 0;
    background: #fff;
    position: relative;
    clear: both;
}

#map {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
} 
footer::after {
    content: '';
    height: 5px;
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #ed8034 0%, #ed8034 33%, #feb123 33%, #feb123 66%, #2184cd 66%, #2184cd 100%);
    width: 100%;
    margin-top: 20px;
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    background: url('../images/contact-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.contact-info {
    padding: 30px;
    height: 100%;
}

.info-box {
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 24px;
    color: #feb123;
    margin-bottom: 15px;
}

.info-box h5 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-box p, .info-box a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-decoration: none;
}

.info-box a:hover {
    color: #feb123;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    color: #333;
}

.contact-form .form-control {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 15px 0;
    background: transparent;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #feb123;
}

.contact-form .btn-primary {
    background: #feb123;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #ed8034;
    transform: translateY(-2px);
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* Brand Section Styles */
#brands {
    background: #fff;
    overflow: hidden;
}

.brand-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.brand-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 10); /* Adjust based on number of brands */
}

.brand-item {
    flex: 0 0 200px;
    padding: 0 20px;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.1);
}

.brand-item img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5)); /* Half of total width */
    }
}

/* Pause animation on hover */
.brand-carousel:hover .brand-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-item {
        flex: 0 0 150px;
    }
    .brand-track {
        width: calc(150px * 10);
    }
    @keyframes scroll {
        100% {
            transform: translateX(calc(-150px * 5));
        }
    }
}

/* Carousel Caption Styles */
.carousel-item {
    position: relative;
}

.slide-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.slide-caption h2 {
    font-family: 'MontserratBold';
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-family: 'MontserratRegular';
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-caption .btn-primary {
    background: #feb123;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.slide-caption .btn-primary:hover {
    background: #ed8034;
    transform: translateY(-2px);
}

/* Animation Delay for Carousel Elements */
.carousel-item.active .animate__fadeInDown {
    animation-delay: 0.5s;
}

.carousel-item.active .animate__fadeInUp {
    animation-delay: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slide-caption {
        padding: 1rem;
    }
    
    .slide-caption h2 {
        font-size: 1.8rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .slide-caption .btn-primary {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Product Menu Styles */
.product-grid {
    display: grid;
    gap: 15px;
}

.product-item {
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    display: block;
}
.product-img {
    height: 135px;
    vertical-align: bottom;
}
.product-item:hover {
    transform: translateY(-5px);
    color: #333;
}

.product-item p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.featured-product {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    text-align: center;
}

.featured-overlay h6 {
    color: #fff;
    margin: 0;
    font-family: 'MontserratBold';
}

.featured-overlay .btn-primary {
    background: #feb123;
    border: none;
    transition: all 0.3s ease;
}

.featured-overlay .btn-primary:hover {
    background: #ed8034;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-product img {
        height: 200px;
    }
}