* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    --clr-dark: #000;
    --clr-light: #fff;

    --clr-accent-1: #067565;
    --clr-accent-2: #FBC900;

    --border-width: 0.125rem;
    --heading-ul: 0.25rem;

    --ff: "Montserrat";
}

html {
    height: 100vh;
}

body {
    background-image: url("/assets/images/hero-image-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: var(--ff);
}




.navbar {
    border-radius: 2rem;
    padding: 0.8rem 1.5rem !important;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed !important;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    padding: 0 !important;
    display: flex;
    justify-content: start;
    align-items: center;
}

.nav-logo img {
    width: 3rem;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-items {
    padding: 0 !important;
}

.nav-items ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    line-height: normal;
    font-weight: 600;
}

.nav-items ul li a {
    text-decoration: none;
    color: var(--clr-dark);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-items ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-items ul li a:hover {
    color: var(--clr-accent-1);
}

.nav-items ul li a:hover::after,
.nav-items ul li a.active::after {
    width: 70%;
}

.nav-items ul li a.active {
    color: var(--clr-accent-1);
}

.navbar.scrolled .nav-items ul li a {
    color: #333;
}

.nav-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-icons .menu-button {
    width: 2rem;
    height: auto;
    cursor: pointer;
    display: none;
    filter: invert(0);
}

.btn-get-started {
    background-color: var(--clr-accent-1);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--clr-accent-1);
}

.btn-get-started:hover {
    background-color: transparent;
    color: var(--clr-accent-1) !important;
}

.navbar.scrolled .btn-get-started {
    background-color: var(--clr-accent-1);
    border-color: var(--clr-accent-1);
}

.navbar.scrolled .btn-get-started:hover {
    background-color: transparent;
    color: var(--clr-accent-1) !important;
}

.off_screen_menu {
    /* background-color: var(--clr-primary); */
    z-index: 999;
    position: fixed;
    top: 0;
    right: -110%;


    display: flex;
    justify-content: end;
    padding: 0 !important;
    margin: 0 !important;

    transition: 0.4s ease;
}

.off_screen_menu.active {
    right: 0;
}

.off_screen_menu_contents {
    list-style: none;
    height: 100vh;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    background-color: var(--clr-accent-1);
}

.off_screen_menu_contents li {
    padding: 1rem 1rem 0rem 2rem;
    width: 100%;
}

.off_screen_menu_contents a {
    text-decoration: none;
    color: var(--clr-light);
}

.close_button_holder {
    display: flex;
    justify-content: end;
}

.close_button_holder button {
    background-color: transparent;
    border: none;
}

.close_button img {
    width: 1.5rem;
    height: auto;
}


.hero-content {
    padding: 4.5rem 0rem;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--clr-light);
    width: 60%;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
    margin-bottom: 0.5rem !important;
}

.hero-content p {
    width: 45%;
    margin-bottom: 1.5rem !important;
}

.hero-content a {
    background-color: var(--clr-accent-2);
    color: var(--clr-dark);
    text-decoration: none;
    padding: 0;
    border: var(--border-width) solid #000;
    border-radius: 0.5rem;
    padding: 0.3rem 1.5rem 0.5rem 1.5rem;
}

.hero-content a img {
    width: 1.5rem;
    height: auto;
    padding-bottom: 0.1rem;
}


#about-us {
    background-color: #fff8ec;
    padding: 2rem 0rem;
}

.about-header-area {
    margin-bottom: 3rem;
}

.about-subtitle {
    color: var(--clr-accent-1);
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem !important;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1rem !important;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.about-header-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent-1), var(--clr-accent-2));
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.about-tagline {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto !important;
}

.aboutus-description-1 {
    margin-top: 1rem !important;
    text-align: justify;
    padding: 1rem !important;
}

.aboutus-description-1 p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem !important;
    padding-top: 0 !important;
}

.aboutus-description-1 p:last-child {
    margin-bottom: 0 !important;
}

.aboutus-image-1 {
    margin-top: 2.5rem !important;
    padding: 1rem !important;
}

