/* General Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width:auto;
    margin: auto;
    overflow: hidden;
}



/* Optionally, you can apply justify alignment to other containers as well */
.container p, .container ul, .container li, .container h2, .container h3, .container h1 {
    text-align:center;
}

/* H1 Text Styling */
h1 {
    font-size: 2em; /* Adjust size as needed */
    font-weight: 600; /* Bold text */
    color: #333; /* Dark text color */
    text-align: center; /* Center align the text */
    margin: 20px 0; /* Space around the text */
    padding: 10px 0; /* Padding for additional spacing */
    border-bottom: 2px solid #f5a623; /* Bottom border for emphasis */
    font-family: 'Roboto', sans-serif; /* Font family */
    background: #f57d2d; /* Gradient background */
    -webkit-background-clip: text; /* Clip the gradient to text */
    -webkit-text-fill-color: transparent; /* Make the text transparent to show gradient */
} 

/* H2 Text Styling */
h2 {
    font-size: 1em; /* Adjust size as needed */
    font-weight: 400; /* Semi-bold text */
    color: #555; /* Slightly lighter text color */
    text-align: center; /* Center align the text */
    margin: 15px 0; /* Space around the text */
    padding: 5px 0; /* Padding for additional spacing */
    border-bottom: 1px solid #f5a623; /* Bottom border for emphasis */
    font-family: 'Roboto', sans-serif; /* Font family */
    background: #FF6500; /* Gradient background */
    -webkit-background-clip: text; /* Clip the gradient to text */
    -webkit-text-fill-color: transparent; /* Make the text transparent to show gradient */
}


/* H3 Text Styling */
h3 {
    font-size: 1.25em; /* Adjust size as needed */
    font-weight: 500; /* Medium-bold text */
    color: #777; /* Lighter text color */
    text-align: center; /* Center align the text */
    margin: 10px 0; /* Space around the text */
    padding: 5px 0; /* Padding for additional spacing */
    border-bottom: 1px dashed #f5a623; /* Dashed bottom border for emphasis */
    font-family: 'Roboto', sans-serif; /* Font family */
    background: #FF6500; /* Gradient background */
    -webkit-background-clip: text; /* Clip the gradient to text */
    -webkit-text-fill-color: transparent; /* Make the text transparent to show gradient */
}



.container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relacetive;
}

header h1 {
    float: left;
    margin-left: 20px;
}

header .menu-icon {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    margin-right: 20px;
}

header h1 a img {
    width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

header nav ul li a.btn {
    background: #FF6500;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
    white-space: nowrap; /* Ensure the text does not wrap */
}

header nav ul li a.btn:hover {
    background: #FF6500;
}


/* Introduction Section */
.intro {
    padding: 60px 20px;
    background-color: #f0f4f8;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #007bff;
}

.intro .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro h1 {
    font-size: 2.5rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro h2 {
    font-size: 2rem;
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 15px;
}

.intro h3 {
    font-size: 1.75rem;
    color: #003366;
    font-weight: 500;
    margin-bottom: 25px;
}

.intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.intro ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    margin: 0 auto 30px;
    max-width: 800px;
}

.intro ul ul {
    list-style-type: circle;
    margin-left: 20px;
    margin-bottom: 15px;
}

.intro ul li {
    margin-bottom: 10px;
    font-size: 1.125rem;
    color: #444;
}

.intro ul li strong {
    color: #2c3e50;
    font-weight: 600;
}

.intro ul li::marker {
    color: #FF6500;
    font-size: 1.5rem;
}

.intro h2, .intro h3 {
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.intro ul ul li::marker {
    color: #0056b3;
}


/* Mobile Navigation */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 20px;
}

.navbar {
    display: flex;
    flex-direction: row;
}
.navbar.show {
    display: flex;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        width: 200px; /* Adjust width as needed */
        position: absolute;
        top: 60px;
        right: 0;
        background: #2c3e50;
        text-align: center;
        z-index: 1;
    }

    .navbar.show {
        display: flex;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px; /* Add space between vertical items */
    }

    header nav ul li {
        display: block;
        margin: 10px 0;
    }
}
/* Hero Section Styles */
.hero {
    position: relative;
    height: 90vh;
    background: url('images/hero-image3.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: auto;
}


.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
    max-width: 800px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .btn, .hero .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s;
    margin: 5px;
}

