/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Proxima Nova', sans-serif; /* Use Proxima Nova font */
}

/* Navbar Styling */
.navbar {
    background-color: #ffffff; /* Green */
    padding: 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px; /* Add border-radius for circular effect */
    width: 80%; /* Reduce the width of the navbar */
    margin: 20px auto 0 auto; /* Add top margin and center the navbar horizontally */
}

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

.navbar-nav .nav-link {
    color: #008000;
    font-weight: bold;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #008000; /* Light contrast */
}

/* WhatsApp Button */
.btn-whatsapp {
    display: flex;
    align-items: center;
    background-color: #dc3545;
    color: white; /* Default text color */
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent; /* Initially no border */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out;
}

/* WhatsApp Icon */
.btn-whatsapp i {
    font-size: 20px;
    margin-right: 8px;
    transition: color 0.3s ease-in-out;
}

/* Target Only the "Chat Now" Text */
.btn-whatsapp span {
    transition: color 0.3s ease-in-out;
}

/* Border Animation on Hover */
.btn-whatsapp:hover {
    background-color: #008000;  /* Button turns white */
    color: #008000;  /* Button text turns green */
    transform: scale(1.05);  /* Slight enlargement */
    border: 2px solid #008000; /* Border appears */
}

/* Change ONLY Text Color on Hover */
.btn-whatsapp:hover span {
    color: #008000; /* "Chat Now" text turns green */
}

/* Keep Icon Green on Hover */
.btn-whatsapp:hover i {
    color: #008000;
}

/* Border Animation Effect */
.btn-whatsapp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 2px solid #008000;
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* Expand Border Animation */
.btn-whatsapp:hover::before {
    opacity: 1;
    transform: scale(1);
}
.btn-whatsapp {
    color: #008000 !important;
}
/* Circular WhatsApp Button */
.btn-whatsapp-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00A550;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin-top: 20px;
}

.btn-whatsapp-circle:hover {
    background-color: #007a3d;
    transform: scale(1.1);
}

.btn-whatsapp-circle i {
    transition: color 0.3s ease-in-out;
    color: yellow;
}

.btn-whatsapp-circle:hover i {
    color: #008000;
}

/* Carousel Styling */
.carousel-item {
    height: 50vh; /* Full viewport height */
    min-height: 300px;
    position: relative;
    background: no-repeat center center scroll;
    background-size: cover;
    border-bottom-left-radius: 50px; /* Curve the bottom left */
    border-bottom-right-radius: 50px; /* Curve the bottom right */
    overflow: hidden; /* Ensure the content stays within the curved area */
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire area */
}

/* Center carousel caption vertically */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(20%, -40%);
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

/* Theme Colors */
:root {
    --theme-green: #008000;
    --theme-grey: #4a4a4a;
    --theme-light-grey: #f5f5f5;
}

.btn-primary {
    background-color: var(--theme-green);
    border-color: var(--theme-green);
}

.btn-primary:hover {
    background-color: #006400;
    border-color: #006400;
}

.btn-dark {
    background-color: var(--theme-grey);
    border-color: var(--theme-grey);
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
}

.services-categories {
    background-color: var(--theme-light-grey);
    padding: 60px 0;
}

.services-categories h2 {
    color: var(--theme-green);
    font-weight: bold;
}

.services-categories p {
    color: var(--theme-grey);
}

/* Ensure responsiveness */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 15px;
        text-align: center; /* Center-align text for mobile */
    }

    .carousel-caption h1 {
        font-size: 20px;
    }

    .carousel-caption p {
        font-size: 14px;
    }
}
    .btn-whatsapp-circle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .hero-title {
        font-size: 3rem;
        margin-bottom: 10px; /* Adjust the margin as needed */
    }
    .decorative-animation lottie-player {
        width: 100px;
        height: 100px;
        display: block;
        margin: 0 auto 20px auto; /* Center the Lottie animation and add margin below */
    }
    .hero-title span {
        display: block;
        margin-top: 20px; /* Add margin above the text */
    }
    .cta-section {
        margin-top: 0; /* Remove top margin */
        padding-top: 0; /* Remove top padding */
    }
    .btn-whatsapp {
        font-size: 16px;
        padding: 12px 20px;
        margin-top: 10px; /* Add margin above the button */
    }
    .btn-whatsapp i {
        font-size: 20px;
    }
    /* Hide service details and left text section on mobile */
    .services-text {
        display: none;
    }
    .service-details {
        display: none;
    }
    .services-grid {
        width: 100%;
    }

