/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Poppins:wght@300;500;600;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'sans-serif';
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    transition: 0.3s ease;
}

/* Prevent Horizontal Overflow */
html, body {
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
}

body {
    background-color: #151515;
}

.container {
    width: 100%;
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5vw 2vw;
    position: fixed;
    width: 100%;
    /* background-color: rgba(21, 21, 21, 0.9); */
    z-index: 1000;
    /* box-shadow: 0px 1px 5px rgba(191, 186, 186, 0.2); */
}

.logo {
    display: flex;
    align-items: center;
    gap: 1vw;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    margin-right: 0.5vw;
    width: 4vw;
    height: 8vh;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
    font-weight: 900;
    font-family: 'Play', sans-serif;
}

.menu ul {
    background-color: rgba(0, 0, 0, 0.21);
    padding: 1vw 1.5vw;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 2vw;
    box-shadow: 0px 1px 5px rgb(191, 186, 186);
    border-color: #000000;
    transition: all 0.3s ease;
    margin-right: 30vw;
}

.menu li {
    font-size: clamp(0.9rem, 1.02vw + 0.1rem, 1.2rem);
    font-weight: 500;
    cursor: pointer;
}

.menu li a {
    transition: all 0.3s ease;
}

.menu li a:hover {
    padding: 0.4vw 0.8vw;
    background-color: #ffffff;
    border-radius: 20px;
    color: #000000;
    font-weight: 800;
}

.hamburger-menu {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ffffff;
    z-index: 1001;
    &:hover{
      transform: scale(1.2);
      transition: 0.3s;

    }
}

/* Mobile Navigation Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
    display: flex;
}

.mobile-menu ul {
    flex-direction: column;
    gap: 50px;
    background: none;
    box-shadow: none;
    padding: 0;
}

.mobile-menu li a {
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 0;
}

.mobile-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin: 10px;
    transform: scale(20);
    transition: 0.3s;

}

/* Close button for mobile menu */
.close-btn {
    position: absolute;
    top: 150px;
    right: 20px;
    font-size: 2.5rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 1002;
    &:hover{
      transform: scale(1.2);
      transition: 0.3s;

    }
}

/* Home Section */
#home {
    width: 100%;
    min-height: 100vh;
    background-color: #151515;
  }
  
  #home .content {
    padding: 0vw 6vw;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
}

#home .slap1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3vw;
    padding: 5vh 0;
}

#home .slap1 .text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

#home .slap1 .text h1 {
    font-family: 'sans-sarif';
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 600;
    line-height: 1.1;
}

#home .slap1 .text p {
    font-family: 'sans-serif';
    font-size: clamp(1rem, 2vw, 1.8rem);
    margin-top: 1rem;
    line-height: 1.5;
}

#home .slap1 .image {
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 40vh, 500px);
    background-image: url("https://assets.onecompiler.app/43mud54jn/43mud3x7q/E2.png");
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#home .slap1 .image img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

#home .text2 {
    display: flex;
    gap: 1rem;
    padding-top: 5vh;
    margin-top: auto;
}

#home .text2 a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

#home .text2:hover i {
    padding-bottom: 0;
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

#home .text2:hover p {
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

#home .text2 p {
    font-family: 'sans-serif';
    font-size: clamp(1rem, 1.5vw, 1.5rem);
}

#home .text2 i {
    padding-top: 0.5rem;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* Services Section */
#services {
    width: 100%;
    min-height: 100vh;
    background-color: #151515;
    padding: 5vh 0;
}

#services .upper {
    padding: 5vh 5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3vw;
}

#services .upper .text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

#services .upper .text h1 {
    font-family: 'sans-serif';
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: bold;
    line-height: 1.1;
}

#services .upper .text p {
    font-family: 'sans-serif';
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: normal;
    margin-top: 1rem;
}

#services .upper .imag {
    flex-shrink: 0;
    width: clamp(250px, 40vw, 500px);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#services .upper .imag img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

#services .lower {
    padding: 2vh 4vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
    margin-top: 5vh;
}

#services .vl {
    padding-right: 1vw;
    border-left: 0.1rem solid rgb(255, 255, 255);
    height: 100%;
    margin-right: 1vw;
}