.hero .btn {
    background: #FF6500;
    color: black;
}

.hero .btn:hover {
    background: #b64900;
}

.hero .btn-secondary {
    background: #fff;
    color: black;
}

.hero .btn-secondary:hover {
    background: #ddd;
}
/* Section Styles */
.about, .products, .quality, .testimonials, .cta {
    padding: 50px 0;
}

.about h2, .products h2, .quality h2, .testimonials h2, .cta h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-grid, .product-grid, .quality-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.about-card, .product-card, .quality-card, .testimonial-card {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.about-card:hover, .product-card:hover, .quality-card:hover, .testimonial-card:hover {
    transform: translateY(-5px);
}

.about-card h3, .product-card h3, .quality-card h3, .testimonial-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-card p, .product-card p, .quality-card ul, .testimonial-card p {
    font-size: 16px;
}

.about-card ul, .quality-card ul {
    list-style: none;
    padding: 0;
}

.about-card ul li, .quality-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-card ul li::before, .quality-card ul li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: #FF6500;
}

.about-card img, .product-card img, .quality-card img, .testimonial-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* CTA Section Styles */
.cta {
    background-color:#2c3e50; /* Light background color to ensure contrast with white text */
    padding: 40px 20px; /* Added padding for better spacing */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensures content does not overflow */
}

.cta h2 {
    color: #333; /* Dark text color for the h2 element */
    font-size: 24px; /* Adjust size if necessary */
    margin-bottom: 20px;
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.5s ease-in forwards; /* Apply fade-in animation */
}
.cta p {
    color: #ffffff; /* White text color for the paragraph text */
    font-size: 16px; /* Adjust size if necessary */
    margin-bottom: 20px;
    opacity: 0; /* Start hidden */
    animation: fadeIn 1.5s ease-in 0.5s forwards; /* Apply fade-in animation with delay */
}
.cta .btn,
.cta .btn-secondary {
    background-color:#FF6500; /* Primary button color */
    color: black; /* Text color for buttons */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    display: inline-block; /* Ensure buttons are inline and properly aligned */
    opacity: 0; /* Start hidden */
    animation: fadeInUp 1.5s ease-in forwards; /* Apply fade-in-up animation */
}

.cta .btn-secondary {
    background-color: white; /* Secondary button color */
    
}

/* Spacing between buttons on mobile */
@media (max-width: 768px) {
    .cta .btn,
    .cta .btn-secondary {
        margin-bottom: 10px;
    }
}

/* Keyframes for animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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


/* Footer Styles */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #FF6500;
}

.footer-contact {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    margin-right: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    list-style: none; /* Remove list style */
}

.social-links li {
    display: inline-block;
    margin: 0 5px; /* Add margin to space out icons */
}

