* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-color: #1a1d20;
    --dark-primary: #1c1c1c;
    --main-color: #ffffff;
    --primary-color: #c6c6c6;
    --secondary-color: #29a9fd;
    --supporting-color: #C850C0;
}

a {
    text-decoration: none;
}

main h1 {
    margin-bottom: 1rem;
}

.my-shadow {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.my-bg-dark {
    background-color: var(--dark-primary);
}

/* header */

.navbar-toggler {
    background-color: var(--main-color) !important;
}

.nav-link {
    color: var(--main-color);
}

.nav-link:hover {
    color: #cfcfcf;
}

.nav-link.active,
.nav-link[aria-current="page"] {
    color: var(--main-color) !important;
    background-color: transparent !important;
    border: none !important;
}

.nav-link {
    color: var(--main-color);
    text-align: center;
}

.nav-link:hover {
    color: #c2c2c2;
}

/* hero section  */

.hero-section p {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.07rem;
    line-height: 1.55rem;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

lottie-player {
    width: 400px;
    height: 400px;
}


.my-text-grey {
    color: var(--primary-color);
}

.hero-section .container {
    height: 80vh;
    display: flex;
    align-items: center;
}

/* services section  */
.common-title {
    margin-bottom: 3rem;
}

.common-heading {
    font-size: 2rem;
    font-weight: 700;
}

.services-section {
    padding: 3rem 0 3rem 0;
}

.icon-span {
    width: 2rem;
    height: 2rem;
    background-color: var(--secondary-color);
    color: var(--main-color);
}

.my-card:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* mobile and further info  */
.info-section {
    padding: 2rem 2rem 2rem 2rem !important;
    background-image: linear-gradient(rgba(22, 22, 22, .9), rgba(22, 22, 22, .9)), url(https://images.unsplash.com/photo-1532085755448-a67fd3b518b2?q=80&w=1474&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.info-section p {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.07rem;
    line-height: 1.55rem;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

/* carsousal section  */
.carousel .carousel-inner .card {
    background-color: #262631;
    color: var(--main-color);
    transition: all .2s linear;
}

.carousel .carousel-inner .card:hover {
    background-color: var(--main-color);
    color: var(--dark-color);
}

.carousel-indicators [data-bs-target] {
    width: 1rem !important;
    height: .8rem !important;
    background-color: var(--secondary-color);
}

.carousel-indicators {
    bottom: -3rem;
}

/* contact us section */
.form-section {
    width: 50%;
}

@media screen and (min-width: 992px) {
    .nav-item {
        margin: 0 .5rem;
    }
}

@media screen and (max-width: 992px) {
    .form-section {
        width: 80%;
    }
}

/* Custom mobile navbar styles */
@media (max-width: 991.98px) {

    ul.navbar-nav {
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        margin: 1.5rem 0;
        border-radius: 1rem;
        padding: 1rem 0;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: #0d6efd !important;
    }
}

/* Go To Top Button  */
.go-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
    background: #18141c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, opacity 0.3s;
    opacity: 0.85;
    text-align: center;
}

.go-top-btn:hover,
.go-top-btn:focus {
    background: #2a2236;
    color: #0d6efd;
    opacity: 1;
    text-decoration: none;
}

.go-top-btn.show {
    display: flex;
}