* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;

}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    opacity: 1;
    border-bottom: 2px solid #fff;
}

.hero {
    height: 100vh;
    background-size: 100% 100%;
    background: url('images/bg.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.hero .person-img {
    position: absolute;
    bottom: 0;
    right: 4%;
    max-height: 90%;
}

.hero-content {
    text-align: center;
}

.flexdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    height: 100%;
}

.hambler i {
    display: none;
    font-size: 28px;
    color: white;
    float: right;
}

.arrow {
    width: 35px;
    height: 35px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: end;
    justify-content: center;
    position: absolute;
    top: 42%;
    transform: translateY(-42%);
    cursor: pointer;
}

.arrow-left {
    left: 40px;
}

.arrow-right {
    right: 40px;
}


.dark-box {
    background: #0b1a3c;
    color: #fff;
    padding: 77px;
    height: 100%;
    font-weight: 100;
}

.dark-box h5 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 35px;

}

button.btn.btn-outline-light {
    margin-bottom: 8px;
    margin-top: 35px;
    border-radius: 25px;
    padding: 7px 20px;
    font-size: 16px;
}

button.btn.btn-warning {
    border-radius: 25px;
    padding: 9px 25px;
    font-size: 16px;
    color: white;

}

p.text-uppercase {
    margin-top: 50px;
}

body {
    background-color: #f8f9fa;
}

.testimonial-section {
    max-width: 1200px;
    margin: 42px auto;
}

.testimonial-card {
    padding: 40px;
    margin-bottom: 30px;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #e9ecef;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 25px;
}

.testimonial-author {
    font-style: italic;
    color: #adb5bd;
    font-size: 15px;
    margin-bottom: 5px;
}

.testimonial-position {
    font-style: italic;
    color: #adb5bd;
    font-size: 15px;
}

.dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #212529;
}

.dot:hover {
    background-color: #6c757d;
}

.footer-section {
    background-color: #FFC107;
    padding: 80px 0 40px;
    position: relative;
    top: 50px;
}

.footer-heading {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-button {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
}

.footer-button:hover {
    background-color: #fff;
    color: #FFC107;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: rgba(0, 0, 0, 0.5);
    font-size: 28px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #000;
}

.footer-bottom {
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #333;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: 0.3s;
}

#scrollTopBtn:hover {
    background: #555;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 30px;
    }

    .footer-heading {
        font-size: 24px;
    }

    .footer-text {
        font-size: 14px;
    }

    .social-icons {
        justify-content: start;
        margin-top: 20px;
    }

    .footer-bottom {
        margin-top: 40px;
    }



    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-img {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .testimonial-quote {
        font-size: 16px;
    }


    .navbar {
        padding: 25px 20px;
    }

    .nav-links li {
        display: none;
    }

    .hero .person-img {
        display: none;
    }

    .hambler i {
        display: block;
        padding-top: 19px;
    }

    .hero-content {
        text-align: center;
        width: 60%;
        height: 84%;

    }

    .dark-box {
        padding: 15px;
    }

    .arrow-left {
        margin-left: 11px
    }

    .arrow-right {
        margin-right: 11px;
    }
}

@media (max-width: 380px) {

    button.btn.btn-outline-light.px-4.py-2.mt-3.rounded-pill {
        font-size: 12px;
    }

    .arrow-left {
        left: 6px;
    }

    .arrow-right {
        right: 6px;
    }
}

@media (max-width: 450px) {
    .arrow-left {
        margin-left: 7px;
    }

    .arrow-right {
        margin-right: 7px;
    }
}

@media (max-width: 440px) {
    .hero-content {
        width: 58%;
        height: 84%;
    }

    .arrow-left {
        margin-left: 6px;
    }

    .arrow-right {
        margin-right: 6px;
    }
}