body {
    margin: 0;
    padding: 0;
    font-family: 'Encode Sans Semi Condensed', sans-serif;
    background: url('media/BackP.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    overflow-x: hidden;
}

/* header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    top: 0;
    z-index: 1000;
} */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.sticky {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Menu icon styles */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: -27%;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    /* padding-top: 60px; */
}

/* .side-nav ul {

} */

.side-nav li {
    list-style-type: none;
}

.side-nav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 2.5vh;
    color: black;
    display: block;
    margin-bottom: 15%;
    margin-left: 70%;
    text-align: center;
    width: 100%;
    background-color: #ffb347;
    transition: 0.3s;
}

.side-nav a:hover {
    background-color: #444;
}

.side-nav .close-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    cursor: pointer;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    width: 150px;
}

.bigger-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.bigger-nav li {
    margin-left: 20px;
}

.active {
    font-weight: 500;
    color:#ffb347
}

.bigger-nav li a {
    text-decoration: none;
    color: white;
    font-size: 2vh;
    padding: 5px 10px;
    font-weight: 100;
    transition: 0.3s ease;
}

.bigger-nav li a:hover {
    /* background-color: #ffcc80; */
    color:#ffb347
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 5vh;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 3.5vh;
    color: #ffcc80;
    margin-bottom: 20px;
}

.tagline {
    font-size: 2.5vh;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    /* border-radius: 5px; */
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #ffcc80;
    color: black;
}

.btn-secondary {
    background-color: black;
    color: white;
    border: 2px solid #ffcc80;
}

.btn:hover {
    background-color: #ffb347;
}

/* About Us Section */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 10px;
}

.about-text {
    flex: 1;
    padding-right: 20px;
    max-width: 50%;
}

.about-text h3 {
    font-size: 6vh;
    margin-top: -40px
}

.about-text p {
    margin-top: -10px;
    margin-bottom: 60px;
    line-height: 25px;
    font-weight: 100;
    font-size: 2vh
}

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    /* border-radius: 10px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Services */
#services {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 60px 20px;
    /* display: flex;
    flex-direction:; */
}

#services h2 {
    font-size: 4vh;
    text-align: center;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-content {
    display: flex;
    transition: transform 0.5s ease;
}

.service-item {
    min-width: 300px;
    margin: 0 15px;
    background-color: #333;
    padding: 20px;
    min-height: 200px;
    /* border-radius: 10px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.service-item h3 {
    font-size: 3vh;
}

.service-item p {
    margin-top: -5%;
    margin-bottom: 10%
}

.service-button {
    background-color: #ffb347;
    color: white;
    border: none;
    padding: 10px;
    font-size: 1.9vh;
    /* margin-top: 5%; */
    text-decoration: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Add responsiveness */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text, .about-image {
        max-width: 100%;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .carousel-content {
        flex-direction: column;
    }

    .service-item {
        margin: 10px 0;
    }
}

/* Why Choose Us Section */
#why-choose-us {
    /* background-color: rgba(0, 0, 0, 0.8); */
    color: white;
    margin-top: 5%;
}

#why-choose-us h2, #why-choose-us h3 {
    text-align: center
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.value-item {
    background-color: #333;
    padding: 20px;
    /* border-radius: 10px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex: 1 1 300px;
    text-align: center;
}

.value-icon {
    font-size: 40px;
    color: #ffcc80;
    margin-bottom: 10px;
}

/* Testimonials Section */
#testimonials {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: auto;
}

.testimonial-item {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

/* Contact Us Section */
#contact-us {
    /* background-color: rgba(0, 0, 0, 1); */
    color: white;
    margin-top: 4.5%;
    /* padding: 4% */
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: center;
}

#contact-us h2 {
    text-align: center;
    margin-bottom: 3%;
}

.contact-info {
    flex: 1 1 400px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #ffcc80;
    color: black;
    text-decoration: none;
}

.map {
    margin-top: 20px;
}

.map iframe {
    border: 0;
    border-radius: 10px;
    width: 100%;
    height: 300px;
}

#credibility {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 6%
}

.credibility-content {
    display: flex;
    justify-content: center;
}

.credibility-item {
    /* background-color: #333; */
    /* padding: 20px; */
    /* max-width: 600px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    /* border-radius: 10px; */
}

.credibility-item p {
    font-size: 2.2vh;
    margin-bottom: 15px;
    color: #ffcc80;
}

@media (max-width: 768px) {
    .credibility-item {
        max-width: 100%;
    }
}


/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 6%;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1 1 200px;
    padding: 10px;
}

.footer-section h3 {
    font-size: 2.5vh;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul,
.footer-section a {
    font-size: 2vh;
    line-height: 1.6;
    margin-bottom: 10px;
    color: white;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section .social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-section .social-icon {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 1.5vh;
}

/* Contact Us */

.contact-button {
    padding: 1%;
    background: #ffcc80;
}

/* Media queries for responsiveness */

@media (max-width: 480px) {
    .hero-content {
        width:70%
    }
    .hero-content h1 { 
        font-size: 4vh;
    }

    .hero-content h2 {
        font-size: 3.5vh;
    }

    .menu-icon {
        display: flex;
    }

    .bigger-nav {
        display: none;
    }

    /* About Us */
    .about-text h3 {
        font-size: 4vh
    }

    .about-image {
        margin-top: 10%
    }

    /* Services */
    #services h2 {
        text-align: left;
    }

    .carousel-btn {
        visibility: hidden;
    }

    /* Why choose Us */
    #why-choose-us {
        margin-top: 15%;
    }

    .why {
        text-align: left;
        font-size: 4vh;
        margin-left: 5%
    }

    .values-grid {
        width: 90%
    }

    .contact-button {
        color: white;
    }
}