.aboutus-image-1 img {
    width: 100%;
    object-fit: contain;
    margin: 0 !important;
    border-radius: 0.5rem;
}

.aboutus-image-2 {
    margin-top: 3rem !important;
    padding: 1rem !important;
}

.aboutus-image-2 img {
    width: 100%;
    object-fit: contain;
    margin: 0 !important;
    border-radius: 0.5rem;
}

.aboutus-points {
    margin-top: 3rem !important;
    padding: 1rem !important;
    text-align: justify;
}

.aboutus-points p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem !important;
    font-weight: 500;
}

.custom-li li {
    margin-bottom: 0.5rem !important;
    list-style-image: url('../images/icons8-tick.svg');
}


/* SERVICES SECTION STYLES */
.services-section {
    background-color: #ffffff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.text-accent {
    color: var(--clr-accent-1);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent-1), var(--clr-accent-2));
    border-radius: 2px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-accent-1) 0%, #045a4d 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(6, 117, 101, 0.2);
}

.service-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.card-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(6, 117, 101, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--clr-accent-1);
    transition: all 0.4s ease;
}

.service-card:hover .card-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: rotateY(360deg);
}

.service-card .card-title {
    margin-bottom: 15px !important;
    transition: color 0.4s ease;
}

.service-card:hover .card-title {
    color: #ffffff;
}

.service-card .card-text {
    transition: color 0.4s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card:hover .card-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

.card-arrow {
    margin-top: 25px;
    font-size: 1.2rem;
    color: var(--clr-accent-1);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.service-card:hover .card-arrow {
    color: #ffffff;
    opacity: 1;
    transform: translateX(5px);
}

/* RESPONSIVE SERVICE SECTION */
@media (max-width: 991px) {
    .services-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .service-card {
        padding: 35px 25px;
    }

    .section-header h1 {
        font-size: 2.2rem;
    }
}


#testimonial {
    background-color: #fff;
    padding: 70px 0;
}

/* MODERN TESTIMONIAL HEADER */
.testimonial-header-modern {
    padding: 0 15px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--clr-accent-1), #08a38d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.header-line-custom {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent-1), var(--clr-accent-2));
    border-radius: 2px;
}

.testimonial-desc {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .testimonial-desc {
        font-size: 1rem;
        width: 100% !important;
    }
}