/* Individual service items */
#services .st, #services .rd, #services .th, #services .tth {
    padding: 1.5vw;
    width: 20%;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    flex-direction: row;
    overflow: hidden;
    position: relative;
}

/* Base image style for all service items */
#services .st img, #services .nd img, #services .rd img, #services .th img, #services .tth img {
    width: 0;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    border-radius: 10px;
}

/* Base paragraph style for all service items */
#services .st p, #services .nd p, #services .rd p, #services .th p, #services .tth p {
    font-family: 'sans-serif';
    font-size: clamp(0.9rem, 1.8vw, 1.5rem);
    flex-grow: 1;
    z-index: 1;
    transition: font-size 0.3s ease, opacity 0.3s ease;
}

/* Hover effects for all service items */
#services .st:hover, #services .nd:hover, #services .rd:hover, #services .th:hover, #services .tth:hover {
    transform: translateY(-10px) scale(1.05);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#services .st:hover p, #services .nd:hover p, #services .rd:hover p, #services .th:hover p, #services .tth:hover p {
    font-size: 0;
    opacity: 0;
    z-index: 0;
}

#services .st:hover img, #services .nd:hover img, #services .rd:hover img, #services .th:hover img, #services .tth:hover img {
    width: 100%;
    opacity: 1;
}

/* About Section */
#about {
    width: 100%;
    min-height: 100vh;
    background-color: #151515;
    display: flex;
    align-items: center;
    padding: 7vh 4vw;
}

#about .abopic {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .abopic .aboimg {
    padding: 2vw;
}

#about .abopic .aboimg img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

#about .abotext {
    width: 60%;
    height: 100%;
    padding: 0vh 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#about .abotext .up {
    padding-top: 5vh;
    height: 50%;
}

#about .abotext .up h1 {
    margin-bottom: 0.5vw;
    font-family: 'sans-serif';
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
}

#about .abotext .up h2 {
    padding-left: 0.5vw;
    font-family: 'sans-serif';
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    line-height: 1.3;
}

#about .abotext .bu {
    padding-top: 3vh;
    height: 50%;
}

#about .abotext .bu hr {
    width: 95%;
    height: 1px;
    background-color: white;
    border: none;
    margin: 2vw auto;
}

#about .abotext .bu h1 {
    margin-bottom: 1.5vw;
    font-family: 'sans-serif';
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
    line-height: 1.4;
}

#about .abotext .bu h2 {
    font-family: 'sans-serif';
    font-size: clamp(1rem, 2vw, 2rem);
    line-height: 1.5;
}

/* Reviews Section */
#reviews {
    width: 100%;
    min-height: 100vh;
    background-color: #151515;
    padding-top: 100px; /* Space for fixed header */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    align-items: center;
    justify-content: center;
    padding: 5vh 4vw; /* General padding */
}

#reviews .left {
    width: 50%;
    /* height: 100vh; Removed fixed height */
    min-height: 400px; /* Minimum height for left content */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#reviews .left .upp {
    /* height: 38%; Removed fixed height */
    margin: 0vh 5vw;
    padding-top: 8vh;
}

#reviews .left .upp h1 {
    font-family: 'sans-serif';
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
}

#reviews .left .loww {
    /* height: 60%; Removed fixed height */
    margin: 0vh 5vw;
    padding-top: 3vh;
}

#reviews .left .loww .te h1 {
    font-family: 'sans-serif';
    font-size: clamp(1.5rem, 3vw, 3rem);
    line-height: 1.3;
}

#reviews .left .loww .tex h1 {
    padding: 3vh 1vw;
    font-family: 'sans-serif';
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    line-height: 1.5;
}

#reviews .right {
    width: 50%;
    /* height: 100vh; Removed fixed height */
    min-height: 400px; /* Minimum height for right content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2vh 2vw;
}

#reviews .right .rtext h1 {
    padding: 5vh 1vw;
    font-family: 'sans-serif';
    font-size: clamp(1.2rem, 2.2vw, 2.2rem);
    text-align: center;
    margin-bottom: 2vh;
}

/* Container for the content */
#reviews .rpic {
    margin-left: auto;
    margin-right: auto;
    background-color: #151515;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    max-width: 90rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* Scrollable Picture Container */
