/* General Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
/* Navigation Bar */
nav {
    position: fixed; /* Ensure the nav bar stays at the top */
    top: 0;
    left: 0;
    width: 97%;
    z-index: 999; /* Bring it to the front */
    background: rgba(0, 0, 0, 0.8); /* Optional: Semi-transparent black background */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a slight shadow for better visibility */
}

/* Bar Menu Icon for Mobile */
.bar-menu {
    z-index: 1000; /* Ensure the menu icon is above everything else */
}

/* Dropdown Menu */
nav ul {
    z-index: 999; /* Ensure the menu items appear on top */
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    color: rgb(6, 52, 235);
    padding: 10px 20px;
}

.brand {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: rgb(4, 217, 245);
    text-decoration: none;
    padding: 5px 10px;
}

.nav-links li a:hover {
    background-color: white;
    color: black;
    border-radius: 5px;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 50px;
        right: 20px;
        width: 150px;
        text-align: center;
        border-radius: 5px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-icon {
        display: flex;
    }

    .nav-links.show {
        display: flex;
    }
}
/* Hero Section */
.hero-section {
    background: url('Blue and White Architect LinkedIn Banner (4).png') no-repeat center center/cover;
    color: white;
    text-align: left;
    padding: 100px 20px;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 800px;
}

.hero-container h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-container p {
    font-size: 1.5em;
    line-height: 1.4;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero-container h1 {
        font-size: 2em;
    }

    .hero-container p {
        font-size: 1.2em;
    }
}
.register-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #0d47a1;
    background-color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.register-button:hover {
    background-color: #0d47a1;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container h1 {
        font-size: 2em;
    }

    .hero-container p {
        font-size: 1.2em;
    }

    .register-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}
/* About Section */
.about-section {
    padding: 60px 20px;
    color: white;
    background: url('Blue and White Architect LinkedIn Banner (5).png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-content {
    flex: 1;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for better readability */
    padding: 20px;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0d47a1;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    color: #ffffff;
    background-color: #25d366;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-button:hover {
    background-color: #1ebe57;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image {
        max-width: 100%;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    color: #ffffff;
    background-color: #25d366; /* WhatsApp green color */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-button:hover {
    background-color: #1ebe57; /* Darker shade of WhatsApp green */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-button {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}
/* Notes Section */
.notes-section {
    padding: 50px 20px;
    background-color: #e3f2fd;
    text-align: center;
}

.notes-container {
    max-width: 800px;
    margin: 0 auto;
}

.notes-container h2 {
    font-size: 2.5em;
    color: #333;
}

.notes-container p {
    font-size: 1.2em;
    color: #555;
    margin: 20px 0;
}

/* Notes Carousel */
.notes-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    animation: scroll-carousel 15s linear infinite;
}

.note-card {
    display: inline-block;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 250px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.note-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.note-card a {
    text-decoration: none;
    color: #333;
}

.note-card h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.note-card p {
    font-size: 1em;
    color: #555;
    margin: 0;
}

/* Animation for carousel */
@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Duplicate the carousel content for seamless scrolling */
.notes-carousel::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    animation: scroll-carousel 15s linear infinite;
}
/* Notes Section */
.notes-section {
    padding: 50px 20px;
    background-color: #e3f2fd;
    text-align: center;
}

.notes-container {
    max-width: 1000px;
    margin: 0 auto;
}

.notes-container h2 {
    font-size: 2.5em;
    color: #333;
}

.notes-container p {
    font-size: 1.2em;
    color: #555;
    margin: 20px 0;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

/* Notes Display */
.notes-display {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.note-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
    flex-shrink: 0;
}

.note-card img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.note-card p {
    font-size: 1.1em;
    color: #333;
    margin: 5px 0 0;
    font-weight: bold;
}

/* Arrows */
.arrow {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5em;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.arrow:hover {
    background-color: #0056b3;
}

.arrow:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.arrow.prev {
    position: absolute;
    left: -50px;
}

.arrow.next {
    position: absolute;
    right: -50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notes-display {
        flex-wrap: wrap;
        gap: 15px;
    }

    .note-card {
        width: calc(50% - 15px); /* Two cards per row */
    }

    .arrow.prev {
        left: -30px;
    }

    .arrow.next {
        right: -30px;
    }
}

@media (max-width: 480px) {
    .note-card {
        width: 100%; /* Single card per row */
    }

    .arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .arrow.prev {
        left: -20px;
    }

    .arrow.next {
        right: -20px;
    }
}
/* Contact Us Section */
.contact-us-section {
    padding: 50px 20px;
    background-color: #000000;
    text-align: center;
}

.contact-us-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-us-container h2 {
    font-size: 2.5em;
    color: #fff8f8;
}

.contact-us-container p {
    font-size: 1.2em;
    color: #eeeaea;
    margin: 20px 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    width: 100%;
    max-width: 500px;
    text-align: left;
}

.form-group label {
    font-size: 1.1em;
    color: #00b7ff;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.submit-btn {
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.submit-btn:active {
    background-color: #003f7f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-us-container h2 {
        font-size: 2em;
    }

    .contact-us-container p {
        font-size: 1.1em;
    }

    .form-group {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form {
        gap: 15px;
    }

    .form-group label {
        font-size: 1em;
    }

    .form-group input, .form-group textarea {
        padding: 10px;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 1em;
    }
}
/* Footer Styles */
.footer {
    background-color: #010101;
    color: #f5f5f5;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-about,
.footer-links,
.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-about h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.5;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #f5f5f5;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social .social-icons a {
    color: #f5f5f5;
    font-size: 1.4em;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social .social-icons a:hover {
    color: #007bff;
}

/* Footer Extra Message */
.footer-extra {
    text-align: center;
    margin: 20px 0;
    font-size: 1.2em;
    font-weight: 500;
    color: #06bafb;
    padding: 10px 0;
    background-color: #000000;
    border-top: 1px solid #333;
    border-bottom: 1px solid #000000;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9em;
}

.footer-bottom .footer-motto {
    margin-top: 5px;
    font-size: 1.1em;
    font-style: italic;
    color: #f5f5f5;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-social {
        margin-bottom: 20px;
    }

    .footer-extra {
        font-size: 1em;
    }
}