/* Show service details on mobile when active */
@media (max-width: 768px) {
    .service-details.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
    }

    .service-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-info img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .service-content {
        width: 100%;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Fullscreen effect */
    background-color: white;
    text-align: center;
    padding: 50px 20px;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1.2;
    color: black;
    text-transform: uppercase;
    margin-bottom: 10px; /* Adjust the margin as needed */
}

/* Animated Doodle */
.decorative-animation lottie-player {
    display: inline-block;
    margin-left: 10px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.decorative-animation lottie-player:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .decorative-animation lottie-player {
        width: 100px;
        height: 100px;
    }
}

/* Adjusting the spacing */
.cta-section {
    margin-top: 0; /* Remove top margin */
    padding-top: 0; /* Remove top padding */
    text-align: center;
    margin-bottom: 40px; /* Add bottom margin to create space */
}

/* WhatsApp CTA Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00A550;
    color: white;
    font-weight: bold;
    padding: 14px 24px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for better visibility */
}

/* WhatsApp Icon */
.btn-whatsapp i {
    font-size: 22px;
    margin-right: 8px;
}

/* Hover Effect */
.btn-whatsapp:hover {
    background-color: #ffffff; /* Darker Green */
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        margin-top: 5px;
    }
    .btn-whatsapp {
        font-size: 16px;
        padding: 12px 20px;
    }
    .btn-whatsapp i {
        font-size: 20px;
    }
}

/* Keyframes for text animation */
@keyframes text-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-word {
    background: linear-gradient(90deg, #008000, yellow);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-gradient 3s infinite alternate;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 20px;
    background-color: #008000; /* Light grey background */
    border-top-left-radius: 50px; /* Curve the top left */
    border-top-right-radius: 50px; /* Curve the top right */
    border-bottom-left-radius: 50px; /* Curve the bottom left */
    border-bottom-right-radius: 50px; /* Curve the bottom right */
    margin-top: 40px; /* Add top margin to create space */
    text-align: center; /* Center the content */
}

/* Why Choose Us Title */
.why-choose-us .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff; /* Primary color */
}

/* Feature Box Container */
.feature-box-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Feature Box */
.feature-box {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 300px; /* Set a fixed width for the feature boxes */
    text-align: center; /* Center the text inside the feature box */
}

/* Feature Box Icons */
.feature-box i {
    font-size: 40px;
    color: #008000;
    margin-bottom: 15px;
}

/* Feature Box Hover Effect */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Feature Box Headings */
.feature-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

/* Feature Box Paragraphs */
.feature-box p {
    font-size: 1rem;
    color: #333;
}

/* Responsive Adjustments for Why Choose Us */
@media (max-width: 768px) {
    .feature-box {
        width: 100%; /* Make feature boxes full width on mobile */
        margin-bottom: 20px;
    }
}

/* Our Services Section */
.our-services {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center; /* Center the content */
}

/* Our Services Title */
.our-services .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #008000; /* Primary color */
}

/* Two-Column Layout for Our Services */
.services-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

/* Left Text Section for Our Services */
.services-text {
    flex: 1;
    max-width: 400px;
    text-align: left;
    padding: 20px;
    opacity: 1; /* Ensure text is always visible */
    display: block !important; /* Force display */
}

.services-text h1 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-explore {
    display: inline-block;
    background-color: #00A550;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: white;
    color: #00A550;
    box-shadow: 0 4px 15px rgba(0, 165, 80, 0.3);
    transform: translateY(-2px);
}

/* Services Grid */
.services-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 500px; /* Reduced width */
    margin: 5 auto; /* Center the grid */
}

/* Service Boxes */
.service-box {
    display: flex;
    flex-direction: column; /* Arrange items in a column */
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid #00A550;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    height: 120px; /* Adjust height as needed */
    text-align: center; /* Center text */
}

.service-box i {
    font-size: 30px; /* Adjust icon size as needed */
    margin-bottom: 10px; /* Add space between icon and text */
    color: #00A550;
}

.service-box span {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00A550;
}

/* Active State */
.service-box.active {
    background-color: #00A550;
    color: white;
}

.service-box.active i,
.service-box.active span {
    color: white;
}

/* Hover Effect with Glow */
.service-box:hover {
    box-shadow: 0 0 15px rgba(0, 128, 0, 0.7); /* Green glow effect */
    transform: translateY(-5px);
}

