@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.dropdown-menu .dropdown-item {
    color: #333;
}

.form-select {
    border-radius: 8px;
    color: #332f2c !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px !important;
    font-weight: 700;
}

.hero {
    background-image: url("../newPageComponent/hero-image.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 749px;
    width: 100% !important;
}

p {
    margin-bottom: 0px !important;
}

.btn-primary {
    border-radius: 16px !important;
    background: #f16522 !important;
    border: 0px solid;
    padding-block: 16px;
    padding-left: 10px;
    padding-right: 32px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.top-title {
    color: #545353;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 12px;
}

.main-title {
    color: #000;
    font-size: 48px;
    font-weight: 700;
    line-height: 125%; /* 60px */
    margin-bottom: 16px;
}

.span-one-hero {
    color: #5b4f4f;
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 4px;
}

.span-last-hero {
    color: #706a6a;
    font-size: 10px;
    font-weight: 400;
    padding-bottom: 56px;
}

.navbar-light {
    background-color: transparent !important;
    /* position: fixed; */
    left: 0;
    right: 0;
    z-index: 99;
}

.btn-contact {
    padding: 8px 16px;
    border-radius: 8px;
    background: #f16522;
    border: 0px solid;
}

.btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0) !important;
}

#section-two {
    height: 90%;
}

.custom-card {
    position: relative;
    color: #000;
    overflow: hidden;
    padding: 32px 56px !important;
    transition: color 0.3s ease;
    background: rgba(14, 167, 202, 1);
}
.custom-card:hover {
    color: #fff; /* Change text color on hover */
}

.custom-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(" ../newPageComponent/middle-card-image.png");
    background-size: cover;
    background-position: center;
    transition: top 0.3s ease;
}
.custom-card:hover::before {
    top: 0; /* Move the background image from the top on hover */
}

.custom-card-two {
    position: relative;
    color: #000;
    overflow: hidden;
    padding: 32px 56px !important;
    transition: color 0.3s ease;
    background: rgba(102, 144, 42, 1);
}
.custom-card-two:hover {
    color: #fff; /* Change text color on hover */
}

.custom-card-two::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../newPageComponent/top-card-image.png");
    background-size: cover;
    background-position: center;
    transition: top 0.3s ease;
}
.custom-card-two:hover::before {
    top: 0; /* Move the background image from the top on hover */
}

.custom-card-three {
    position: relative;
    color: #000;
    overflow: hidden;
    padding: 32px 56px !important;
    transition: color 0.3s ease;
    background: rgba(169, 91, 169, 1);
}
.custom-card-three:hover {
    color: #fff; /* Change text color on hover */
}

.custom-card-three::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../newPageComponent/bottom-image.png");
    background-size: cover;
    background-position: center;
    transition: top 0.3s ease;
}
.custom-card-three:hover::before {
    top: 0; /* Move the background image from the top on hover */
}
.card-icon,
.card-title,
.card-btn {
    position: relative;
    z-index: 1; /* Ensure these elements are above the background image */
}

.card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 24px;
}

.card-btn {
    padding: 8px 16px;
    border-radius: 16px;
    border: 1px solid #fff;
    background: #fff;
    color: #403232;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

/* slider */
.custom-slide {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.custom-slide:hover {
    transform: translateY(-5px); /* Example: Move card up on hover */
}
.slide-content {
    padding: 20px;
}
.new-slide-icon {
    color: #007bff;
    font-size: 24px;
}
.slide-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.new-slide-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}
.new-slide-btn:hover {
    background-color: #0056b3;
}
/* slider end */

.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: #433939;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card {
    position: relative;
    width: 300px;
    height: 400px;
}

.card-img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.card-text-box {
    position: absolute;
    bottom: 16%;
    left: 0;
    width: 100%;
    margin-inline: 0px;
}

.another-box {
    background-color: #f16522;
    color: white;
    padding: 10px;
}

.another-box .card-title {
    color: #fff;
    font-size: 16px !important;
    text-align: center;
    font-weight: 600;
}

.another-box .card-text {
    color: #f5f3f3;
    font-size: 14px;
    font-weight: 400;
}

.team-member-section {
    margin-top: 120px;
}

.team-member-section p {
    text-align: center;
    color: #151414;
    font-size: 16px;
    font-weight: 500;
}

.team-member-section h1 {
    color: #2c1c0a;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    padding-bottom: 80px;
}

.section-partner {
    margin-top: 120px;
    background: rgba(242, 103, 34, 0.1);
    padding-block: 80px;
}

.section-partner h1 {
    color: #151414;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 64px !important;
}

.counter-header {
    color: #fff;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    padding-top: 40px;
    margin-bottom: 0px;
    padding-bottom: 60px;
}

.counter-card {
    font-size: 20px;
    padding-bottom: 60px;
}

/* footer end */

#main-div {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

#main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    width: 50px;
    font-size: 20px;
    color: #0064f3;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

#main-button ~ button {
    visibility: none;
    font-weight: 600;
    height: 50px;
    padding: 0 20px;
    color: #fff !important;
    background: linear-gradient(90deg, #00a1f5, #0064f3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    border: 0;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    opacity: 0;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#main-button.open ~ button {
    visibility: visible;
    right: 70px;
    opacity: 1;
    transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
    -webkit-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
    -moz-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
    -ms-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
    -o-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button ~ a {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    opacity: 0;
    text-decoration: none;
    color: #fff;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
}

#main-button ~ .telegram-color {
    background: linear-gradient(0deg, #017ab1, #01abe6);
}

#main-button ~ .whatsapp-color {
    background: linear-gradient(0deg, #00b100, #09db09);
}

#main-button ~ .messenger-color {
    background: linear-gradient(0deg, #0078ff, #00c6ff);
}

#main-button ~ .messenger-color02 {
    background: linear-gradient(0deg, #0078ff, #00c6ff);
}

#main-button.open ~ a {
    opacity: 1;
    transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
    -webkit-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
    -moz-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
    -ms-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
    -o-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button.open ~ a:nth-of-type(1) {
    bottom: 60px;
}

#main-button.open ~ a:nth-of-type(2) {
    bottom: 120px;
}

#main-button.open ~ a:nth-of-type(3) {
    bottom: 180px;
}

.wave {
    animation-name: wave;
    animation-delay: 5s !important;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite !important;
}

@keyframes wave {
    0% {
        box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
    }
}

.open {
    animation-iteration-count: 1;
}

#footer {
    background: #1c1919;
    padding-block: 70px;
}

#footer h5 {
    color: #f6f6f6;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 24px;
}

#footer p {
    color: #d2d2d2;
    font-size: 14px !important;
    font-weight: 400;
}

.bottom-footer {
    padding-inline: 0px;
    padding-block: 16px;
    background: #f267221a;
}

.bottom-footer p {
    color: #504848;
    font-size: 15px;
    font-weight: 500;
}