.scrollablecontainer {
    display: flex;
    overflow-x: auto;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #f9fafb00;
    border: 1px solid #e5e7eb00;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollablecontainer::-webkit-scrollbar {
    display: none;
}

/* Individual Image Wrapper */
.image-wrapper {
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    height: 90%;
    background-color: #e5e7eb00;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

/* Spacing between images */
.image-wrapper:not(:last-child) {
    margin-right: 1rem;
}

/* Hover effect for images */
.image-wrapper:hover {
    transform: scale(1.05);
}

/* Image Styling */
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.nav-button {
    background-color: #3b83f600;
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    user-select: none;
}

.nav-button:hover {
    background-color: #121314;
    transform: translateY(-2px);
}

.nav-button:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

/* Contact Section */
#contact {
    flex: 1;
    padding: 40px;
    background-color: #151515; /* Using main background color */
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 100vh; /* Changed to min-height */
    padding-top: 100px; /* Space for fixed header */
    padding-bottom: 5vh; /* Added bottom padding */
    align-items: center; /* Vertically center content */
}

#contact .text {
    padding-top: 5vh; /* Adjusted padding-top */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

#contact h1 {
    font-family: 'sans-serif';
    font-size: clamp(2.5rem, 3em, 3.5rem); /* Responsive font size */
    margin-bottom: 20px;
    color: #ffffff;
}

#contact p {
    font-size: clamp(1rem, 1.1em, 1.2rem); /* Responsive font size */
    line-height: 1.6;
    margin-bottom: 15px;
    color: #cccccc;
}

#contact a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact a:hover {
    text-decoration: underline;
    color: #4da6ff;
}

.contact-form-container {
    width: 50%;
    flex: 1;
    padding: 40px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(27, 36, 36, 0.5), rgba(255, 255, 255, 0.3));
    border-radius: 30px;
    margin: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center form vertically */
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #aaaaaa;
    font-size: 0.85em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(27, 36, 36, 0.5), rgba(101, 99, 99, 0.3));
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1em;
    outline: none;
    box-sizing: border-box;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
    color: #888888;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    box-shadow: 0 0 0 2px #007bff;
}

.phone-input {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(27, 36, 36, 0.5), rgba(101, 99, 99, 0.3));
    border-radius: 50px;
    padding-right: 12px;
}

.phone-input .country-code {
    padding: 12px;
    color: #ffffff;
    font-size: 1em;
    border-right: 1px solid #444444;
}

.phone-input input {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 12px 0 12px 12px;
}

button[type="submit"] {
    background: linear-gradient(45deg, rgba(18, 34, 39, 0.61), rgba(24, 44, 44, 0.5), rgba(101, 99, 99, 0.3));
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 40px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #6a6a6a;
}

/* Footer */
footer {
    width: 100%;
    background-color: #0c0c0c;
    padding: 30px 5vw;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
    color: #ccc;
}

footer .social-links a {
    color: #ccc;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #fff;
}
footer p a{
  font-weight: 400;
  &:hover{
    padding: 0.3rem;
    text-decoration: underline;
    color: #4da6ff;
    background-color: #1d1d1d;
    border-radius: 10rem;
  }
}


/* --- Media Queries for Responsiveness --- */