/* Service Details Section */
.service-details {
    display: none;
    background: white;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    flex: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    max-width: 750px;
    height: 100%;
    animation: slideIn 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Service Info */
.service-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-info img {
    width: 250px;
    border-radius: 6px;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #00A550;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn-whatsapp:hover {
    background-color: #ffffff;
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments for Our Services */
@media (max-width: 768px) {
    .services-layout {
        flex-direction: column-reverse;
        align-items: center;
    }

    .services-text {
        display: none;
    }

    .services-grid {
        width: 100%;
    }
}

/* Portfolio Section */
.our-work {
    padding: 60px 20px;
    background-color: #ffffff; /* White background */
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #008000; /* Primary Green */
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 300px; /* Set a fixed width for the portfolio items */
    height: 200px; /* Set a fixed height for the portfolio items */
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the area without stretching */
}

.portfolio-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 10px;
    transition: background 0.3s ease-in-out;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Page Transition Effect */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* Reveal Effect */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Images */
.portfolio-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
}

/* Hover Effect */
.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

/* Overlay on Hover */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,128,0,0.8);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Overlay on Hover */
.portfolio-item:hover .overlay {
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.close:hover {
    color: #00A550;
}

/* Responsive Adjustments for Mobile View */
@media (max-width: 768px) {
    .portfolio-grid {
        display: none; /* Hide the grid on mobile */
    }

    .portfolio-carousel {
        display: block; /* Show the carousel on mobile */
    }
}

@media (min-width: 769px) {
    .portfolio-carousel {
        display: none; /* Hide the carousel on desktop */
    }
}

/* WhatsApp Inquiry Section */
.whatsapp-inquiry {
    background-color: #008000; /* Primary Green */
    padding: 50px 20px;
    text-align: center;
    color: white;
}

/* Inquiry Title */
.inquiry-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: white;
    font-weight: bold;
    padding: 14px 24px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Icon */
.btn-whatsapp i {
    font-size: 24px;
    margin-right: 8px;
}

/* Hover Effect */
.btn-whatsapp:hover {
    background-color: #ffffff; /* Darker Green */
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .inquiry-title {
        font-size: 1.8rem;
    }
    .btn-whatsapp {
        font-size: 16px;    
        padding: 12px 20px;
    }
    .btn-whatsapp i {
        font-size: 20px;
    }
}

/* Footer Section */
.site-footer {
    background-color: #008000; /* Primary Green */
    color: white;
    padding: 50px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* Reveal Animation */
.site-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Footer Column Headings */
.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Contact Information */
.footer-column p {
    font-size: 1rem;
    margin: 5px 0;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #00ff88; /* Lighter green */
}

/* Social Media Icons */
.social-icons a {
    display: inline-block;
    font-size: 24px;
    color: white;
    margin: 0 10px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: #00ff88;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00A550;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop:hover {
    background: #008000;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Show button when scrolling */
#backToTop.show {
    display: flex;
    opacity: 1;
}

/* Icon positioning */
#backToTop i {
    line-height: 1;
}

/* Service Image Container Styles */
.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-image-container:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,128,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image-container:hover::after {
    opacity: 1;
}

/* Hero Section */
.about-hero {
    background: url('../images/Untitled design (1).png') no-repeat center center/cover;
    height: 100vh; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    border-bottom-left-radius: 50px; /* Add curve to bottom left */
    border-bottom-right-radius: 50px; /* Add curve to bottom right */
    overflow: hidden; /* Ensure content stays within curved borders */
}

/* Dark Overlay */
/* .about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
    /* border-bottom-left-radius: 50px; /* Match parent's border radius */
    /* border-bottom-right-radius: 50px; Match parent's border radius */
*/ */

/* Hero Content */
.about-hero .container {
    position: relative;
    z-index: 2;
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Hero Subtext */
.hero-subtext {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}


/* Who We Are Section */
.who-we-are {
    padding: 60px 20px;
    background-color: white; /* Light grey background */
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #008000; /* Primary Green */
}

/* Company Profile Text */
.company-profile {
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto;
    margin-bottom: 40px;
    color: #333;
}

/* Info Box */
.info-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Icons */
.info-box i {
    font-size: 40px;
    color: #00A550;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

/* Info Box Headings */
.info-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

/* Info Box Paragraphs */
.info-box p {
    font-size: 1rem;
    color: #333;
    transition: color 0.3s ease-in-out;
}

/* Info Box Hover Effect */
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #00A550;
}

.info-box:hover i,
.info-box:hover h3,
.info-box:hover p {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-box {
        margin-bottom: 20px;
    }
}


/* About Us Highlight Section */
.about-highlight {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: white;
    border-radius: 50px; /* Add curves to both top and bottom */
    margin: 50px 0; /* Add some spacing from other sections */
}

/* Video Background - match parent's border radius */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 50px; /* Match parent's border radius */
}

/* Dark Overlay - match parent's border radius */
.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    border-radius: 50px; /* Match parent's border radius */
}

