/* -------------------------------- 
General Styles
-------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    font-size: larger;
    margin: 0;
    padding: 0;
    background-color: lch(96.63% 11.5 177.83);
    overflow-x: hidden;
}

/* --------------------------------
Header
-------------------------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: hsl(165, 94%, 87%);
    color: #000;
    padding: 0.5rem 2rem;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Lower than hamburger and menu */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: auto;
    height: 90px;
    padding-left: 0px;
    padding-top: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
}

nav .cta-button {
    background: hsl(175, 100%, 22%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

nav .cta-button:hover {
    background: hwb(170 0% 69%);
    color: hsl(170, 85%, 64%);
    transform: translateY(-2px);
}

.cta-hero-button-secondary {
    background: hsl(175, 100%, 22%);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.cta-hero-button-secondary:hover {
    background: hwb(170 0% 69%);
    color: hsl(170, 85%, 64%);
    transform: translateY(-2px);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 9999; /* Below hamburger and menu */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    color: #1abc9c;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.modal-content:hover iframe {
    pointer-events: auto;
}

.cta-hero-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    margin-top: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

.cta-button {
    background: hsl(175, 100%, 22%);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-right: 40px;
}

.cta-button:hover {
    background: hwb(170 0% 69%);
    color: hsl(170, 85%, 64%);
    transform: translateY(-2px);
}

.meet-us {
    background: #fafafa8f;
    color: hsl(180, 18%, 97%);
    border: none;
    padding: 7px 15px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 500;
    display: inline-block;
    right: -600px;
    margin-bottom: 20px;
}

.meet-us:hover {
    background: hwb(170 0% 69%);
    color: hsl(170, 85%, 64%);
    transform: translateY(-2px);
}

/* --------------------------------
Hero Section
-------------------------------- */
.hero {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    background: url('images/background.jpg') no-repeat center center/cover;
    color: white;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 80px; /* Default for non-desktop */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* --------------------------------
Powered By Section
-------------------------------- */
.powered-by {
    text-align: center;
    background: #fff;
    padding: 5px 0 15px;
}

.powered-by h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: rgb(0, 17, 14);
}

.powered-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.powered-logos img {
    height: 25px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.powered-logos img:hover {
    transform: scale(1.1);
}

/* --------------------------------
About Us
-------------------------------- */
.About {
    text-align: center;
    padding: 1px 10px;
    background: url(images/About4.jpg) no-repeat center 80% / cover;
    position: relative;
    color: white;
    overflow: hidden;
}

.About::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.About > * {
    position: relative;
    z-index: 2;
}

.about-hero {
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.about-hero h2,
.about-hero p {
    position: relative;
    z-index: 1;
}

/* --------------------------------
Services Section
-------------------------------- */
.services, .server {
    text-align: center;
    padding: 20px 5px;
    color: rgb(3, 109, 109);
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.card {
    background: hsla(0, 0%, 100%, 0);
    border-radius: 10px;
    box-shadow: 0 4px 15px #00000000;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.service-box {
    padding: 20px;
    text-align: center;
    background: rgb(3, 109, 109);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    height: 88%; /* Ensures service-box matches card height */
}

.card .more-info {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    background: #00e0b2;
    color: #003333;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

#bookshop {
    padding: 60px 20px;
    background-image: url('images/Bookshop.png');
    background-size: cover;
    background-position: 100%;
    background-repeat: no-repeat;
    color: #00412d;
}

#bookshop .container {
    text-align: center;
    background-color: #ffffffb0;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

#bookshop h2 {
    font-size: 2em;
    color: #00412d;
}

#bookshop p {
    padding-top: 0px;
    padding-bottom: 30px;
    max-width: 700px;
}

.books {
    margin-top: 20px;
}

.bookshop-btn {
    padding: 12px 30px;
    background-color: hsl(175, 100%, 13%);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    transform: translateY(-2px);
}

.bookshop-btn:hover {
    background-color: hwb(165 1% 63%);
    transform: translateY(-2px);
}

/* --------------------------------
Assistant Section
-------------------------------- */
.assistant {
    text-align: center;
    padding: 10px;
    background: #fff;
    color: #000;
    margin-bottom: 20px;
}

.Reach {
    color: hsl(0, 0%, 0%);
    margin-top: -20px;
    font-family: Arial, Helvetica, sans-serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 15px;
}

.social-icons a {
    font-size: 28px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons .call { color: hwb(175 0% 81%); }
.social-icons .whatsapp { color: #25D366; }
.social-icons .tiktok { color: hsl(345, 100%, 2%); }
.social-icons .email { color: hsl(175, 100%, 22%); }

/* --------------------------------
New Contact Section
-------------------------------- */
.Contact {
    text-align: center;
    padding: 40px 0;
    background: #222;
    color: white;
    margin-top: -20px;
}

.Contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info, .tools, .social-media {
    flex: 1 1 300px;
    min-width: 250px;
    text-align: left;
}

.contact-info h3, .tools h3, .social-media h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: hsl(165, 94%, 87%);
}

.contact-info p {
    font-size: 1rem;
    margin: 8px 0;
    color: white;
    margin-top: 15px; /* Matches tools section spacing */
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(170, 85%, 64%);
}

.contact-info {
    margin-left: 25px; /* Added to shift Contact Us and its details to the right */
}

.blog-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: hsl(175, 100%, 13%);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
}

.blog-btn:hover {
    background-color: hwb(165 1% 63%);
    transform: translateY(-2px);
}

.tools ul {
    list-style: none;
    padding: 0;
    margin-top: 15px; /* Consistent spacing before list */
}

.tools li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: white;
    position: relative;
    cursor: pointer;
}

.tools li:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 0;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns content to the left */
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px; /* Consistent spacing matching other columns */
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: hsl(170, 85%, 64%);
    transform: scale(1.2);
}

/* Share Buttons */
.share-buttons {
    margin-top: 0; /* No extra space above Share Our Blog */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Matches .social-media left alignment */
    width: 100%; /* Ensures it takes full width */
    padding: 0; /* Removes unwanted padding */
    margin-top: 12px;
}

.share-static {
    display: inline-block; /* Matches .blog-btn display */
    padding: 6px 16px; /* Matches .blog-btn padding */
    background-color: hsl(175, 100%, 13%); /* Matches .blog-btn background */
    color: white; /* Matches .blog-btn text color */
    border-radius: 5px; /* Matches .blog-btn border-radius */
    text-decoration: none; /* Matches .blog-btn */
    font-weight: bold; /* Matches .blog-btn */
    font-size: 0.9rem; /* Matches .blog-btn */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Matches .blog-btn transition */
    cursor: default; /* Prevents pointer cursor */
    pointer-events: none; /* Disables click events */
}

.share-static:hover {
    background-color: hwb(165 1% 63%); /* Matches .blog-btn hover background */
    transform: translateY(-2px); /* Matches .blog-btn hover transform */
    color: hsl(170, 85%, 64%); /* Matches .blog-btn hover text color */
}

.share-icons {
    display: flex;
    gap: 15px; /* Matches .social-icons gap */
    align-items: center;
    margin-top: 10px; /* Adds slight space below the static text */
}

.share-icons a.share-icon {
    color: white; /* Matches .social-icons a */
    font-size: 18px; /* Matches .social-icons a */
    transition: color 0.3s ease, transform 0.3s ease; /* Matches .social-icons hover */
    text-decoration: none;
}

.share-icons a.share-icon:hover {
    color: hsl(170, 85%, 64%); /* Matches .social-icons hover */
    transform: scale(1.2); /* Matches .social-icons hover */
}

/* Platform-specific colors */
.share-icons a.facebook { color: #1877f2; }
.share-icons a.instagram { color: #e1306c; }
.share-icons a.twitter { color: #1da1f2; }
.share-icons a.tiktok { color: #000000; }
.share-icons a.telegram { color: #0088cc; }
.share-icons a.whatsapp { color: #25D366; } /* WhatsApp brand color */

.share-icons a.facebook:hover,
.share-icons a.instagram:hover,
.share-icons a.twitter:hover,
.share-icons a.tiktok:hover,
.share-icons a.telegram:hover,
.share-icons a.whatsapp:hover {
    color: hsl(170, 85%, 64%); /* Consistent hover color */
}

/* Ensure .social-media stacks vertically */
.social-media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 0; /* Removes extra space */
}

/* --------------------------------
Responsive Design
-------------------------------- */
@media (max-width: 768px) {
    .share-buttons {
        align-items: center; /* Centers on mobile */
    }

    .share-static {
        font-size: 0.85rem; /* Matches .blog-btn adjustment */
        padding: 6px 15px; /* Matches .blog-btn on mobile */
    }

    .share-icons {
        justify-content: center; /* Centers icons */
        gap: 10px; /* Matches mobile gap */
    }

    .share-icons a.share-icon {
        font-size: 16px; /* Matches .social-icons */
    }
}

@media (max-width: 480px) {
    .share-static {
        font-size: 0.85rem; /* Matches .blog-btn adjustment */
        padding: 6px 15px; /* Matches .blog-btn on mobile */
    }

    .share-icons a.share-icon {
        font-size: 14px; /* Matches .social-icons adjustment */
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-info, .tools, .social-media {
        text-align: center;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .tools li:hover::after {
        white-space: normal;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .Contact h2 {
        font-size: 1.4rem;
    }

    .contact-info h3, .tools h3, .social-media h3 {
        font-size: 1.2rem;
    }

    .contact-info p, .tools li {
        font-size: 0.85rem;
    }

    .social-icons a {
        font-size: 16px;
    }

    .blog-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    body {
        font-size: 1rem;
    }

    .hero {
        padding-top: 90px; /* Slightly more than header height */
        background-position: center center;
        min-height: 50vh;
        margin-top: 70px; /* Matches header height for mobile */
    }

    .hero-content {
        max-width: 100%;
        padding: 10px;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .logo-image {
        height: 50px;
    }

    .modal {
        z-index: 1001;
    }
}

/* --------------------------------
Footer
-------------------------------- */
footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: white;
}

/* --------------------------------
Dropdown Menu
-------------------------------- */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(88, 86, 86);
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.76);
    border-radius: 5px;
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: small;
    cursor: pointer;
}

.dropdown-menu li a:hover {
    background-color: hsla(177, 100%, 78%, 0.418);
}

.dropdown .dropdown-menu.show {
    display: block;
}

/* --------------------------------
More Info Buttons
-------------------------------- */
.more-info {
    background: #2cfadfcc;
    color: #030000;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: auto;
    margin-left: 60px;
    margin-right: 60px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.more-info:hover {
    background: lch(59.6% 35.37 196.39);
    color: hwb(0 100% 0%);
}

/* --------------------------------
Partners
-------------------------------- */
.partners img {
    width: 100px;
    margin: 10px;
}

/* --------------------------------
Modal
-------------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999; /* Below hamburger and menu */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.5);
    position: relative;
    animation: slideInScale 0.4s ease forwards;
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover {
    color: hsl(175, 100%, 22%);
}

/* --------------------------------
Get Started Form
-------------------------------- */
#get-started-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

#get-started-form h2 {
    text-align: center;
    margin-bottom: 10px;
    color: black;
}

#feedbackModal .form-group {
    margin-bottom: 15px;
}

#feedbackModal input,
#feedbackModal textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* --------------------------------
Hamburger Icon
-------------------------------- */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 34px;
    padding: 10px;
    top: 25%;
    color: lch(35.36% 25.95 184.93);
    z-index: 1002; /* Highest z-index for hamburger */
    position: relative; /* Ensure it respects z-index */
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 20px;
    right: -300px;
    width: 40vw; /* Set to 40% width */
    height: 100%;
    background-color: lch(96.63% 11.5 177.83);
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    z-index: 1001; /* Above header but below hamburger */
    padding: 20px;
    color: hsl(173, 100%, 11%);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu.active .hamburger {
    display: none !important; /* Adopting A's invisibility behavior when menu is active */
}

.mobile-menu:not(.active) .hamburger {
    display: block !important; /* Ensure visibility when menu is closed */
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-top: 0.7rem;
}

.mobile-menu a {
    text-decoration: none;
    color: #333333;
    font-size: 18px;
}

.mobile-menu .dropdown-menu {
    display: none;
    list-style: none;
}

.mobile-menu .dropdown.open .dropdown-menu {
    display: block;
}

.mobile-menu .cta-button {
    background-color: #00796b;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    display: block;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    width: fit-content;
    cursor: pointer;
    box-shadow: 0px 0 8px #023f35cc;
}

.cta-button {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}

/* --------------------------------
Responsive Design (Consolidated)
-------------------------------- */
@media (max-width: 1024px) {
    header {
        padding: 0.5rem 1rem;
        height: 80px;
        flex-direction: row;
        align-items: center;
        min-height: 80px;
        z-index: 1000;
    }

    .header-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 100%;
    }

    nav ul {
        display: none !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 1rem;
        padding-right: 0;
    }

    nav ul li {
        margin: 0 0.5rem;
    }

    nav a {
        font-size: 0.95rem;
        padding: 0.5rem;
    }

    .hamburger {
        display: block !important;
        font-size: 34px;
        position: absolute;
        top: 25%;
        right: 18px;
        z-index: 1002;
        padding-top: 10px;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.2em;
        cursor: pointer;
        z-index: 1002;
    }

    .mobile-menu {
        top: 0;
        right: -100%;
        padding-top: 70px;
        z-index: 1003;
    }

    .mobile-menu.active {
        right: 0 !important;
    }

    .mobile-menu.active .hamburger {
        display: none !important;
    }

    .mobile-menu:not(.active) .hamburger {
        display: block !important;
    }

    .logo-image {
        height: 70px;
        padding-top: 5px;
        padding-right: 40px;
    }

    .hero {
        margin-top: 80px; /* Matches header height */
        padding: 40px 15px; /* Reduced top padding */
        background-position: center center;
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.05rem;
        padding: 0 1rem;
    }

    .modal-content {
        width: 90%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem;
        height: 70px;
        min-height: 70px;
    }

    .hamburger {
        display: block;
        font-size: 34px; /* Slightly increased from 30px to better match logo's 70px height visually */
        position: absolute;
        top: 50%; /* Centers hamburger vertically relative to header */
        right: 18px;
        transform: translateY(-50%); /* Ensures perfect vertical alignment with logo */
        padding: 0; /* Removes padding to align precisely */
        line-height: 70px; /* Matches logo height for visual alignment */
        color: lch(35.36% 25.95 184.93);
        z-index: 1002;
    }

    .header-logo {
        flex: 1 1 100%;
        justify-content: flex-start;
        margin-bottom: 5px;
    }

    .logo-image {
        height: 65px;
        padding-top: 5px;
        padding-right: 40px;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    nav ul {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 70px; /* Matches header height for mobile */
        padding: 20px 15px; /* Reduced top padding */
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 15px;
    }

    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
        max-width: 350px;
        height: auto;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
        width: 90%;
        margin-bottom: 1.5rem;
    }

    .powered-logos {
        flex-direction: column;
        gap: 20px;
    }

    .about-hero {
        padding: 3rem 1rem;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 20px;
    }

    .testimonial-img {
        width: 80px;
        height: 80px;
    }

    .Testimonial-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 10px;
    }

    .more-info {
        margin-left: 20px;
        margin-right: 20px;
        padding: 8px 12px;
    }

    .modal-content {
        margin: 20% auto;
        padding: 20px;
    }

    .Testimony {
        padding: 0.75rem;
    }

    .comments-section {
        flex-direction: column;
        align-items: center;
        max-width: 30rem;
        gap: 0.5rem;
    }

    #comment-form {
        max-width: 100%;
        padding: 0.4rem;
    }

    #comment-name,
    #comment-text {
        max-width: 100%;
        font-size: 0.65rem;
    }

    .comment-submit {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }

    #comments-list {
        max-width: 100%;
    }

    .meet-us {
        right: -110px;
        bottom: 15px;
        font-size: 0.8em;
        padding: 8px 6px;
        margin-top: 10px;
        margin-bottom: -6px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem;
        height: 70px;
    }

    .hamburger {
        font-size: 24px; /* Smaller for small screens */
        top: 50%; /* Center vertically */
        right: 18px; /* Consistent right alignment */
        transform: translateY(-50%); /* Vertical centering */
        padding: 0; /* Remove padding */
    }

    .logo-image {
        height: 65px;
        padding-top: 5px;
    }

    nav ul {
        gap: 0.3rem;
    }

    nav a {
        font-size: 0.85rem;
        padding: 0.3rem;
    }

    .hero {
        margin-top: 70px; /* Matches header height for mobile */
        padding: 15px 10px; /* Reduced padding */
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 1.4rem; /* Matches original */
    }

    .hero p {
        font-size: 0.85rem; /* Matches original */
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .section p, .section ul {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonial-img {
        width: 60px;
        height: 60px;
    }

    .partners img {
        width: 80px;
    }

    .Testimony {
        padding: 0.5rem;
    }

    .Testimonial-wrapper {
        width: 100%;
    }

    .comments-section {
        max-width: 25rem;
    }

    .comments-section h2 {
        font-size: 1.25rem;
    }

    #comment-name,
    #comment-text {
        font-size: 0.6rem;
    }

    .comment-submit {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }

    .comment .comment-name {
        font-size: 0.7rem;
    }

    .comment .comment-text {
        font-size: 0.65rem;
    }
}

/* --------------------------------
Additional Styles
-------------------------------- */
.arrow {
    font-size: 0.75rem;
    margin-left: 5px;
}

.close-feedback-button,
.close-button,
.close-menu {
    cursor: pointer;
}

.desktop-nav {
    display: flex;
}

@media (min-width: 1025px) {
    .hamburger, .mobile-menu {
        display: none !important;
    }
    .hero {
        margin-top: 70px; /* Matches header height for desktop */
    }
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: -1px 0;
}

.mobile-social-icons a {
    color: hsl(162, 100%, 7%);
    font-size: 20px;
    transition: color 0.3s ease;
}

.mobile-social-icons a:hover {
    color: #1abc9c;
}

.follow-us {
    display: flex;
    justify-content: center;
    color: hsl(162, 100%, 7%);
    font-size: 17px;
    margin-top: 40px;
}

.hero-content,
.about-hero,
.service-box {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a li {
    text-decoration: none;
}

.tools a li {
    text-decoration: none;
}

a {
    text-decoration: none;
}