/********** Template CSS **********/
:root {
    --primary: #90BE28;
    --secondary: #127baf;
    --light: #F8F2F0;
    --dark: #060315;
    --black: #000000;
    --footer: #0A2D3F;
    --text: #BABABA;
    --header-h5: #1B4962;
    --header-p: #485A64;
    --header-h3: #565656;
    --orage: #f88137;
}
.text-just{
    text-align: justify !important;
}
.fw-medium {
    font-weight: 600 !important;

}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.text-axes {
    color: var(--header-p);
}

.text-grey {
    color: var(--header-h3);
}

.text-darkblue {
    color: var(--header-h5);
}

.text-black {
    color: var(--black) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-common {
    color: var(--text) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.text-align{
    /* text-align: justify !important; */
}
/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-brand img {
    max-width: 160px;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.sliders {
    width: 100% !important;
    min-width: 100% !important;
    /* Ensures image fills full width */
    height: 100vh !important;
    /* Full screen height */
    object-fit: cover !important;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background:#cdee7e; */
    z-index: 1;
}

.header-content {
    font-size: 18px;
}

.slider-slider-1 {
    margin-top: 20vh;
    margin-left: 10vw;
}

.slider-slider-1 h5 {
    font-size: 20px;
}

.slider-slider-1 h4 {
    font-size: 24px !important;
}

.slider-slider-1 h3 {
    font-size: 3.5vw;
}


@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: fill;
        object-position: center;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }

    .sliders {
        object-fit: contain;
        /* Ensures the full image is visible */
        height: auto;
        /* Prevents unnecessary cropping */
    }

    .slider-slider-1 {
        margin-top: 6vh;
        margin-left: 5vw;
    }

    .slider-slider-1 h5 {
        font-size: 20px;
    }

    .slider-slider-1 h4 {
        font-size: 16px !important;
    }

}
@media (max-width: 430px) {

    .slider-slider-1 {
        margin-top: -6vh;
        margin-left: 4vw;
    }

    .slider-slider-1 h5 {
        font-size: 15px;
    }

    .slider-slider-1 h4 {
        font-size: 8.5px !important;
    }
    .slider-slider-1 h3 {
    font-size: 5vw;
}
.slider-slider-1 a{
    margin-top: -2vh;
}
}
@media (max-width: 376px){
.slider-slider-1 a{
    margin-top: -3vh;
}
  .slider-slider-1 h4 {
        font-size: 7.8px !important;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/about-cook.jpg) center center no-repeat;
    /* background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat; */
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}



/*** About ***/
.about-icon{
    margin-top: 10px;
}
.about-img {
    margin-left: 30px;
    width: 700px !important;
    /* height: 400px !important; */
    border-radius: 10px;
}

.about-mission h5 {
    align-items: center !important;
    justify-content: center !important;
    text-align: justify !important;
}

@media (max-width: 770px) {
    .about-img {
        margin-left: 0px;
        height: 400px !important;
        width: 700px !important;
    }
}

@media (max-width: 440px) {
    .about-img {
        margin-left: 0px;
        height: 400px !important;
        /* width: 700px !important; */
    }
}

@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/*** Feature ***/
.feature-img {
    /* border: var(--primary) solid 5px; */
    border-radius: 10px;
}

@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
/* client-page */
.client-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    /* border: var(--secondary) 2px solid; */
}

.client-item img {
    transition: .5s;
    border-radius: 10px !important;
}

.client-item:hover img {
    transform: scale(1.1);
}

/* product-img */
.product-img {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    /* border: var(--secondary) 3px solid; */
}

.product-img img {
    transition: .5s;
    /* margin-left: 30px; */
    width: 700px !important;
    /* height: 400px !important; */
    border-radius: 10px;
}

.product-img:hover img {
    transform: scale(1.1);
}

@media (max-width: 770px) {
    .product-img img {
        margin-left: 0px;
        height: 400px !important;
        width: 700px !important;
    }
}

@media (max-width: 440px) {
    .product-img img {
        margin-left: 0px;
        height: 400px !important;
        /* width: 700px !important; */
    }
}

/*  */
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 10px;
    /* border: var(--secondary) 3px solid; */
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}