/* Container adjustment for curved edges */
.about-highlight .container {
    position: relative;
    z-index: 2;
    padding: 0 30px; /* Add some padding to prevent content touching edges */
}

/* Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: #00A550;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}

/* Highlight Text */
.highlight-text {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-top: 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Testimonial Card */
.testimonial-card {
    background: #00A550;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.client-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.client-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonial Navigation Dots */
.testimonial-nav {
    text-align: center;
    margin-top: 15px;
}

.testimonial-nav .dot {
    height: 8px;
    width: 8px;
    background: white;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.testimonial-nav .dot.active {
    opacity: 1;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    color: white;
}

/* Circular Progress Bar */
.progress-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

/* Progress Percentage */
.percentage {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

/* Stats Text */
.stat-text {
    margin-top: 15px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-highlight {
        height: auto;
        padding: 50px 20px;
    }

    .highlight-text {
        font-size: 2rem;
    }

    .testimonial-card {
        width: 100%;
    }

    .stats-section {
        flex-direction: column;
    }

    .progress-circle {
        margin: 20px auto;
    }
}

/* Our Clients Scrolling Section */
.our-clients {
    background: #f8f8f8; /* Light grey background */
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

/* Wrapper to enable continuous looping */
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

/* Scrolling Effect */
.marquee {
    display: flex;
    gap: 40px;
    font-size: 4rem;
    font-weight: bold;
    animation: marqueeScroll 10s linear infinite;
    min-width: 200%; /* Ensure the full duplicate content is visible */
}

/* Bold Words */
.marquee span {
    color: #000; /* Black for emphasis */
}

/* Outline Text Effect */
.marquee .outline {
    color: transparent;
    -webkit-text-stroke: 2px #008000; /* Green outline */
}

/* Smooth Continuous Scrolling Animation */
@keyframes marqueeScroll {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .marquee {
        font-size: 2.5rem;
    }
}

/* Client Logos Section */
.client-logos {
    background: #fff;
    padding: 50px 20px;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #008000; /* Primary Green */
}

/* Logos Grid */
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Standardized Logo Styling */
.logos-grid img {
    width: 150px;  /* Ensuring equal size */
    height: auto;
    max-height: 80px;
    object-fit: contain;  /* Ensures logos maintain aspect ratio */
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Hover Effect */
.logos-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logos-grid img {
        width: 120px;
        max-height: 60px;
    }
}


/* Contact CTA Section */
.contact-cta {
    background: #008000; /* Primary Green */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* CTA Text */
.cta-text {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* CTA Subtext */
.cta-subtext {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}


/* Services Intro Section */
.services-intro {
    padding: 120px 0;
    background-color: #fff;
    text-align: center;
}

/* Main Heading */
.services-heading {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
}

/* Lottie Animation Container */
#lottie-animation {
    display: inline-block;
    width: 180px;
    height: 180px;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-heading {
        font-size: 4rem;
    }
    #lottie-animation {
        width: 120px;
        height: 120px;
    }
}


/* Our Services Section */
.our-services {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Service Category Cards */
.service-card {
    margin-bottom: 30px;
    width: 100%; /* Take full width */
}

.card {
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px; /* Add space between cards */
}

/* Container for service cards */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

/* Category Colors - keep them as horizontal bars */
.large-format { 
    border-left: 6px solid #9c27b0;
    width: 100%;
}
.digital-printing { 
    border-left: 6px solid #3f51b5;
    width: 100%;
}
.offset-printing { 
    border-left: 6px solid #ff5722;
    width: 100%;
}

/* Mini Cards Grid */
.mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.mini-card {
    background: #00A550;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem; /* Increased font size */
    font-weight: bold; /* Added bold text */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    transition: all 0.1s ease;
    border: 2px solid #00A550;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px  rgba(0, 0, 0, 0.3);
}

.mini-card a {
    color: inherit;
    margin-top: 10px;
    font-size: 1.2rem;
    transition: all 0.1s ease;
    text-decoration: none;
}

/* WhatsApp Icon in Mini Card */
.mini-card i {
    font-size: 24px;
    transition: all 0.1s ease;
    margin-top: 10px; /* Add space between text and icon */
}

/* Hover Effects */
.mini-card:hover {
    background: white;
    color: #00A550;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 165, 80, 0.4); /* Enhanced shadow on hover */
    border: 2px solid #00A550;
}

/* Active State */
.mini-card:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 165, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mini-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-card {
        min-height: 100px;
        padding: 15px 10px;
    }

    .mini-card i {
        font-size: 20px;
    }
}
/* Responsive Design */
@media (max-width: 992px) {
    .services-container {
        gap: 20px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

/* Services Container */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

/* Service Category Cards */
.card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    width: 100%;
}

/* Category Colors - Consistent left borders */
.large-format { 
    border-left: 6px solid #9c27b0;
}

.digital-printing { 
    border-left: 6px solid #3f51b5;
}

.offset-printing { 
    border-left: 6px solid #ff5722;
}

/* Card Headers */
.card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Hover Effects for Main Cards */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        gap: 20px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 1.5rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    text-align: center;
    padding: 50px;
}

/* Filter Buttons */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    background-color: #008000;
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #005f00;
}

/* Image Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusts to screen */
    gap: 30px; /* Ensures proper spacing */
    padding: 40px 10%;
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

/* Smooth Zoom-in Effect */
.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Center Caption */
#caption {
    text-align: center;
    color: white;
    margin-top: 15px;
    font-size: 18px;
}

/* 🚀 2x2 Grid for Mobile */
@media (max-width: 768px) {
    .portfolio-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 10px 8px 30px 8px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .portfolio-item {
        aspect-ratio: 1/1;
        width: 100%;
        height: auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.13);
        background: #fff;
        margin: 0;
        display: flex;
        align-items: stretch;
        border: 2px solid transparent;
        transition: border 0.2s;
    }
    .portfolio-item:focus-within,
    .portfolio-item:active {
        border: 2px solid #008000;
    }
    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 0;
        transition: transform 0.2s;
    }
    .portfolio-item:hover img {
        transform: scale(1.04);
    }
    .filter-btn {
        padding: 7px 13px;
        font-size: 0.95rem;
        margin: 0 3px 8px;
        border-radius: 30px;
        border: 2px solid #008000;
        background: #fff;
        color: #008000;
        transition: background 0.2s, color 0.2s;
    }
    .filter-btn.active, .filter-btn:hover {
        background: #008000;
        color: #fff;
    }
}

/* Portfolio Gallery Grid - Mobile View */
@media (max-width: 768px) {
    .portfolio-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 10px;
    }

    .portfolio-item {
        aspect-ratio: 1;
        width: 100%;
        /* Remove fixed height, let aspect-ratio and grid control sizing */
        border-radius: 12px; /* Match mini-card border-radius */
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Match mini-card shadow */
    }

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

    /* Filter buttons adjustment */
    .portfolio-filters {
        overflow-x: auto;
        white-space: nowrap;
        padding: 0 10px 10px;
        margin-bottom: 15px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* For very small screens */
/* For very small screens, let aspect-ratio and grid control portfolio item size */
@media (max-width: 375px) {
    /* No specific overrides needed at this breakpoint */
}


/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Details Section */
.contact-details {
    background: #ffffff;
    padding: 60px 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Contact Info Box */
.contact-box {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #008000;
}

.contact-box p,
.contact-box ul {
    font-size: 1rem;
    margin: 5px 0;
}

.contact-box a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.contact-box a:hover {
    color: #008000;
}

.contact-box ul {
    list-style: none;
    padding: 0;
}

.contact-box ul li {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.contact-box ul li span {
    font-weight: bold;
    color: #008000;
}

/* Google Map */
.map-container {
    flex: auto;
    min-width: 300px;
    height: 410px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* WhatsApp QR Code */
.whatsapp-qr {
    text-align: center;
    padding: 40px 0;
}

.whatsapp-qr img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
}


/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slide3.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    margin-bottom: 40px;
    color: white;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}




/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slide3.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    margin-bottom: 40px;
    color: white;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}