.carousel {
    margin: 3rem 0rem !important;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

.swiper-slide img {
    width: 100%;
    height: fit-content;
}

/* MODERN FAQ SECTION */
.faq-section {
    background-color: #ffffff;
    padding: 40px 0;
}

.accordion-custom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item-modern {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-item-modern:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: var(--clr-accent-1);
}

.accordion-header {
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #ffffff;
}

.accordion-header h5 {
    margin: 0 !important;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.accordion-header.active {
    background: rgba(6, 117, 101, 0.02);
}

.accordion-header.active h5 {
    color: var(--clr-accent-1);
}

.accordion-arrow-wrap {
    width: 34px;
    height: 34px;
    background: rgba(6, 117, 101, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-header.active .accordion-arrow-wrap {
    background: var(--clr-accent-1);
    transform: rotate(180deg);
}

.accordion-arrow-wrap i {
    font-size: 0.85rem;
    color: var(--clr-accent-1);
    transition: color 0.3s ease;
}

.accordion-header.active .accordion-arrow-wrap i {
    color: #ffffff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
}

.content-inner {
    padding-bottom: 18px;
    padding-top: 4px;
    color: #666;
    line-height: 1.7;
    font-size: 0.97rem;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-header h5 {
        font-size: 1.05rem;
    }
}



/* COMPACT CONTACT SECTION STYLES */
.contact-section-compact {
    background-color: #ffffff;
    padding: 50px 0;
}

.header-line-compact {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent-1), var(--clr-accent-2));
    border-radius: 2px;
}

.contact-compact-card, 
.contact-info-compact-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.form-input-compact {
    width: 100%;
    padding: 10px 15px;
    background: #fcfcfc;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input-compact:focus {
    background: #ffffff;
    border-color: var(--clr-accent-1);
    box-shadow: 0 0 0 3px rgba(6, 117, 101, 0.08);
    outline: none;
}

.btn-compact-premium {
    background: linear-gradient(135deg, var(--clr-accent-1) 0%, #045a4d 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 117, 101, 0.15);
}

.btn-compact-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 117, 101, 0.2);
    filter: brightness(1.1);
}

.compact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compact-info-item {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    padding: 10px;
    border-radius: 10px;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.compact-info-item:hover {
    background: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: rgba(6, 117, 101, 0.1);
}

.icon-box-compact {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-text span {
    display: block;
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text h6 {
    margin: 0 !important;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.icon-box-compact.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.icon-box-compact.instagram { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.icon-box-compact.facebook { background: rgba(24, 119, 242, 0.1); color: #1877F2; }
.icon-box-compact.youtube { background: rgba(255, 0, 0, 0.1); color: #FF0000; }

@media (max-width: 768px) {
    .contact-section-compact { padding: 40px 0; }
}


/* MODERN FOOTER STYLES */
.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    color: #e0e0e0;
    padding-top: 60px;
    position: relative;
    font-family: var(--ff);
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent-1), var(--clr-accent-2));
}

.footer-top {
    padding-bottom: 50px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 45px;
    margin-right: 12px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo:hover .footer-logo-img {
    transform: rotate(10deg) scale(1.1);
}

.footer-logo span {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.footer-desc {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 30px !important;
    font-size: 0.95rem;
    max-width: 90%;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--clr-accent-1);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(6, 117, 101, 0.3);
    border-color: var(--clr-accent-1);
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px !important;
    position: relative;
    padding-bottom: 10px !important;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--clr-accent-1);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px !important;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-accent-1);
    padding-left: 8px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px !important;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 24px;
    color: var(--clr-accent-1);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    color: var(--clr-accent-2);
}

.contact-text p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 !important;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-item:hover .contact-text p {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-size: 0.9rem;
    color: #808080;
}

.accent-text {
    color: var(--clr-accent-1);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: #808080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.separator {
    color: #444;
}

/* Back to Top */
.button-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--clr-accent-1);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.button-to-top:hover {
    background: var(--clr-accent-2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(251, 201, 0, 0.4);
}

.button-to-top i {
    font-size: 1.2rem;
}

/* RESPONSIVE ADJUSTMENTS FOR FOOTER */
@media (max-width: 991px) {
    .modern-footer {
        padding-top: 60px;
    }

    .footer-brand-col {
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-wrap {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .modern-footer {
        padding-top: 40px;
    }
    .footer-top {
        padding-bottom: 20px;
    }
    .modern-footer .row.gy-5 {
        row-gap: 1.5rem !important; /* reduce gap between columns */
    }
    .footer-title {
        margin-bottom: 15px !important;
    }
    .footer-desc {
        margin-bottom: 20px !important;
    }
    .contact-item {
        margin-bottom: 10px !important;
    }
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    .footer-bottom {
        text-align: center;
        padding: 15px 0;
    }
}






/* MEDIA QUERIES */


/* ==========================================
   GLOBAL RESPONSIVE UTILITIES & BASE STYLES
   ========================================== */
html, body {
    overflow-x: clip; /* Modern CSS standard to hide horizontal overflow while preserving sticky position */
    width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Offset for fixed header navigation */
}

/* ==========================================
   MOBILE VIEWS (max-width: 767.98px)
   ========================================== */
@media (max-width: 767.98px) {
    body {
        background-size: cover;
        background-position: center top;
        background-attachment: scroll; /* Scroll bg is much better for mobile GPU performance */
    }

    /* Fixed Navbar Mobile adjustments */
    .navbar {
        width: 92% !important;
        top: 12px !important;
        padding: 0.5rem 1rem !important;
        border-radius: 1.25rem !important;
    }
    
    .navbar.scrolled {
        width: 100% !important;
        top: 0 !important;
        border-radius: 0 !important;
        padding: 0.6rem 1rem !important;
    }

    .nav-logo img {
        width: 2.5rem !important;
    }

    /* Hamburger Button visibility */
    .menu-button {
        filter: invert(1); /* High contrast white icon on transparent/dark backgrounds */
        width: 1.8rem !important;
        display: block !important;
    }

    .navbar.scrolled .menu-button {
        filter: invert(0); /* Black icon on white background scrolled navbar */
    }

    /* Hero Section Mobile */
    .hero-content {
        padding: 6.5rem 0 3rem 0 !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2.8rem !important;
        width: 100% !important;
        line-height: 1.2;
        margin-bottom: 0.75rem !important;
    }

    .hero-content p {
        width: 100% !important;
        font-size: 0.95rem !important;
        line-height: 1.6;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-content a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0.5rem 1.5rem !important;
        font-size: 0.95rem;
    }

    .hero-content a img {
        width: 1.2rem !important;
    }

    /* About Us Mobile */
    #about-us {
        padding: 2.5rem 0 !important;
    }

    .about-title {
        font-size: 2.2rem !important;
        letter-spacing: -0.5px;
    }

    .about-tagline {
        font-size: 1rem !important;
        width: 100% !important;
    }

    .aboutus-description-1 {
        margin-top: 0.5rem !important;
        padding: 0 0.5rem !important;
        text-align: center !important;
    }

    .aboutus-description-1 p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }

    .aboutus-image-1, 
    .aboutus-image-2 {
        margin-top: 1.5rem !important;
        padding: 0 0.5rem !important;
    }

    .aboutus-points {
        margin-top: 1.5rem !important;
        padding: 0 0.5rem !important;
        text-align: left !important;
    }

    .aboutus-points p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    .custom-li {
        padding-left: 1.2rem !important;
    }

    .custom-li li {
        font-size: 0.95rem !important;
        line-height: 1.6;
        margin-bottom: 0.75rem !important;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 2.5rem 0 !important;
    }

    .services-section .section-header h1 {
        font-size: 2.2rem !important;
    }

    .service-card {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }

    /* Testimonials Mobile */
    #testimonial {
        padding: 2.5rem 0 !important;
    }

    #testimonial .display-4 {
        font-size: 2.2rem !important;
    }

    .testimonial-desc {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .carousel {
        margin: 1.5rem 0 !important;
    }

    .swiper-slide {
        padding: 5px;
    }

    .swiper-slide img {
        border-radius: 12px;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 2.5rem 0 !important;
    }

    .faq-section .display-5 {
        font-size: 2.2rem !important;
    }

    .accordion-header {
        padding: 16px 20px !important;
    }

    .accordion-header h5 {
        font-size: 0.98rem !important;
    }

    .accordion-arrow-wrap {
        width: 30px;
        height: 30px;
    }

    .content-inner {
        font-size: 0.9rem !important;
        line-height: 1.6;
        padding-bottom: 20px !important;
    }

    /* Contact Section Mobile */
    .contact-section-compact {
        padding: 2rem 0 !important;
    }

    .contact-section-compact .display-6 {
        font-size: 2rem !important;
    }

    .contact-compact-card, 
    .contact-info-compact-card {
        padding: 20px !important;
        border-radius: 12px !important;
    }
}


/* Privacy Policy Redesign */
.privacy-hero {
    background: linear-gradient(135deg, rgba(6, 117, 101, 0.95), rgba(4, 90, 77, 0.9)), url('/assets/images/hero-image-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent-1), var(--clr-accent-2));
}

.privacy-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.privacy-hero p {
    font-size: 1.05rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto !important;
    font-weight: 400;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 5rem 0 1.5rem;
    }
    .privacy-hero h1 {
        font-size: 2.2rem;
    }
    .privacy-hero p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

.privacy-content-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.policy-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border: 1px solid #f0f0f0;
}

.policy-card h3 {
    color: var(--clr-accent-1);
    font-weight: 700;
    margin-bottom: 1rem !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-card h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--clr-accent-2);
    border-radius: 2px;
}

.policy-card p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem !important;
}

.policy-card ul {
    list-style: none;
    padding-left: 0;
}

.policy-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.policy-card ul li:last-child {
    border-bottom: none;
}

.policy-card ul li::before {
    content: '✓';
    color: var(--clr-accent-1);
    font-weight: bold;
}

.policy-sidebar {
    position: sticky;
    top: 100px;
}

.policy-nav {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.policy-nav h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--clr-accent-2);
}

