@import url('https://fonts.googleapis.com/css2?family=Castoro+Titling&family=Montserrat:ital,wght@0,800;1,500&family=Mulish:ital,wght@0,200;0,700;1,200;1,900&family=Patrick+Hand&family=Poppins:ital,wght@0,200;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500&family=Roboto&family=Ubuntu:wght@300;400;500&family=Work+Sans:wght@300;400&display=swap');

/* General Styles */
:root {
    --primary-color: #ffa500;
    --secondary-color: #333;
    --primary-hover-color: #734c03;
}
.bg-dark {
    --bs-bg-opacity: 1;
    /*background-color: rgb(33 37 41 / 22%) !important;*/
      border-radius:0px;
    padding: 2rem;
    margin-top:0px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

body {
    font-family: "Mulish", sans-serif;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

/*.navbar-brand img {
    height: 180px;
}*/
.navbar-brand img {
    height: 50px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
   
}

.hero-slider {
    height: 100%;
}

.hero .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Category Section */
.category-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Products Slider */
.products-slider {
    padding: 2rem 0;
}

.product-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Services */
.service-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    object-fit: cover;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Videos */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Form */
.contact-info {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    font-size: 18px;
}

.social-links a {
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

#contactForm .form-control {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
}

#contactForm textarea {
    min-height: 120px;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
    transform: translateY(-2px);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Section Headings */
section h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .category-card img {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .service-card {
        margin-bottom: 30px;
    }

    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .category-card,
    .product-card,
    .service-card {
        margin-bottom: 20px;
    }
}

/* Testimonials Section */
.testimonials-slider {
    padding: 20px 0 40px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px 10px;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    color: var(--secondary-color);
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.testimonial-content h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-content span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Enhanced Contact Section */
.contact-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1920&q=80') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

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

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info {
    height: 100%;
    color: white;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Map Section */

.map-section {
    height:353px;
    position: relative;
}

#locationMap {
    height: 100%;
    width: 100%;
}

.custom-heading{
    font-weight: 600;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color); /* Change to a visible color */
    font-size: 30px;
    display: block !important;
    z-index: 10; /* Ensure they are above slides */
}




footer {
    padding: 2rem 0;
    background-color: #212529;
}
.footer-column:not(:first-child) {
    padding-top: 2rem;
}
@media (min-width: 768px) {
    .footer-column:not(:first-child) {
        padding-top: 0rem;
   }
}
.footer-column {
    text-align: center;
}
.footer-column .nav-item .nav-link {
    padding: 0.1rem 0;
}
.footer-column .nav-item span.nav-link {
    color: #6c757d;
}
.footer-column .nav-item span.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.footer-column .nav-item .fas {
    margin-right: 0.5rem;
}
.footer-column ul {
    display: inline-block;
}
@media (min-width: 768px) {
    .footer-column ul {
        text-align: left;
   }
}
ul.social-buttons {
    margin-bottom: 0;
}
ul.social-buttons li a:active, ul.social-buttons li a:focus, ul.social-buttons li a:hover {
    background-color: var(--primary-color);
}
ul.social-buttons li a {
    font-size: 20px;
    line-height: 40px;
    display: block;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    border-radius: 100%;
    outline: 0;
    background-color: #1a1d20;
}
footer .quick-links {
    font-size: 90%;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: none;
}
footer .quick-links A{
    color: #d6d6d6;
}
.copyright {
    color: #fff;
}
.fa-ellipsis-h {
    color: #fff;
    padding: 2rem 0;
}

a.nav-link {
    color: #d6d6d6;
    text-transform: capitalize !important;
}
a.nav-link:hover {
    color: var(--primary-color);
}

.header-btn .btn{
    padding: 0.5rem 1.2rem;
    min-width: 100px;
    width: 100%;
}
.header-btn .btn.btn-outline-light{
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.header-btn .btn.btn-outline-light:hover{
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}
.header-btn .btn.btn-primary:hover{
    transform: unset;
}
div#navbarNav {
    font-size: 22px;
    margin-top: -40px;
}
@media only screen and (max-width:767px) {
    .hero {
        position: relative;
        height: 50vh !important;
    }
        .hero-slider {
        height: 408px;
    }

    .hero-content {
        position: relative;
        color: white;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
        margin-top:80px;
    }
}
