html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333333;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    width: 100%;
    box-sizing: border-box;
}

.contact-info {
    font-weight: bold;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 100px;
}

.social-media .icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.social-media .icon i {
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-media .icon i:hover {
    color: #f8b400;
}

/* Language Selector */
.language-selector {
    margin-left: 15px;
}

.language-selector select {
    padding: 5px;
    border-radius: 5px;
    border: none;
    background-color: white;
    cursor: pointer;
}

/* Navigation Bar - Make it more prominent */
nav {
    background-image: url('photos/n5.jpg');
    background-size: cover;
    background-position: center;
    height: 70px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding-right: 170px;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}

/* Logo Placement */
.logo {
    flex-shrink: 0;
    padding-left: 20px;
}

.logo img {
    height: 60px;
    width: 60px;
    display: block;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
nav ul {
    list-style: none;
    padding-left: 300px;
    margin-left: 400px;
    display: flex;
}

nav ul li {
    margin: 0 25px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 19px;
    font-weight: bold;
    padding: 8px 12px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
}

/* Hover Effect */
nav ul li a:hover {
    color: #ffe8e8;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Header Section */
header {
    position: relative;
    width: 100%;
    height: 100vh; /* Use full viewport height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

/* Slideshow Styling */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Ensure it fills the entire viewport height */
    overflow: hidden;
    z-index: 1;
}

.slideshow img {
    position: absolute;
    top: 0; /* Align image at the top */
    left: 0; /* Align image to the left */
    width: 100%;
    height: 100%; /* Full height of the viewport */
    object-fit: cover; /* Ensure the image fully covers the area without being stretched */
    object-position: center center; /* Keeps the main subject centered */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow img.active {
    opacity: 1;
}

/* Add overlay to slideshow */
.slideshow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

/* Main Heading */
header h1 {
    font-size: 82px;
    font-weight: bold;
    background: linear-gradient(to right, #f9822d, #feb47b, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 20px;
    -webkit-text-stroke: 1px white; /* Adjust color and thickness */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    z-index: 3; /* Ensures heading is above the slideshow */
    animation: fadeInDown 1s ease-out;
}

header h2 {
    font-size: 42px;
    font-weight: bold;
    background-color: rgba(14, 21, 78, 0.6);
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    -webkit-text-stroke: 1px white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Button Styling */
.book-button {
    display: inline-block;
    background-color: #f8b400;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    z-index: 3; /* Ensure button stays above the slideshow */
    border: 2px solid #a47900;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.book-button:hover {
    background-color: #ffcc00;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Subtext Section */
.header-subtext {
    margin-top: 30px;
    font-size: 18px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.header-subtext span {
    color: white;
    background-color: rgba(253, 243, 205, 0.8);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.header-subtext span:hover {
    transform: translateY(-3px);
    background-color: rgba(253, 243, 205, 0.9);
}

/* Add scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-indicator i {
    font-size: 24px;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Main Heading */
header h1 {
    font-size: 78px;
    font-weight: bold;
    background: linear-gradient(to right, #f9822d, #feb47b,#ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 20px;
    -webkit-text-stroke: 1px white; /* Adjust color and thickness */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 2; /* Ensures heading is above the slideshow */
}

header h2{
    font-size: 38px;
    font-weight: bold;
     background-color: #0e154e3f;
    text-transform: uppercase;
    margin-bottom: 10px; /* Adjust color and thickness */
    -webkit-text-stroke: 1px rgb(0, 0, 0); /* Adjust color and thickness */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 2; /* Ensures heading is above the slideshow */

}

/* Button Styling */
.book-button {
    display: inline-block;
    background-color: #f8b400;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
    z-index: 2; /* Ensure button stays above the slideshow */
}

.book-button:hover {
    background-color: #ffcc00;
}

/* Sticky Button */
#stickyButton {
    position: fixed;
    bottom: 20px;
    right: 60px;
    background-color: #f8b400;
    color: black;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    transition: all 0.3s ease;
    z-index: 9999;
    border: 2px solid #a47900;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 90px;
    max-width: 110px;
}

#stickyButton:hover {
    background-color: #151412;
    color: white;
    border: 2px solid #f0f0f0;
    box-shadow: 0 0 15px rgba(223, 216, 195, 0.8);
    transform: scale(1.05);
}

/* Subtext Section */
.header-subtext {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.8;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.header-subtext span {
    color: #080808;
    background-color: #fdf3cdec;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.595) 30%, rgba(255, 255, 255, 0) 80%);
    pointer-events: none;
    z-index: 2;
}

.services {
    text-align: center;
    padding: 40px;
    background-color: #f8f8f8;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: linear-gradient(to right ,rgb(154, 103, 59), rgb(219, 153, 53),rgb(241, 191, 116));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    text-align: center;
}

.service-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.service-item h3 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.service-item p {
    font-size: 16px;
    color: #1c1c1c;
}

/* Service Item Hover Effects - Desktop Only */
@media screen and (min-width: 769px) {
    .service-item:hover {
        background-color: #fffb00;
        color: white;
        transform: scale(1.05);
        cursor: pointer;
    }

    .service-item:hover h3,
    .service-item:hover p {
        color: white;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* ... existing mobile styles ... */

    .service-item {
        padding: 15px;
        /* Remove hover transform */
        transform: none;
    }

    .service-item:hover {
        /* Remove hover effects on mobile */
        background: rgba(214, 169, 136, 0.733);
        color: inherit;
        transform: none;
        cursor: default;
    }

    .service-item:hover h3,
    .service-item:hover p {
        color: inherit;
    }
}

.services h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FFD700, #FFC300, #FFB000, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.6);
}




/* happy clients css */
.happy-clients {
    text-align: center;
    padding: 50px 0;
    background-color: #c2bb93e6;
}
#rek{

    font-size: 1rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-shadow: 2px 2px 10px rgba(251, 251, 251, 0.6);
}
.happy-clients h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(45deg, #e1ce00, #ffe100, #ffd900, #c09600);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px black; /* For WebKit browsers */
    
}

.client-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.client-item {
    width: 300px;
    background: rgb(255, 251, 0);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.client-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.client-story {
    font-style: italic;
    color: #555;
}



/* about section */
/* About Us Section */
.about-us {
    display: flex;
    align-items: center; /* Keeps items vertically aligned */
    justify-content: space-between; /* Ensures space between text and image */
    padding: 80px 10%;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 550px;
}

/* CONTAINER */
.about-container {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    width: 100%;
    gap: 50px; /* Adds space between text & image */
}

/* IMAGE SECTION */
.about-image {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%; /* Ensures proper spacing */
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 650px; /* Controls size */
    border-radius: 10px;
    display: block;
    z-index: 2;
}

/* Yellow Circle Background */
.about-image::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 500px;
    background-color: #ffcc00;
    border-radius: 50%;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* TEXT SECTION */
.about-text {
    flex: 1; /* Makes text take equal space */
    text-align: left;
    max-width: 50%; /* Ensures text doesn't stretch too much */
}

.about-text h2 {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(to right, #f9822d, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding: 5px 0;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 500px;
}

/* Some of our work Section */
.our-work {
    padding: 60px 20px;
    background-image: url('photos/n2.jpg');
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.our-work h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(45deg, #e1ce00, #ffe100, #ffd900, #c09600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px black;
    margin-bottom: 40px;
}

.work-slideshow-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.work-slideshow {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    flex-wrap: nowrap;
}

.work-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    min-width: 33.333%;
}

.work-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.work-slide img:hover {
    transform: scale(1.05);
}

/* Contact Form - Floating Window Style */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 50px;
    background: #f9f9f9;
    width: 100%;
    box-sizing: border-box;
}
.contact-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.344);
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}
.contact-info1 {
    flex: 1;
    padding: 30px;
    background: #ffefe0;
    box-sizing: border-box;
}
.contact-info1 h2 {
    color: #ff7a00;
    margin-bottom: 15px;
}
.social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: #ff7a00;
}
.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    margin-top: 10px;
}
.contact-form {
    flex: 1;
    padding: 30px;
    box-sizing: border-box;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.send-btn {
    width: 100%;
    padding: 10px;
    background: #ff7a00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    box-sizing: border-box;
}
.send-btn:hover {
    box-shadow: 0 0 10px #ff7a00;
}

/* Updated Button with White Background & Black Text */
.book-button {
    background-color:  #f8b400;
    color: black;
    padding: 12px;
    border: 2px solid #a47900;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.book-button:hover {
    background-color: #151412;
    color: white;
    border: 2px solid #f0f0f0;
    box-shadow: 0 0 15px rgba(223, 216, 195, 0.8);
    transform: scale(1.05);
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 20px;
    font-size: 14px;
    position: relative; /* For absolute positioning of footer-bottom */
}

/* Footer Content */
footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap;
}

/* Left side with contact info */
footer .footer-left {
    flex: 1;
    text-align: left;
}

/* Centered copyright text */
footer .footer-center {
    flex: 1;
    text-align: center;
    margin-right: 500px;
    margin-top: 100px;
}

/* Footer Bottom (Powered by ALDesigns Link) */
footer .footer-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px; /* Align to the bottom-right corner */
    padding-right: 20px; /* Space from the right edge */
    width: auto;
    text-align: right;
}

/* Styling for powered by ALDesigns link */
footer .footer-bottom a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}

footer .footer-bottom a .ald {
    color: black;
}

footer .footer-bottom a .designs {
    color: red;
}

/* Footer Links and Styling */
footer a {
    color: #4CAF50;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* MObile*/
/* General Mobile Styles */
@media screen and (max-width: 768px) {
    /* Top Bar Improvements */
    .top-bar {
        flex-direction: column;
        align-items: center;
        padding: 8px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .social-media {
        margin-left: 0;
        justify-content: center;
        gap: 20px;
    }

    /* Navigation Improvements - Fixed to be horizontal */
    nav {
        height: auto;
        padding: 5px 0;
        background-color: #080808;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-container {
        flex-direction: row; /* Changed from column to row */
        padding-right: 0;
        max-width: 100%;
        justify-content: space-between;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .logo img {
        height: 40px;
        width: 40px;
        padding-left: 0;
        margin-bottom: 0;
    }

    nav ul {
        padding-left: 0;
        margin-left: 0;
        flex-direction: row; /* Changed from column to row */
        width: auto; /* Changed from 100% to auto */
        text-align: center;
        max-width: none; /* Removed max-width constraint */
        margin: 0;
        flex-wrap: wrap; /* Allow wrapping for very small screens */
        justify-content: flex-end; /* Align to the right */
    }

    nav ul li {
        margin: 0 5px; /* Reduced margin */
    }

    nav ul li a {
        display: block;
        padding: 8px 10px; /* Increased horizontal padding */
        font-size: 14px; /* Reduced font size */
        transition: all 0.3s ease;
        white-space: nowrap; /* Prevent text wrapping */
        min-width: 70px; /* Increased from 60px to 70px */
    }

    /* Header Section Improvements */
    header {
        height: 80vh;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    header h1 {
        font-size: 32px;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .header-subtext {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

    .header-subtext span {
        width: 100%;
        max-width: 250px;
        padding: 8px 12px;
        font-size: 14px;
    }

    /* Services Section Improvements */
    .services {
        padding: 30px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .service-item {
        padding: 15px;
        transition: transform 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

    .service-item:hover {
        transform: translateY(-5px);
    }

    .service-item img {
        height: 200px;
    }

    /* About Us Section Improvements for Mobile */
    .about-us {
        padding: 40px 15px;
        min-height: auto;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .about-image {
        max-width: 100%;
        order: 2; /* Move image below text on mobile */
        width: 100%;
        box-sizing: border-box;
    }

    .about-image::before {
        width: 300px;
        height: 350px;
    }

    .about-text {
        max-width: 100%;
        order: 1; /* Move text above image on mobile */
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .about-text h2 {
        font-size: 32px;
        text-align: center;
        display: block;
        width: 100%;
    }

    .about-text p {
        font-size: 16px;
        max-width: 100%;
        text-align: center;
    }

    /* Happy Clients Section Improvements */
    .happy-clients {
        padding: 30px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .happy-clients h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    #rek {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .client-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .client-item {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .client-item img {
        height: 300px;
    }

    .client-story {
        font-size: 14px;
        padding: 10px;
    }

    /* Contact Section Improvements */
    .contact-section {
        padding: 30px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-container {
        flex-direction: column;
        border-radius: 15px;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info1 {
        padding: 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info1 h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .social-icons {
        margin: 15px 0;
    }

    .social-icons a {
        font-size: 24px;
        margin: 0 10px;
    }

    .contact-form {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px;
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .send-btn {
        padding: 12px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Footer Improvements */
    footer {
        padding: 15px;
        font-size: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Sticky Button Mobile Improvements */
    #stickyButton {
        bottom: 15px;
        right: 45px;
        padding: 6px 12px;
        font-size: 12px;
        min-width: 80px;
        max-width: 100px;
    }

    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Touch-friendly interactions */
    a, button {
        -webkit-tap-highlight-color: transparent;
    }

    /* Improved form elements for touch */
    input, select, textarea {
        -webkit-appearance: none;
        border-radius: 8px;
    }


    /* Some of our work Section Improvements for Mobile */
    .our-work {
        padding: 40px 15px;
    }

    .our-work h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .work-slide {
        flex: 0 0 50%;
    }

    .work-slide img {
        height: 200px;
    }
}

/* Additional Small Screen Optimizations */
@media screen and (max-width: 480px) {
    header h1 {
        font-size: 28px;
    }

    .service-item img {
        height: 180px;
        width: 100%; /* Ensure the image fills the container */
        object-fit: cover; /* Maintain aspect ratio and cover the space */
    }

    .client-item img {
        height: 250px;
        width: 100%; /* Ensure the image fills the container */
        object-fit: cover; /* Maintain aspect ratio and cover the space */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    /* Navigation adjustments for small screens */
    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; /* Reduced space between li items */
        list-style: none;
        padding: 0;
        margin: 0;
        flex-wrap: wrap; /* Allow items to wrap if needed */
    }

    nav ul li {
        display: flex;
        padding: 3px 5px; /* Smaller padding to fit items in */
        font-size: 12px; /* Slightly reduced font-size for mobile */
        white-space: nowrap;
        flex-shrink: 1; /* Allow items to shrink if necessary */
    }

    nav ul li a {
        font-size: 11px; /* Adjust font-size for better mobile appearance */
        padding: 4px 8px;
    }

    /* Logo adjustments */
    .logo img {
        height: 45px;
        width: 45px;
    }

    /* Sticky Button adjustments */
    #stickyButton {
        bottom: 12px;
        right: 20px; /* Adjusted to be more centered */
        padding: 5px 10px;
        font-size: 11px;
        min-width: 70px;
        max-width: 90px;
    }

    /* About Us Section adjustments */
    .about-text h2 {
        font-size: 26px; /* Slightly smaller font-size for better fit */
        margin-bottom: 15px;
    }

    .about-image::before {
        width: 250px;
        height: 250px; /* Adjusted to keep balance */
    }

    /* Work Slide Section adjustments */
    .work-slide {
        flex: 0 0 100%;
    }

    .work-slide img {
        height: 180px;
        width: 100%; /* Ensure image width adapts to screen size */
        object-fit: cover;
    }
}



/* iPhone 14 Specific Optimizations */
@media screen and (max-width: 390px) {
    .top-bar {
        padding: 10px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    nav {
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
       
        list-style: none;
        padding: 0;
        margin: 0;
        flex-wrap: nowrap; /* Force all items on one line */
      }
      
      nav ul li {
        display: inline-block;
        padding: 5px 10px;
        font-size: 14px;
        white-space: nowrap;
      }
      
    
    nav ul li a {
        font-size: 12px;
   
      
    }
    
    .logo img {
        height: 35px;
        width: 35px;
    }
    
    /* Contact form improvements for iPhone 14 */
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .send-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .contact-info1 {
        padding: 15px;
    }
    
    .contact-form {
        padding: 15px;
    }

    /* Some of our work Section for iPhone 14 */
    .work-slide {
        flex: 0 0 100%;
    }

    .work-slide img {
        height: 180px;
    }
}


/* Additional Small Screen Optimizations */
@media screen and (max-width: 375px) {
    header h1 {
        font-size: 28px;
    }

    .service-item img {
        height: 180px;
        width: 100%; /* Ensure the image fills the container */
        object-fit: cover; /* Maintain aspect ratio and cover the space */
    }

    .client-item img {
        height: 250px;
        width: 100%; /* Ensure the image fills the container */
        object-fit: cover; /* Maintain aspect ratio and cover the space */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    /* Navigation adjustments for small screens */
    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; /* Reduced space between li items */
        list-style: none;
        padding: 0;
        margin: 0;
        flex-wrap: wrap; /* Allow items to wrap if needed */
    }

    nav ul li {
        display: flex;
        padding: 3px 5px; /* Smaller padding to fit items in */
        font-size: 12px; /* Slightly reduced font-size for mobile */
        white-space: nowrap;
        flex-shrink: 1; /* Allow items to shrink if necessary */
    }

    nav ul li a {
        font-size: 11px; /* Adjust font-size for better mobile appearance */
        padding: 4px 8px;
    }

    /* Logo adjustments */
    .logo img {
        height: 45px;
        width: 45px;
    }

    /* Sticky Button adjustments */
    #stickyButton {
        bottom: 12px;
        right: 20px; /* Adjusted to be more centered */
        padding: 5px 10px;
        font-size: 11px;
        min-width: 70px;
        max-width: 90px;
    }

    /* About Us Section adjustments */
    .about-text h2 {
        font-size: 26px; /* Slightly smaller font-size for better fit */
        margin-bottom: 15px;
    }

    .about-image::before {
        width: 250px;
        height: 250px; /* Adjusted to keep balance */
    }

    /* Work Slide Section adjustments */
    .work-slide {
        flex: 0 0 100%;
    }

    .work-slide img {
        height: 180px;
        width: 100%; /* Ensure image width adapts to screen size */
        object-fit: cover;
    }
}



/* Additional Small Screen Optimizations */
@media screen and (max-width: 385px) {
    header h1 {
        font-size: 28px;
    }

    .service-item img {
        height: 180px;
        width: 100%; /* Ensure the image fills the container */
        object-fit: cover; /* Maintain aspect ratio and cover the space */
    }

    .client-item img {
        height: 250px;
        width: 100%; /* Ensure the image fills the container */
        object-fit: cover; /* Maintain aspect ratio and cover the space */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    /* Navigation adjustments for small screens */
    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; /* Reduced space between li items */
        list-style: none;
        padding: 0;
        margin: 0;
        flex-wrap: wrap; /* Allow items to wrap if needed */
    }

    nav ul li {
        display: flex;
        padding: 3px 5px; /* Smaller padding to fit items in */
        font-size: 12px; /* Slightly reduced font-size for mobile */
        white-space: nowrap;
        flex-shrink: 1; /* Allow items to shrink if necessary */
    }

    nav ul li a {
        font-size: 11px; /* Adjust font-size for better mobile appearance */
        padding: 4px 8px;
    }

    /* Logo adjustments */
    .logo img {
        height: 45px;
        width: 45px;
    }

    /* Sticky Button adjustments */
    #stickyButton {
        bottom: 12px;
        right: 20px; /* Adjusted to be more centered */
        padding: 5px 10px;
        font-size: 11px;
        min-width: 70px;
        max-width: 90px;
    }

    /* About Us Section adjustments */
    .about-text h2 {
        font-size: 26px; /* Slightly smaller font-size for better fit */
        margin-bottom: 15px;
    }

    .about-image::before {
        width: 250px;
        height: 250px; /* Adjusted to keep balance */
    }

    /* Work Slide Section adjustments */
    .work-slide {
        flex: 0 0 100%;
    }

    .work-slide img {
        height: 180px;
        width: 100%; /* Ensure image width adapts to screen size */
        object-fit: cover;
    }
}


.top-bar .social-media a.icon {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.top-bar .social-media a.icon:hover {
    color: #f0f0f0;
}