/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --background-color: #f0f3f5;
    --text-color: #333;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #007bff;
    padding: 20px 0;
}
.logo {
    height: 50px;
    margin-right: 20px;
}

header h1 {
    display: inline;
    color: #00d1ff;
    flex-grow: 1;
}




.social-icons {
    position: absolute;
    top: 10px;
    right: 20px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 20px;
}

.social-icons a:hover {
    color: #db1d36; /* Change the color on hover */
}

/* Navigation Bar */
#navbar {
    background-color: #007bff; /* Dark blue background */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbar .logo img {
    max-width: 150px;
}

#navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

#navbar .nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

#navbar .nav-links li a:hover {
    color: #00d1ff; /* Bright hover color */
}

/* Hamburger Menu Icon */
#navbar .menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    #navbar .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #001f3f; /* Same dark blue background */
        border-radius: 8px;
        padding: 10px;
        width: 200px;
    }

    #navbar .nav-links.active {
        display: flex;
    }

    #navbar .menu-icon {
        display: block;
    }
}



/* Home Section Styles */
section {
    background: url('images/') no-repeat center center/cover;  /* Background image */
    background-color:transparent;
    padding: 100px 0;
    text-align: center;
    color: white;
    font-size: 1.2em;
    
}
section p {
    color: white;
    font-size: 1em;
}

.hero {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}
.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #27ae60;
}
section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 100px 0;
    margin-bottom: 40px;
    font-size: 1.2em;
}

.section h2 {
    color: var(--primary-color);
    font-size: 1em;
}


/* Services Section Styles */
section#services {
    background: white;  /* Bright Orange */
    color: #007bff;
    padding: 60px 0;
   
}

section#services h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

section#services p {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #121212;
    margin-bottom: 40px;
}

.service-card {
    background: rgb(202, 215, 228);  /* Lighter Orange */
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    transition: transform 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 10px;
}

.service-card ul {
    list-style-type: none;
    padding: 0;
}

.service-card ul li {
    margin: 10px 0;
    color: #121212;
}

.service-card ul li::before {
    content: '•';
    color: #121212;
    margin-right: 10px;
}

/* About Section Styles */
section#about {
    background: rgb(202, 215, 228);   /* Bright Green */
    color: #007bff;
    padding: 60px 0;
   
}

section#about h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

section#about h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
}

section#about p, section#about ul {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #121212;
}

section#about ul {
    list-style-type: none;
    padding: 0;
}

section#about ul li {
    margin: 10px 0;
}

section#about ul li strong {
    color: #121212;
}



/* Catalogue Section Styles */
section#catalogue {
    background: rgb(232, 237, 241);  /* Bright Blue */
    padding: 60px 0;
    color: #121212;
    text-align: center;

}

section#catalogue h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

section#catalogue p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #121212;
}


/* Contact Section Styles */
section#contact {
    background: #db3934;  /* Bright Purple */
    color: var(--text-color);
    padding: 60px 0;
    background-color: var(--background-color);
}

section#contact h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

section#contact p {
    font-size: 1.1em;
    line-height: 1.6em;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
}



.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map iframe {
    border: 0;
    width: 100%;
    height: 450px;
}

/* Success and error message styling */
.message {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.2em;
    text-align: center;
}

.message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #3c763d;
}

.message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #a94442;
}

/* Quick Links Section */
#quick-links {
    background: url("images/quick\ link.webp") no-repeat center center/cover;
    background-color: #001f3f; /* Fallback dark blue color */
    color: #ffffff; /* White text */
    padding: 40px 20px;
    text-align: center;
    position: relative;
}
#quick-links .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

#quick-links h2, #quick-links h3 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #00d1ff; /* Bright accent color */
}

#quick-links p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#quick-links ul.quick-links {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

#quick-links ul.quick-links li {
    display: inline-block;
    margin: 0 15px;
}

#quick-links ul.quick-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

#quick-links ul.quick-links li a:hover {
    color: #00d1ff; /* Hover effect */
}

/* Social Media Icons */
.social-media-icons {
    margin: 20px 0;
}

.social-media-icons a {
    color: #ffffff;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media-icons a:hover {
    color: #00d1ff; /* Bright hover color */
}


/* Newsletter Form Styling */
#quick-links form {
    display: flex;
    margin-top: 20px;
    text-align: left;
    background: rgb(232, 237, 241); /* Slightly lighter background for contrast */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#quick-links input[type="email"] {
    width: 70%;
    padding: 12px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    color: #333;
}

#quick-links input[type="submit"] {
    width: 25%;
    padding: 12px;
    border: none;
    background-color: #00d1ff; /* Bright button color */
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#quick-links input[type="submit"]:hover {
    background-color: #00a3cc; /* Hover color */
}

/* Responsive Design */
@media (max-width: 768px) {
    #quick-links form {
        text-align: center;
    }

    #quick-links input[type="email"],
    #quick-links input[type="submit"] {
        width: 100%;
        margin: 10px 0;
    }
}

/* General form styling */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form labels */
form label {
    display: block;
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #333;
}

/* Form inputs */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

/* Submit button */
form input[type="submit"] {
    background-color: #00d1ff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #00a3cc;
}

/* Success and error message styling */
.message {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.2em;
    text-align: center;
}

.message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #3c763d;
}

.message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #a94442;
}

/* Footer Section */
#footer {
    background-color: #007bff; /* Dark blue background */
    color: #ffffff; /* White text */
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    font-size: 1.2em;
}

.footer-item i {
    font-size: 1.5em;
    margin-right: 10px;
    color: white; /* Bright accent color */
}

.footer-item span {
    color: #ffffff;
}

.social-media-icons {
    margin: 20px 0;
}

.social-media-icons a {
    color: #ffffff;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media-icons a:hover {
    color: #00d1ff; /* Bright hover color */
}

#footer p {
    margin-top: 20px;
    font-size: 1em;
    color: #cccccc;
}

