/* ===== Base Styles ===== */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --dark-bg: #2a2a2a;
    --footer-text: #ddd;
}
.banner {
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
}

.banner-image {
    width: 100%; /* Make the image full width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any inline spacing */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

.container {
    width: calc(100% - 20px);
    margin: 0 10px;
    padding: 0;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Header Styles ===== */
header {
    background-color: #f5f5f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height:60px;
    margin-right: 15px;
    /* border-radius: 50px; */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    color: var(--black);
    font-size: 1.5rem;
    margin: 0;
}

.tagline {
    color: var(--light-gray);
    font-size: 0.8rem;
    margin: 0;
    font-weight: 600;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    padding: 10px 15px;
    padding-left: 20px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    transition: all 0.3s ease;
}

nav ul li a i {
    margin-right: 8px;
    font-size: 1rem;
}

nav ul li a:hover {
    background-color: var(--secondary-color);
}

nav ul li a.active {
    /* color: var(--secondary-color); */
    border-bottom: 3px solid var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px;
}

.mobile-menu {
    display: none;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.mobile-menu ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-info-mobile {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-info-mobile a {
    display: block;
    padding: 8px 0;
    color: var(--primary-color);
}

/* ===== Banner Styles ===== */
.banner {
    background: url('../images/banner_image.jpg') no-repeat center center/cover;
    width: calc(100% - 20px); /* Full width minus 20px for margins */
    height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin: 0 0px; 
    width: 100%; 
    display: block;
}

.banner-content {
    width: 100%;
    padding: 0 20px;
}

.banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== About Section ===== */
.about {
    padding: 60px 0;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.mission, .vision {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.8rem;
}

.mission p, .vision p {
    text-align: justify;
    margin-bottom: 15px;
}
.vision p {
    text-align: justify;
}

.mission-list {
    list-style-type: none;
    margin-top: 15px;
    padding: 0;
}

.mission-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    /* background-color: var(--light-gray); */ /* Change background color on hover */
    /* transition: background-color 0.3s ease; */ /* Smooth transition */
    /* cursor: pointer; */
}

.mission-icon {
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-text {
    flex: 1;
    margin-right: 20px;
    margin-left: 20px;
    text-align: justify;
}

.about-image img {
    max-width: 100%;
    width: 650px;
    height: 450px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== Featured Products ===== */
.featured-products {
    width: 100%; /* Make the section full width */
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
    background-color: var(--light-gray); /* Optional: Add a background color */
}

.featured-products h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.product-grid {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: space-around; /* Space items evenly */
    padding: 20px; /* Optional: Add padding for spacing */
}

.product-card {
    flex: 1 1 30%; /* Allow cards to grow and shrink, with a base width of 30% */
    margin: 10px; /* Add margin between cards */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for depth */
    border-radius: 8px; /* Optional: Rounded corners */
    overflow: hidden; /* Ensure content doesn't overflow */
    background-color: white; /* Optional: Background color for cards */
}

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

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

.product-card h3 {
    padding: 15px;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 15px 15px;
}

.full-width-cta {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* ===== Welcome Section ===== */
.welcome {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.welcome h2 {
    margin-bottom: 20px;
}

.welcome p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #e8ac04;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Commercial Projects ===== */
.commercial-projects {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.project-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.project-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-card ul {
    list-style-type: none;
}

.project-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.project-card ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* ===== Services Page ===== */
.services-intro {
    padding: 60px 0 30px;
    text-align: center;
}

.services-intro h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 30px 0 60px;
}

.service-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px; /* More rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Deeper shadow for depth */
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem; /* Adjust font size */
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 15px; /* Spacing below paragraphs */
}

/* Image styles */
.service-card img {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Rounded corners for images */
    margin-bottom: 15px; /* Space below images */
}

/* System Components */
.system-components {
    padding: 60px 20px; /* Add padding for spacing */
    /* background-color: var(--light-gray); Light gray background */
    text-align: center; /* Center the text */
}

.system-components h2 {
    color: var(--primary-color); /* Use the primary color for the heading */
    margin-bottom: 30px; /* Add space below the heading */
}

.components-grid {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Responsive columns */
    gap: 20px; /* Space between cards */
}

.component-card {
    background-color: var(--white); /* White background for cards */
    padding: 20px; /* Padding inside cards */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease; /* Smooth hover effect */
}
.component-card i {
    font-size: 2.5rem;
    color:teal;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.component-card:hover i {
    transform: scale(1.1);
}


.component-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.component-card h3 {
    color: var(--primary-color); /* Primary color for headings */
    margin-bottom: 10px; /* Space below headings */
}

.component-card p {
    color: #555; /* Dark gray for text */
    line-height: 1.5; /* Better readability */
}

/* ===== Contact Page ===== */
.contact-intro {
    padding: 60px 0 30px;
    text-align: center;
}

.contact-intro h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0 60px;
    margin-left: 20px;
    margin-right: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    background-color: white;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0d5bba;
}

.office-card {
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-methods, .business-hours {
    background-color: var(--white);
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
    margin-top: 3px;
}

.thank-you-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 4px;
}
/* Contact Page Map Styles */
.map-container {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments for contact page */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form, 
    .contact-info {
        width: 100%;
    }
    
    .map-container {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .map-container {
        padding: 15px;
    }
    
    .map-container h3 {
        font-size: 1.1rem;
    }
}
/* Image Grid Styles */
.image-grid {
    margin-top: 30px;
}

.image-grid h3 {
    margin-bottom: 15px;
    color: #0d6efd;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
}

.grid-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.03);
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.grid-item img:hover {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .grid-item img {
        height: 200px;
    }
}

/* ===== Footer Styles ===== */
footer {
    background-color: var(--dark-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
    padding-left: 30px;
    
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #3a3a3a;
    color: #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #999;
}

.copyright a {
    color: var(--accent-color);
    text-decoration: none;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo {
        flex: 1;
    }
    
    .banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .mission, .vision {
        min-width: 100%;
    }
    
    .banner {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    .banner h2 {
        font-size: 1.8rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

.get-in-touch {
    padding: 60px 20px; /* Add padding for spacing */
    background-color: var(--light-teal); /* Use a light gray background */
    text-align: center; /* Center the text */
}

.get-in-touch h2 {
    color: var(--primary-color); /* Use the primary color for the heading */
    margin-bottom: 20px; /* Add space below the heading */
}

.get-in-touch p {
    color: var(--text-color); /* Use the text color for the paragraph */
    font-size: 1.1rem; /* Slightly increase font size for readability */
    max-width: 800px; /* Limit the width for better readability */
    margin: 0 auto; /* Center the paragraph */
}

/* General styles for the services section */
.service-section {
    padding: 60px 0; /* Top and bottom padding */
}

.service-section h2 {
    color: var(--primary-color); /* Use your primary color */
    margin-bottom: 20px; /* Space below the heading */
}

.service-section p {
    color: #555; /* Dark gray for text */
    line-height: 1.6; /* Better readability */
    font-size: 1.2rem;
}

.service-section ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
    font-size: 1.1rem;
}

.service-section li {
    margin-bottom: 10px; /* Space between list items */
}

.service-section i {
    color: var(--accent-color); /* Use your accent color for icons */
}

/* Styles for the image */
.service-section img {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-top: 30px; /* Add a gap of 30px above the image */
}

/* Responsive layout */
@media (max-width: 768px) {
    .service-section {
        text-align: center; /* Center text on smaller screens */
    }

    .service-section .col-lg-6,
    .service-section .col-lg-4 {
        margin-bottom: 30px; /* Space between sections on mobile */
    }
}