.policy-nav ul {
    list-style: none;
    padding: 0;
}

.policy-nav ul li a {
    display: block;
    padding: 0.6rem 0;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.policy-nav ul li a:hover {
    color: var(--clr-accent-1);
    padding-left: 5px;
}

/* ==========================================
   TABLET VIEWS (min-width: 768px) and (max-width: 1024px)
   ========================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    body {
        background-size: cover;
    }

    /* Fixed Navbar Tablet */
    .navbar {
        width: 94% !important;
        top: 15px !important;
        padding: 0.6rem 1.2rem !important;
    }

    .navbar.scrolled {
        width: 100% !important;
        top: 0 !important;
        border-radius: 0 !important;
    }

    /* Hero Section Tablet */
    .hero-content {
        padding: 8rem 0 4rem 0 !important;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 4.5rem !important;
        width: 80% !important;
    }

    .hero-content p {
        width: 75% !important;
        font-size: 1.1rem;
    }

    /* About Us Tablet */
    .about-title {
        font-size: 3rem !important;
    }

    .aboutus-description-1 {
        margin-top: 1rem !important;
    }

    .aboutus-image-1,
    .aboutus-image-2 {
        margin-top: 1.5rem !important;
    }

    .aboutus-points {
        margin-top: 1.5rem !important;
    }

    /* Testimonials Tablet */
    .testimonial-desc {
        width: 90% !important;
        font-size: 1.05rem;
    }

    /* Contact Info Tablet styling */
    .whatsapp,
    .instagram,
    .facebook {
        padding: 0rem !important;
    }

    .whatsapp h5 {
        font-size: 1.1rem !important;
        font-weight: 700;
    }
}

