/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Desktop Header Styling */
.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    border-top: 2px solid #00bfff;
    border-bottom: 2px solid #00bfff;
    background-color: #fff;
    padding: 0px 0px 0px 150px;
    z-index: 1000; /* Ensures the header is above other content */
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding: 10px 10px;
}

.logo img {
    height: 40px;
    margin-right: 10px; /* Space between logo and company name */
}

.company-name {
    font-size: 18px;
    color: #00bfff;
    font-weight: bold;
    margin-right: 100px;
}

.desktop-nav {
    display: flex;
    gap: 0px; /* Space between each nav item */
}

.desktop-nav a {  
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
    padding: 20px 30px;
    transition: background-color 0.3s, color 0.3s;
}

.desktop-nav a:hover {
    background-color: #00bfff;
    color: #fff;
    border-radius: 0px;
}

.desktop-nav a.active {
    background-color: #00bfff;
    color: #fff;
    border-radius: 0px;
}

/* Hero Section Styling */
.hero-section {
    background-image: url('pexels001.jpeg'); /* Path to the hero image */
    background-size: cover;
    background-position: center;
    height: 80vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

/* Tinted Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust the color and opacity as needed */
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 1; /* Ensure content is above the overlay */
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 100px;
}

.hero-section p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Primary button style */
.primary-btn {
    background-color: #00bfff;
    color: #fff;
}

.primary-btn:hover {
    background-color: #0099cc;
}

/* Secondary button style */
.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-btn:hover {
    background-color: #fff;
    color: #00bfff;
}

/* Image Gallery Styling */
.image-gallery {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    margin-bottom: 100px;
}

.image-gallery table {
    width: 100%;
    border-collapse: collapse;
}

.image-gallery td {
    width: 33.33%; /* Three equal columns */
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.image-gallery img:hover {
    transform: scale(1.1); /* Zoom in effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Shadow on hover */
}

/* PrettyPhoto adjustments */
.prettyPhoto {
    z-index: 100;
}

/* Promo Section Styling */
.promo-section {
    background-color: #f5f7f9; /* Light gray background */
    padding: 40px 20px;
}

.promo-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.promo-left {
    flex: 1;
    color: #007F00; /* Green color for the highlighted text */
}

.promo-left .promo-highlight {
    font-size: 1rem;
    color: #1ba9d4; /* Green color */
    font-weight: 600;
    margin-bottom: 10px;
}

.promo-left h2 {
    font-size: 2rem;
    color: #002856; /* Dark blue color for the heading */
    font-weight: bold;
    line-height: 1.4;
}

.promo-right {
    flex: 1;
    color: #555; /* Dark gray text */
}

.promo-right p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        gap: 20px;
    }

    .promo-left h2 {
        font-size: 1.6rem;
    }
}

/* Find Section Styling */
.find-section {
    text-align: center;
    padding: 100px 0px;
    background-color: #ecf8fd; /* White background for clean look */
}

.find-section p {
    font-size: 1.8rem;
    color: #333; /* Dark gray color for text */
    font-weight: 500; /* Medium font weight for readability */
    margin: 0;
}

/* Order Section Styling */
.order-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0px 0px 200px;
    flex-wrap: wrap;
    background-color: #ecf8fd; /* White background for clean look */
}

.product-card {
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 1.2rem;
    color: #00bfff;
    margin: 10px 0;
    font-weight: 500;
}