/* Products-text */
.file-text {
    font-size: 22px;
}

.product-title h1 {
    font-size: 24px;
}

.product-title h2 {
    font-size: 20px;
}

.products-text p {
    font-size: 16px !important;
    line-height: 17px;
    /* margin-left: 300px;
    margin-top: 30px; */
}

.demo-video {
    background-color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    animation: pulse 1.5s infinite;
}

.dropbtn {
    /* display: inline-block; */
    background-color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    animation: pulse 1.5s infinite;
}

@media (max-width: 770px) {
    .products-text p {
        /* margin-left: 70px; */
        font-size: 15px;
    }

}

@media (max-width: 430px) {
    .products-text p {
        /* margin-left: 35px; */
        /* margin-top: 30px; */
    }

    .demo-video {
        margin-left: 6vw;
        margin-top: 10px;
        width: 80%;
    }

    .dropbtn {
        margin-left: 6vw;
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 80%;
    }
}

/* Products-text */
/* Table */



/*  */

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background-color: var(--footer);
    /* background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat; */
    background-size: cover;
}

.footer-logo {
    max-width: 160px;
    /* background: #EEEEEE; */
}
.footer-content p{
    /* align-content: center !important; */
    /* justify-content: center !important; */
    text-align: justify;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

/*  */
.ser {
    position: relative;
}

/*  */
.feature-text {
    color: #f20808;
}

.footer-design a:hover {
    color: var(--primary);
    transition: .5s;
    transform: scale(1.1);

}

.footer-text {
    /* color: #1872B5; */
    color: var(--primary);
}

.footer-text p {
    text-align: justify !important;
    align-content: center !important;
    justify-content: center !important;
    color: var(--text) !important;
}

/*  */
/* ======whatsup== */

/* .whatsapp-icon {
    position: fixed;
    top: 350px;
    right: 18px;
    z-index: 99;
} */

/* .whatsapp-icon i {
    font-size: 35px !important;
} */

/* .whatsapp-icon :hover {
    transform: scale(1.1);
} */

/* .phone-icon {
    position: fixed;
    top: 450px;
    right: 18px;
    z-index: 99;
} */

/* .phone-icon i {
    font-size: 35px !important;
} */

/* .whatsapp-icon :hover {
    transform: scale(1.1);
} */
/* Support */
.form-containers {
    background: var(--primary);
    margin-left: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(143, 239, 40, 0.2);
    width: 100%;
    max-width: 700px;
}

.form-group {
    margin-bottom: 4px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #1d1c1c;
    border-radius: 5px;
    font-size: 16px;
}

textarea.form-input {
    height: 100px;
    resize: none;
}

.captcha-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.captcha-text {

    font-size: 20px;
    font-weight: bold;
    background: var(--secondary);
    padding: 10px;
    border-radius: 5px;
    user-select: none;
    color: #EEEEEE;
}

.refresh-captcha {
    margin-left: 10px;
    font-size: 20px;
    /* Adjust the font size */
    width: 40px;
    /* Set a fixed width */
    height: 40px;
    /* Set a fixed height */
    /* background: #007bff; */
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    /* Makes it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the icon inside */
    cursor: pointer;
    padding: 0;
    /* Remove extra padding for consistency */
    transition: transform 0.2s;
    /* Add smooth scaling animation */
}

.refresh-captcha:hover {
    background: #0056b3;
}

.error-message {
    color: red;
    font-size: 14px;
    display: none;
}

.status-message {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.submit-button:hover {
    background: #e13024;
    color: #EEEEEE;
}

@media (max-width: 770px) {
    .form-containers {
        margin-left: 0px;
    }
}

@media (max-width: 480px) {
    .captcha-text {
        font-size: 16px;
    }
}

/* Talk to as */
.btn-1 {
    position: fixed;
    color: white;
    bottom: 75px;
    left: 15px;
    z-index: 99;
    background-color: var(--primary);
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;

}

.form-container-whats {
    display: none;
    position: fixed;
    top: 130px;
    z-index: 99;
    left: 25px;
    /* right: 100px; */
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 400px;
    animation: fadeIn 0.5s ease-out;
    /* position: fixed; */
}

.form-container-whats label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.form-container-whats input,
.form-container-whats select,
.form-container-whats button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-container-whats button {
    background-color: #25d366;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.whatserror {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.close-icon {
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-icon:hover {
    color: #ff0000;
}

@media (max-width: 480px) {
    .form-container-whats {
        justify-content: center;
    }
}

/*  */

.modal {
    display: none;
    position: fixed;
    /* z-index: 1; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;

    /* width: 70%; */
    max-width: 700px;
    background-color: #fff;
    padding: 0;
   
}

.close-1 {
    position: absolute;
    top: 10px;
    right: 18px;
    color: #fc0505;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-1:hover,
.close-1:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.company-profile{
      display: inline-block;
    background-color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    animation: pulse 1.5s infinite;
}
.play-button {
    display: inline-block;
    background-color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.iframe {
    width: 100%;
    height: 400px;
}

/* Chatbot */
/* =====whatsup=======  */
.whatsapp-icon {
  position: fixed;
  top: 350px;
  right: 15px;
  /* background-color: #f0f2f3; */
  color:rgb(79, 237, 6);
  border-radius: 50%;
  padding: 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  z-index: 1000;

}

.whatsapp-icon i {
  font-size: 50px !important;
  font-weight: 600;
}

/* .whatsapp-icon a {
  color: rgb(79, 237, 6);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/* =========== */
/* ======PhoneNumber======== */
.phone-icon {
  position: fixed;
  top: 300px;
  right: 20px;
  /* background-color: #f0f2f4; */
  color: rgb(6, 6, 6);
  border-radius: 50%;
  padding: 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  z-index: 1000;
}

/* .phone-icon i {
  font-size: 20px;
} */

/* .phone-icon a {
  color: rgb(146, 243, 10);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.phone-icon:hover {
  transform: scale(1.1);
}
/*  */
.referral-button{
    position: fixed;
  top: 380px;
  right: 20px;
  /* background-color: #f5f7f8; */
  color: rgb(6, 6, 6);
  border-radius: 50%;
  padding: 15px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  z-index: 1000; 
}
.referral-button:hover {
  transform: scale(1.1);
}
/*  */
.chat-now {
    position: fixed;
    bottom: 150px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    animation: ring 1.5s infinite;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* Floating Button Container */
.floating-buttons {
    position: fixed;
    bottom: 250px;
    right: 31px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

/* Floating Buttons */
.floating-buttons a,
.floating-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    animation: ring 1.5s infinite;
    border: none;
    cursor: pointer;
}

/* .floating-buttons img {
	width: 35px;
	height: 35px;
} */

/* Ringing Animation */
@keyframes ring {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }
}

/* Button Colors */
/* .whatsapp-button {
	background-color: #25D366; 
} */

/* .phone-button {
	background-color: #007BFF; 
} */

/* .referral-button {
	background-color: #FF9800; 
} */

/* Modal Styling */
.modal-rel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content-rel {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
}

.modal-header-rel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.modal-header-rel h3 {
    /* margin: 0; */
    color: var(--primary);
    padding-left: 10px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: red;
}

.modal-form-rel input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-form-rel button {
    padding: 10px;
    background-color: #FF9800;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
}

.modal-form-rel button:hover {
    background-color: #e68900;
}


/* Modal Styling */
.modal-rel {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content-rel {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
}

.modal-header-rel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* .modal-header-rel h3 {
    margin: 0;
    color: #FF9800;
} */

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: red;
}

/* Input Fields */
.modal-form-rel input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Submit Button */
.modal-form-rel button {
    padding: 10px;
    background-color: #FF9800;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
}

.modal-form-rel button:hover {
    background-color: #e68900;
}

/* Document */
.modal-doc {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content-doc {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
}

.close-doc {
    float: right;
    font-size: 25px;
    cursor: pointer;
    color: #f20808;
}
/* Projects */
.project img{
width: 300px;
height: 250px;
}
/* 404-Error */
.error{
    border: none;
    border-radius: 10px;
    padding: 10px;
    background: #565656;
}
.services-content h1{
    font-size: 18px !important;
}
.services-content h2{
    font-size: calc(1.275rem + .3vw) !important;
}
.h2-tags h2{
    font-size: 18px;
}