/* Tablet and Smaller Screens (e.g., max-width: 768px) */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    /* Home Section adjustments */
    #home .content {
        padding: 0vh 4vw;
        padding-top: 5vh;
    }

    #home .slap1 {
        flex-direction: column-reverse;
        text-align: center;
        gap: 5vh;
    }

    #home .slap1 .text {
        text-align: center;
    }

    #home .slap1 .image {
        width: clamp(200px, 60vw, 300px);
        height: clamp(200px, 40vh, 300px);
    }

    #home .text2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 3vh;
    }

    #home .text2 a {
        flex-direction: column;
        align-items: center;
    }

    /* Services Section adjustments */
    #services .upper {
        flex-direction: column;
        padding: 5vh 4vw;
        text-align: center;
    }

    #services .upper .text {
        text-align: center;
        width: 100%;
    }

    #services .upper .imag {
        margin-top: 3vh;
        width: 40%;
    }

    #services .lower {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #services .st, #services .nd, #services .rd, #services .th, #services .tth {
        width: 90%;
        min-width: unset;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 20px;
    }

    /* On mobile, remove complex hover effect for services, just show text */
    #services .st:hover, #services .nd:hover, #services .rd:hover, #services .th:hover, #services .tth:hover {
        transform: none;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }

    #services .st img, #services .nd img, #services .rd img, #services .th img, #services .tth img {
        width: 0;
        opacity: 0;
    }

    #services .st p, #services .nd p, #services .rd p, #services .th p, #services .tth p {
        font-size: clamp(1rem, 4vw, 1.3rem);
        opacity: 1;
    }

    #services .vl {
        height: 15vh;
    }

    /* About Section adjustments */
    #about {
        flex-direction: column;
        text-align: center;
        padding: 00px 4vw 5vh;
    }
    #about .abopic, #about .abotext {
      width: 100%;
      height: auto;
    }
    
    #about .abopic{
      width: 30%;
    }
    #about .abopic .aboimg {
        padding: 1vh 0;
    }

    #about .abotext {
        padding: 0 4vw;
    }

    #about .abotext .up, #about .abotext .bu {
        height: auto;
        padding-top: 3vh;
    }

    #about .abotext .up h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 2vw;
    }

    #about .abotext .up h2 {
        font-size: clamp(1.2rem, 4.5vw, 2rem);
        padding-left: 0;
    }

    #about .abotext .bu h1 {
        font-size: clamp(1rem, 4vw, 1.8rem);
        margin-bottom: 3vw;
    }

    #about .abotext .bu h2 {
        font-size: clamp(0.9rem, 3.5vw, 1.5rem);
    }

    #about .abotext .bu hr {
        margin: 3vw auto;
    }

    /* Reviews Section adjustments */
    #reviews {
        flex-direction: column;
        padding: 00px 4vw 5vh;
    }

    #reviews .left, #reviews .right {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    #reviews .left .upp, #reviews .left .loww {
        margin: 0;
        padding-top: 3vh;
    }

    #reviews .left .loww .tex h1 {
      font-size: 1.2rem;
        padding: 2vh 0;
    }
    #reviews .left .loww .te h1 {
      font-size: 1.6rem;
    }

    #reviews .right {
        margin-top: 3vh;
    }

    #reviews .right .rtext h1 {
        padding: 3vh 0;
    }

    #reviews .rpic {
        flex-wrap: wrap; /* Allow buttons and container to wrap */
        justify-content: center; /* Center items */
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    #reviews .nav-button {
        margin: 10px; /* Add margin around buttons when wrapped */
    }

    #reviews .scrollablecontainer {
        /* width: 100%;  */
        margin-top: 20px;
    }

    #reviews .image-wrapper {
        width: 100%; /* Adjust image width to be larger on mobile */
        height: 100%;
    }
    
    /* Contact Section adjustments */
    #contact {
        flex-direction: column;
        padding: 100px 4vw 5vh;
    }

    #contact .text, #contact .contact-form-container {
        width: 100%;
        margin: 20px 0; /* Adjust margin for stacking */
        text-align: center;
    }

    #contact .text h1, #contact .text p {
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Mobile Screens (e.g., max-width: 480px) */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hamburger-menu {
        font-size: 1.8rem;
    }

    .mobile-menu li a {
        font-size: 1.5rem;
    }

    #home .slap1 .text h1 {
        font-size: clamp(2.5rem, 9vw, 4rem);
    }

    #home .slap1 .text p {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }

    #services .upper .text h1 {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }

    #services .upper .text p {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }

    /* Further refine About Section for very small screens */
    #about {
        padding: 80px 3vw 3vh;
    }

    #about .abopic .aboimg {
        padding: 3vh 0;
    }

    /* Further refine Reviews Section for very small screens */
    #reviews .image-wrapper {
        width: 95vw; /* Adjust image width to be larger on very small mobile */
    }
}