.product-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.order-btn,
.quick-view-btn {
    width: 48%;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-btn {
    background-color: #00bfff;
}

.order-btn:hover {
    background-color: #008bb5;
}

.quick-view-btn {
    background-color: #333;
}

.quick-view-btn:hover {
    background-color: #555;
}

/* Show Section Carousel Styling */
.show-section {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-card {
    background-color: rgba(0, 0, 0, 0.6); /* Partially transparent dark background */
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 40%;
}

.carousel-card h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.carousel-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.carousel-btn {
    padding: 10px 20px;
    background-color: #00bfff;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: #008bb5;
}

/* Dots Navigation */
.carousel-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #717171;
}

/* Services Section Styling */
.services-section {
    background-color: #2f4f6f; /* Dark blue background */
    color: #fff;
    text-align: center;
    padding: 100px 120px;
}

.services-section h4 {
    font-size: 1rem;
    color: #b0c4de; /* Light blue */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    color: #2f4f6f;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2rem;
    color: #2f4f6f;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 10px 0;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns for tablets */
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
}

/* Says Section Styling */
.says-section {
    background-color: #f5f7f9; /* Light background color */
    padding: 40px 20px;
}

.says-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.says-image {
    flex: 1;
}

.says-image img {
    width: 100%;
    border-radius: 8px;
}

.says-text {
    flex: 1;
    color: #002856;
}

.says-text h2 {
    font-size: 2rem;
    color: #002856; /* Dark blue color */
    font-weight: bold;
    margin-bottom: 20px;
}

.says-text ul {
    list-style-type: none;
    padding: 0;
}

.says-text li {
    font-size: 1.2rem;
    color: #2fc3f0; /* Green color for list items */
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.says-text li::before {
    content: "▶"; /* Custom arrow icon */
    color: #08c9bf;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .says-content {
        flex-direction: column;
        text-align: center;
    }

    .says-text h2 {
        font-size: 1.8rem;
    }

    .says-text ul {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .says-text h2 {
        font-size: 1.5rem;
    }

    .says-text li {
        font-size: 1rem;
    }
}

/* Why Section Styling */
.why-section {
    background-color: #f5f7f9; /* Light gray background */
    padding: 40px 20px;
}

.why-content {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.why-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.why-text {
    flex: 1;
    color: #002856;
}

.why-text h2 {
    font-size: 2rem;
    color: #002856; /* Dark blue color */
    font-weight: bold;
    margin-bottom: 10px;
}

.why-text h3 {
    font-size: 1.2rem;
    color: #666; /* Subtle gray for subheading */
    font-weight: 500;
    margin-bottom: 20px;
}

.why-text ul {
    list-style-type: none;
    padding: 0;
}

.why-text li {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d3d3d3; /* Light line separator */
}

.why-text li:last-child {
    border-bottom: none; /* Remove line separator for the last item */
}

.why-text li strong {
    color: #002856;
    font-size: 1rem;
}

.why-text li p {
    font-size: 0.9rem;
    color: #555;
    margin: 5px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-content {
        flex-direction: column;
        gap: 20px;
        align-items: center; /* Center items on smaller screens */
    }

    .why-image img {
        max-width: 90%; /* Make the image smaller on tablets */
    }

    .why-text {
        max-width: 90%; /* Limit text width for better readability */
        text-align: center; /* Center-align text on mobile for better layout */
    }

    .why-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .why-image img {
        max-width: 100%; /* Make the image fully responsive on mobile */
    }

    .why-text {
        max-width: 100%; /* Allow text to span the full width on mobile */
        text-align: left; /* Align text to the left for readability */
    }

    .why-text h2 {
        font-size: 1.5rem;
    }

    .why-text h3 {
        font-size: 1rem;
    }

    .why-text li strong {
        font-size: 0.95rem;
    }

    .why-text li p {
        font-size: 0.85rem;
    }
}

/* Post Section Styling */
.post-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.post-section h2 {
    font-size: 1.8rem;
    color: #002856;
    margin-bottom: 30px;
    font-weight: bold;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns for desktop */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    background-color: #f5f7f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block; /* Ensure images display on mobile */
}

.post-content {
    padding: 20px;
    text-align: left;
}

.post-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.post-content h3 {
    font-size: 1.1rem;
    color: #002856;
    margin: 10px 0;
    font-weight: bold;
}

.post-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-link {
    color: #2aa7bd;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.post-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on tablets */
        gap: 15px;
    }

    .post-card img {
        height: 150px; /* Adjust image height for tablets */
    }

    .post-section h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .post-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 10px;
    }

    .post-card {
        width: 100%; /* Full width of mobile view */
    }

    .post-card img {
        height: 120px; /* Smaller image height on mobile */
    }

    .post-section h2 {
        font-size: 1.4rem;
    }

    .post-content {
        padding: 15px; /* Reduce padding for mobile */
    }

    .post-content h3 {
        font-size: 0.95rem;
    }

    .post-description {
        font-size: 0.85rem;
    }
}

/* FAQ Section Styling */
.faq-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f7f9; /* Light gray background */
}

.faq-section h2 {
    font-size: 1.8rem;
    color: #002856;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #d3d3d3;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 0;
    color: #002856;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: #4aa5c0; /* Green color for the "+" icon */
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    font-size: 0.95rem;
    color: #555;
    padding: 10px 0;
}

.view-all-faqs {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #13b9c5;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.view-all-faqs:hover {
    background-color: #0adee6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 1.5rem;
    }
}

/* Footer Section Styling */
.footer-section {
    background-color: #002856;
    color: #fff;
    padding-top: 40px;
    font-family: Arial, sans-serif;
}