.social-links li a {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.social-links li a:hover {
    color: #FF6500;
}

.footer-bottom {
    margin-top: 20px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links li {
    margin-bottom: 0;
}

.footer-bottom-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links li a:hover {
    color: #FF6500;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    header nav ul {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero .btn, .hero .btn-secondary {
        padding: 8px 16px;
        font-size: 14px;
    }

    header nav ul li a.btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    header nav ul {
        gap: 5px;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 12px;
    }

    .hero .btn, .hero .btn-secondary {
        padding: 8px 16px;
        font-size: 12px;
    }

    header nav ul li a.btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    header nav ul {
        gap: 5px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .menu-icon {
        display: block;
    }

    header nav {
        display: none;
    }

    header nav ul {
        display: block;
        width: 100%;
        text-align: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .about-card, .product-card, .quality-card, .testimonial-card, .contact-details, .contact-form, .dealer-form {
        flex: 1 1 100%;
    }

    .dealer-form form {
        padding: 20px;
    }
}

/* WhatsApp Chat Icon */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #43cd66;
    border-radius: 50px;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
    color: white;
}

.whatsapp-chat:hover {
    transform: translateY(-5px);
    background-color: #20c659;
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.whatsapp-chat img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.whatsapp-chat span {
    color: black;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .whatsapp-chat {
        padding: 8px 12px;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-chat img {
        width: 25px;
        height: 25px;
    }

    .whatsapp-chat span {
        font-size: 14px;
    }
}

/* Product Grid Section */
/* Ensure the image takes the full width of its container */
.product-image {
    width: 100%;
    height: auto; /* Maintains the aspect ratio */
    max-width: 100%; /* You can adjust this value */
    display: block;
    object-fit: cover; /* Ensures the image covers the entire container */
    margin-bottom: 20px; /* Adds space below the image */
    border-radius: 8px; /* Adds rounded corners, optional */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for depth */
}

/* For older browsers that do not support object-fit */
.product-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .product-image {
        object-fit:cover;
        width: 100%;
        height: auto;
    }
}


.products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    overflow: hidden;
    gap: 30px;
}

.product-item {
    background-color: #fff;
    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;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    margin-top: 10px;
}

.product-price {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #28a745;
    font-weight: bold;
}

.product-description {
    margin-bottom: 20px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.product-info .btn {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.product-info .btn:hover {
    background-color:#FF6500;
}

        /* Modal Styles */
        .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.7);
            padding-top: 60px;
        }

        .modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            border-radius: 10px;
        }

        .close-btn {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close-btn:hover,
        .close-btn:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

        /* Form Styles */
        #enquiryForm label {
            display: block;
            margin-top: 10px;
            font-weight: bold;
        }

        #enquiryForm input,
        #enquiryForm textarea {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        #enquiryForm button {
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        #enquiryForm button:hover {
            background-color: #0056b3;
        }

/* Product item design */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    transition: background-color 0.3s;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
}
/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
    }

    #product img {
        width: 100%;
        height: auto;
    }
}

/* Product Section */
#product {
    background-color: #fff;
    padding: 40px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

#product h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #007bff;
}

#product h2, #product h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

#product p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

#product ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

#product ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

/* Container for the image with enhanced design */

.product-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Max width of the container */
    margin: auto; /* Center horizontally */
    position: relative;
    background: #fff; /* Background color of the container */
    border-radius: 15px; /* Rounded corners */
    overflow: hidden; /* Hide overflow to maintain container size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Wrapper to maintain aspect ratio */
.aspect-ratio-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Rounded corners for the wrapper */
}

/* Image styles */
.product-card img {
    width: 100%;
    height: auto;
    max-height: 600px; /* Adjust this value based on your needs */
    object-fit: cover; /* Ensures the image covers the container without distortion */
    border-radius: 15px; /* Optional: matching border-radius */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        max-width: 100%; /* Full width on smaller screens */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Smaller shadow on mobile */
    }

    .product-card img {
        max-height: 400px; /* Adjust max height for smaller screens */
    }
}

@media (min-width: 769px) {
    .product-card {
        max-width: 700px; /* Max width for larger screens */
    }
}

/* Hover effect */
.product-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
    transform: scale(1.02); /* Slight zoom effect */
}



