/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic Styling */
body {
    font-family: "Dosis", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.dosis-font {
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* font size  */
.title-h1 {
    font-size: 60px;
}

.title-h2 {
    font-size: 45px;
}

.paragraph-big {
    font-size: 18px;
}

.text_18 {
    font-size: 18px;
}

/* button  */
.btn-main {
    background: #00a9a7;
    padding: 20px 40px 20px 40px;
    border-radius: 30px;
    border: 0;
    /* width: 250px; */
    color: #fff;
    letter-spacing: 2px;
    transition: margin .3s ease-in-out;
}

.btn-line {
    display: inline-block;
    height: 2px;
    width: 30px;
    background: #ffffff;
    margin-bottom: 4px;
    position: relative;
}

.btn-line::after {
    content: '';
    background: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform .5s ease;
}

.btn-main:hover .btn-line:after {
    transform: scale(1);
    transform-origin: bottom right;
}

.btn-main i {
    margin-left: -12px;
    font-size: 13px;
    visibility: hidden;
}

.btn-main:hover i {
    visibility: visible;
}

.btn-main .btn-text {
    transition: margin .3s ease-in-out;
}

.btn-main:hover .btn-text {
    margin-left: 10px;

}

.btn-second {
    background: #00a9a7;
    padding: 15px 40px 15px 40px;
    border-radius: 30px;
    border: 0;
    color: #fff;
    letter-spacing: 2px;
    transition: margin .3s ease-in-out;
}

.btn-second:hover {
    opacity: 0.9;
}

.arrow-btn {
    text-decoration: none;
    color: #000000;
    border: none;
    background: transparent;
}

.arrow-btn img {
    width: 30px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    /* Show dropdown menu on hover for larger screens */
}

.dropdown-menu {
    margin-top: 0;
    /* Adjust position */
}

/* Header Styling */
.section {
    padding: 100px;
    text-align: center;
}

/* navbar-n Styling */
.navbar-n {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggler {
    padding: 0px 10px;
    font-size: 20px;
    border-radius: 5px;
    border-color: #00a9a7;
    color: #00a9a7;
    border: 1px solid;
}

.navbar-n .logo img {
    height: 90px;
    transition: height 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 50px;
}

/* dropdown-menu  */
.d-menu {
    width: 300px;
    border-radius: 0 !important;
}

.d-menu li {
    padding: 3px 15px;
}

.d-menu li a {
    color: #000 !important;
    white-space: normal !important;
    font-size: 16px !important;
    background: #fff !important;
}

.d-menu li a:hover {
    color: #00a9a7 !important;
}

.d-menu li a:active {
    background-color: #fff !important;
}

/* dropdown-menu */
.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.75;
    /* will-change: opacity, color;
    transition: opacity 0.2s ease, color 0.2s ease; */
    cursor: pointer;
    position: relative;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    background: #ffffff;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform .5s ease-out;
}

.nav-menu li a.active::after {
    transform: scale(1);

}

.dropdown-toggle::after {
    border-top: 0 !important;
    margin-left: 0 !important;
}

.nav-menu li a:hover::after {
    transform: scale(1);
}

.navbar-n.sticky {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar-n.sticky .nav-menu a {
    color: #000000;
}

.navbar-n.sticky .nav-menu a.active::after {
    background: #00a9a7;
}

.navbar-n.sticky .nav-menu li a:hover::after {
    transform: scale(1);
    background: #00a9a7;
}

/* Logo Image Styling */
#logo-img {
    height: 90px;
    /* Default height */
}

.navbar-n.sticky #logo-img {
    height: 90px;
    /* Smaller height for sticky state */
}

/* Section Styling */
.section {
    height: 100vh;
    color: #333;
}

/* Background Colors for Sections */
/* home page  */
#home {
    background: url(../image/image-1.webp);
    background-position: center center;
    background-size: cover;
    position: relative;
}

.home-overlay {
    background-color: #0a0a0a;
    opacity: 0.5;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    z-index: 2;
    backface-visibility: hidden;
}

/* team page  */
.modal {
    background: #F2F2F2 !important;
}

.bg-section-top {

    background-position: center center;
    background-size: cover;
    position: relative;
    height: 40vh;
}

.team-member {
    color: #000000;

}

.team-member img {
    -webkit-transition: transform .8s cubic-bezier(.05, .2, .1, 1);
    transition: transform .8s cubic-bezier(.05, .2, .1, 1);

}

.team-member:hover img {
    -webkit-transform: scale(.95);
    transform: scale(.95);
}

.team-overlap {
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #F2F2F2;
    cursor: url("../image/error.png"), pointer;
}

.team-overlap-text {
    padding: 100px;
}

.team-overlap>div>div {
    flex: 0 0 50%;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: #000000;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid #000000;
}

/* contact style page  */
.contact-icon img {
    width: 50px;
    height: auto;
}

.contact-icon {
    padding: 10px 30px;
}

#contact-form>div>input,
textarea {
    border: 1px solid #000 !important;
    border-radius: 0 !important;
}

#contact-form>div>input:focus,
textarea:focus {
    box-shadow: none !important;
}

#contact-form>div {
    margin-bottom: 20px;
}

/* contact style page  */
/* Footer Styling */
.footer {
    background: #1b262c;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    background: #1b262c;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-left img {
    height: 90px;
    margin-bottom: 10px;
}

.footer-left p {
    letter-spacing: 1px;
    font-weight: 200;
}

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

.footer-text ul li a {
    color: #fff !important;
    opacity: 0.7;
    transition: 0.3s ease opacity, 0.3s ease color;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1.7;
}

.footer-text ul li a:hover {
    opacity: 1;
}

.footer-social-icon {
    display: flex;
    gap: 15px;
}

.footer-social-icon>a>img {
    width: 25px;
    height: auto;
    margin: 0;
}

.footer-social-icon>a {
    border: 1px solid #ffffff69;
    padding: 12px 14px 13px;
    border-radius: 50%;
}

.top-button-footer {
    border-bottom: 1px solid #00a9a757;
    background: #1b262c;
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .w-md-90 {
        width: 90% !important;
    }
}

/* // Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    .navbar-n {
        background: #00a9a7;
    }

    .mobile-nav {
        display: block !important;
        position: absolute;
        background: #00a9a7;
        top: 100%;
        width: 100%;
        left: 0;
        padding: 24px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .navbar-n.sticky .nav-menu a {
        color: #fff;
    }

    .navbar-n.sticky .nav-menu li a:hover::after {
        background: #fff;
    }

    .navbar-n.sticky .nav-menu li a:hover::after {
        background: #fff;
    }

    .navbar-n.sticky .nav-menu a.active::after {
        background: #fff;
    }

    .team-overlap-img img {
        height: 100%;
    }

    .team-overlap-text {
        padding: 100px 20px;
    }

    .bg-section-top {
        margin-top: 100px;
    }

    .dropdown-menu {
        display: none !important;
        /* Default dropdown state */
    }

    .dropdown-menu.show {
        display: block !important;
        /* Show menu when clicked */
    }

    .section {
        padding: 50px;
    }
}