/* ==========================================
   DESKTOP & LARGE SCREENS (min-width: 1024.02px)
   ========================================== */
@media (min-width: 1024.02px) {
    body {
        background-size: cover;
    }

    .hero-content p {
        width: 50% !important;
    }
}

/* ==========================================
   OFF-SCREEN MOBILE NAVIGATION SIDEBAR
   ========================================== */
.off_screen_menu {
    position: fixed;
    top: 0;
    right: -320px; /* Slide completely off screen */
    width: 300px; /* Premium fixed-width drawer instead of 100vw */
    height: 100vh;
    background: linear-gradient(135deg, var(--clr-accent-1) 0%, #045a4d 100%);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 9999; /* Ensure it floats over everything */
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.off_screen_menu.active {
    right: 0;
}

.off_screen_menu_contents {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.close_button_holder {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.close_button_holder button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close_button_holder button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.close_button_holder img {
    width: 1.25rem;
    height: auto;
}

.off_screen_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.off_screen_menu ul li {
    padding: 0;
    margin: 0;
    width: 100%;
}

.off_screen_menu ul li a {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none !important;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.off_screen_menu ul li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-accent-2);
    padding-left: 1.75rem;
}

.off_screen_menu ul li a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--clr-accent-2);
    font-weight: 700;
}

/* ==========================================
   PRIVACY POLICY RESPONSIVENESS TWEAKS
   ========================================== */
@media (max-width: 991.98px) {
    .privacy-hero h1 {
        font-size: 2.5rem !important;
    }

    .policy-sidebar {
        display: none !important; /* Hide sticky sidebar on tablet/mobile as columns stack */
    }

    .policy-card {
        padding: 1.5rem !important;
        border-radius: 1rem !important;
    }

    .policy-card h3 {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 575.98px) {
    .privacy-hero {
        padding: 6.5rem 0 3rem !important;
    }

    .privacy-hero h1 {
        font-size: 2rem !important;
    }

    .privacy-hero p {
        font-size: 0.95rem !important;
    }

    .policy-card {
        padding: 1.25rem 1rem !important;
        margin-bottom: 1rem !important;
    }

    .policy-card h3 {
        font-size: 1.15rem !important;
    }

    .policy-card p, 
    .policy-card ul li {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }
}