.footer-top {
    background-color: #00bfff; /* Light blue background for Social Media */
    text-align: center;
    padding: 20px;
}

.footer-top h2 {
    font-size: 1.8rem;
    color: #002856;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.social-img {
    width: 60px; /* Set a fixed size for all social media images */
    height: 60px;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition on hover */
}

.social-icons a:hover .social-img, .footer-social-icons a:hover .social-img {
    transform: scale(1.1); /* Slightly enlarge icon on hover */
    opacity: 0.8; /* Reduce opacity on hover for effect */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    padding: 10px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col ul {
    list-style-type: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #1ee9e9;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social-icons a {
    color: #b0c4de;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: #00ff00;
}

.footer-col form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col input[type="email"] {
    padding: 10px;
    border: 1px solid #b0c4de;
    border-radius: 4px;
    background: #002856;
    color: #fff;
}

.footer-col button {
    padding: 10px;
    background-color: #00bfff;
    color: #002856;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-col button:hover {
    background-color: #007f00; /* Green on hover */
}

.footer-bottom-bar {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: #b0c4de;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-bar p {
    margin: 0;
}

.payment-icons img {
    width: 300px;
    margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
    }
}

/* Mobile Header Styling */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid #00bfff;
    border-bottom: 3px solid #00bfff;
    background-color: #fff;
    padding: 10px;
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.company-name {
    font-size: 18px;
    color: #00bfff;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

/* Adjust the space below the fixed header so content doesn't overlap */
@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Adjust for mobile header */
    }
}

.mobile-toggle {
    font-size: 18px;
    color: #00bfff;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

/* Lead Section Styling */
.lead-section {
    background-color: #fff; /* White background for card effect */
    border: 2px solid #00bfff; /* Blue border */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    max-width: 800px;
    margin: 100px auto; /* Centering the section */
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.lead-section:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.lead-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #00bfff; /* Blue color for headline */
    margin-bottom: 10px;
}

.lead-section p {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
}

/* Mobile Nav Menu */
.mobile-nav {
    position: fixed;
    bottom: -100%; /* Hidden off-screen */
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #00bfff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: bottom 0.4s ease; /* Smooth fly-up animation */
    z-index: 10;
}

.mobile-nav a {
    color: #00bfff;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-nav a:hover {
    background-color: #00bfff;
    color: #fff;
}

/* Active State for Fly-Up Animation */
.mobile-nav.active {
    bottom: 0; /* Fly up to visible position */
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav.active {
    display: flex;
}

/* Mobile View - Adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px; /* Limit button width */
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lead-section {
        padding: 15px;
        margin: 20px auto; /* Reduced margin on smaller screens */
        max-width: 90%; /* Use more screen width on mobile */
    }

    .lead-section h2 {
        font-size: 1.5rem; /* Slightly smaller font size for the headline */
    }

    .lead-section p {
        font-size: 0.9rem; /* Slightly smaller font size for the paragraph */
    }
}

@media (max-width: 480px) {
    .lead-section {
        padding: 20px;
        margin: 100px auto; /* Even smaller margin for very small screens */
    }

    .lead-section h2 {
        font-size: 1.3rem; /* Smaller font size for extra small screens */
    }

    .lead-section p {
        font-size: 0.85rem; /* Smaller font size for extra small screens */
    }
}

/* Responsive adjustments for Show Section */
@media (max-width: 768px) {
    .carousel {
        height: 450px; /* Reduce height for tablets */
    }

    .carousel-card {
        max-width: 80%; /* Allow more width on smaller screens */
    }

    .carousel-card h2 {
        font-size: 1.5rem;
    }

    .carousel-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 400px; /* Further reduce height for mobile */
    }

    .carousel-card {
        max-width: 90%; /* Full width on mobile */
        padding: 25px;
    }

    .carousel-card h2 {
        font-size: 1.2rem;
    }

    .carousel-card p {
        font-size: 0.85rem;
    }
}

/* Service Card Styling */
.service-card {
    background-color: #fff;
    color: #2f4f6f;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2rem;
    color: #2f4f6f;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 10px 0;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Mobile-specific adjustments for card size */
@media (max-width: 480px) {
    .service-card {
        width: 200px; /* Set desired width on mobile */
        height: 100px; /* Set desired height on mobile */
        padding: 15px;
        margin: 0px 0px 0px -25px; /* Center each card horizontally */
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Single column layout on mobile */
        gap: 15px; /* Reduced gap for mobile */
    }
}