.hero {
    padding: 80px 0;
    background: #007bff;
    color: #fff;
}

.card img {
    max-height: 300px;
    object-fit: cover;
}

.footer {
    background-color: #f8f9fa;
}

/* Global Font Styling */
body {
    font-family: 'Poppins', sans-serif;
}

/* Custom Transparent Navbar with Containers */
.custom-navbar {
    background: transparent; /* Darker transparent background */
    padding: 10px 0; /* Add some padding to make it stand out */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-logo {
    height: 80px;
    margin-right: 20px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
    padding: 0.5rem 1rem; /* Adjust padding as needed */
}

/* Full-Screen Carousel */
.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

.caption-box {
     position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, gold, black);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    width: 60%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in-out;
}

.caption-box h2,
.caption-box p {
    margin: 0;
}

@media (max-width: 768px) {
    .carousel-caption {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        background: rgba(0, 0, 0, 0.7); /* Darker background for readability */
        color: white;
        padding: 10px 15px;
        font-size: 1rem; /* Adjust font size */
        text-align: center;
        border-radius: 8px;
    }

    .carousel-caption h2 {
        font-size: 1.2rem;
    }
}
/* Welcome Section */
.welcome-section {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 80px 0;
    animation: fadeIn 1s ease-in-out;
}

.welcome-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #555;
}

.services-section {
    padding: 50px 0;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 15px;
}

.section-title {
    padding-top: 50px;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
}
.service-info p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-primary {
    background: linear-gradient(to right, #b8860b, #333);
    border: none;
    transition: all 0.3s ease-in-out;
    padding: 12px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
}

.btn-primary:hover {
    background: linear-gradient(to right, #333, #b8860b);
    transform: scale(1.1);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

/* Animation for section title */
    .section-title {
        animation: fadeInUp 1.5s ease-in-out;
    }

    /* Fade-in effect for the title */
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Buttons styling - Hover effect */
    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    /* Larger buttons */
    .btn-lg {
        font-size: 18px;
        padding: 15px;
    }


/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.footer a {
    color: #000;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Additional Font Styling */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Footer Styling */
footer {
    background-color: #343a40;
    color: #ffffff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
}

.footer-logo-img {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
}

.footer-text {
    flex: 2;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-media-icons {
    flex: 1;
    font-size: 1.5rem;
}

.social-media-icons a {
    transition: color 0.3s ease;
}

.social-media-icons a:hover {
    color: #007bff;
}

/* Responsive Design Adjustments */
@media (max-width: 767px) {
    /* Navbar */
    .navbar {
        text-align: center;
    }

    .navbar-nav {
        display: block;
        padding: 0;
    }

    .navbar-nav .nav-item {
        display: block;
        margin: 0.5rem 0;
    }

    /* Footer Content */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-text, .social-media-icons {
        margin-bottom: 20px;
    }

    .social-media-icons {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    /* Carousel Controls */
    .carousel-control-prev-icon, .carousel-control-next-icon {
        background-color: black;
        padding: 8px;
    }

    /* Product Images */
    .product-img {
        height: auto;
    }
}

/* Hero Section */
.hero-section {
    background-image: url('images/hero.JPG'); /* Your background image */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
}

.hero-content p {
    font-size: 1.5rem;
}

/* CEO Section */
.ceo-img {
    width: 100%;
    max-width: 300px; /* Adjust size as needed */
    height: auto;
    border: 5px solid #343a40; /* Optional: border to make the image stand out */
}

#ceo {
    background-color: #f8f9fa;
}

#ceo h2 {
    font-size: 2rem;
    margin-top: 0;
}

#ceo p {
    font-size: 1.125rem;
    color: #333;
}


.embed-responsive {
    margin: 0 auto;
    max-width: 100%;
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .ceo-img {
        max-width: 200px; /* Adjust size for smaller screens */
    }

    #ceo h2 {
        font-size: 1.5rem;
    }

    #ceo p {
        font-size: 1rem;
    }

    #video h2 {
        font-size: 1.5rem;
    }
}

.ceo-section {
            background-color: #f7f7f7;
            padding: 50px 0;
        }

        .ceo-section .ceo-img {
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .ceo-section .ceo-img:hover {
            transform: scale(1.05);
        }

        .ceo-details {
            color: #333;
        }

        .ceo-details h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #222;
        }

        .ceo-details p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        .ceo-name {
            color: #e63946;
        }

        .highlighted-text {
            font-weight: 500;
            color: #1d3557;
        }

        /* Marquee Container */
.marquee-container {
    overflow: hidden;
    width: 100%;
    background-color: #f8f9fa; /* Optional: Background color */
    padding: 20px 0; /* Optional: Padding for top and bottom */
}

/* Marquee Wrapper */
.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Marquee Content */
.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
}

/* Marquee Item */
.marquee-item {
    flex: 0 0 auto;
    margin-right: 20px; /* Space between items */
}

.marquee-item img {
    max-height: 200px; /* Adjust based on your design */
    object-fit: cover;
    border-radius: 10px; /* Optional: Rounding corners */
}

/* Keyframes for Scrolling Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Request a Quote Section */
.request-quote-section {
    background: linear-gradient(135deg, #222, gold);
    padding: 60px 0;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin: 50px auto;
}

.quote-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.quote-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Call Button */
.call-btn {
    background: #27ae60;
    color: white;
}
.call-btn:hover {
    background: #218c54;
    transform: scale(1.05);
}

/* Email Button */
.email-btn {
    background: #e74c3c;
    color: white;
}
.email-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25d366;
    color: white;
}
.whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.05);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .quote-options {
        flex-direction: column;
        gap: 10px;
    }
}