/* Blog Introduction */
.blog-intro {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.blog-intro h2 {
    font-size: 2.5em;
    color: #007bff; /* Theme color */
    margin-bottom: 20px;
}

.blog-intro p {
    font-size: 1.25em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Content */
.blog-content {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-main {
    flex: 1 1 65%;
}

.blog-post {
    background: #fff;
    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;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-post img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid #007bff; /* Theme color */
}

.blog-post-info {
    padding: 20px;
}

.blog-post-info h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.blog-post-info p {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-post-info .btn {
    background: #007bff; /* Theme color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.blog-post-info .btn:hover {
    background: #0056b3;
}

/* Blog Sidebar */
.blog-sidebar {
    flex: 1 1 30%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.sidebar-widget h3 {
    font-size: 1.25em;
    color: #007bff; /* Theme color */
    margin-bottom: 15px;
    border-bottom: 2px solid #f57d2d;
    padding-bottom: 5px;
}

.sidebar-widget ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
}

.sidebar-widget ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

.sidebar-widget ul li a:hover {
    color: #007bff; /* Theme color */
}

/* Contact Page */
.contact {
    padding: 50px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* Dealer Form */
.contact-details, .dealer-form {
    flex: 1 1 calc(50% - 20px);
    margin: 10px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dealer-form {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
}
.dealer-form h3 {
    text-align: center;
}
.dealer-form label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
.dealer-form input,
.dealer-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.dealer-form button {
    background-color: #FF6500;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}
.dealer-form button:hover {
    background-color: #d65500;
}
/* Contact Form */

.contact-details, .contact-form {
    flex: 1 1 calc(50% - 20px);
    margin: 10px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
}
.contact-form h3 {
    text-align: center;
}
.contact-form label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.contact-form button {
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}
.contact-form button:hover {
    background-color: #273747;
}


/* FAQ Section */
.faq {
    padding: 50px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #007BFF;
    cursor: pointer;
    position: relative;
}

.faq-item h3::after {
    content: '\f078'; /* FontAwesome down arrow */
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.faq-item p {
    display: none;
    margin-top: 10px;
}

.faq-item.active h3::after {
    transform: rotate(-180deg);
}

.faq-item.active p {
    display: block;
}






.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
    padding: 20px;
}


.benefit-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}


.benefit-item h3 {
    margin: 10px 0;
}

/* Goto TOP */
.goto-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    z-index: 1000;
    cursor: pointer;
}

.goto-top a {
    color: white;
    text-decoration: none;
}

.goto-top:hover {
    background-color: #0056b3;
}

/* WHY CHOOSE US */
.why-choose-us {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.why-choose-us p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #555;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-us-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.why-us-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.why-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.why-us-card p {
    font-size: 1rem;
    color: #666;
}

/* Hover effect */
.why-us-card:hover {
    transform: translateY(-10px);
}

/* Animation styles */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Our Team Section - Combined Design */
.team {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.team h2 {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
}

.team h2::before {
    content: '';
    width: 80px;
    height: 3px;
    background-color: #007bff;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}

.team p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #ffffff;
    border: 2px solid #007bff; /* Added border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px; /* Add a slight border-radius to the image */
}

.team-member h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin: 15px 0 5px;
    font-weight: 600;
}

.team-member p {
    font-size: 1rem;
    color: #888;
    margin-bottom: 20px;
}

/* Hover Effect */
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #f0f8ff; /* Light blue background on hover */
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover h3,
.team-member:hover p {
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .team h2 {
        font-size: 2.5rem;
    }

    .team p {
        font-size: 1.1rem;
    }

    .team-member h3 {
        font-size: 1.4rem;
    }

    .team-member p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .team h2 {
        font-size: 2rem;
    }

    .team p {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .team-member p {
        font-size: 0.85rem;
    }
}

.development-container {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #2c3e50, #2c3e50);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF6500;
    padding-bottom: 10px;
}
p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: none;
    background-color: #FF6500;
    color: black;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #FF6500;
}

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

    p {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
/* Animation for Building/Developing */
@keyframes building {
    0% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.6; }
}

.building-animation {
    display: inline-block;
    margin: 20px auto;
    animation: building 1.5s infinite ease-in-out;
}

.building-animation i {
    font-size: 50px;
    color: #FF6500;
}

@media (max-width: 768px) {
    .building-animation i {
        font-size: 40px;
    }
}
