/* Mobile Responsiveness */
@media (max-width: 991px) {
  
    .contact-info span {
        font-size: 12px;
        margin-right: 15px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 2vh;
        margin-left: 10px;
    }

    .logo img {
        width: 11vh;
    }

 .dropdown-content a {
        font-size: 14px;
        padding: 14px 25px;
        background: #f1f1f1;
    }

    .hero-text h3 {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .request-btn {
        font-size: 14px;
    }

    .trusted p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 15px;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .contact-info {
        margin-bottom: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-info span {
        margin-bottom: 5px;
        font-size: 1.9vh;
    }

    .contact-info i {
        margin-right: 2.3vw;
    }

    header {
        padding: 0vh 3vh;
        align-items: center;
    }

    .hero {
        background-image: url(/api/placeholder/1000/600);
        background-size: cover;
        background-position: center;
        min-height: 80vh;
        position: relative;
        display: flex;
        align-items: center;
        padding: 4vh 3vh;
    }

    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        z-index: 100;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 70px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        padding: 15px 20px;
        display: block;
        font-size: 16px;
    }

     .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
        padding-left:0px;
        background-color:none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown>a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 10px;
    }

    .booking-btn {
        margin-top: 0px;
        margin-left: 0px;
        padding: 10px 20px;
        font-size: 14px;
        align-self: flex-start;
        width: fit-content !important;
    }

    /* .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 50;
    } */
    /* 
    .overlay.active {
        display: block;
    } */
    .hero-content {
        flex-direction: column;
        justify-content: flex-start;
        /* text-align: center; */
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-text h3 {
        font-size: 2vh;
        margin-bottom: 10px;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .request-btn {
        padding: 10px 15px;
        font-size: 14px;
        margin-bottom: 15px;
        display: inline-flex;
    }

    .play-btn {
        width: 40px;
        height: 40px;
    }

    .play-btn i {
        font-size: 16px;
    }

    .hero-image img {
        width: 100%;
        /* max-width: 300px; */
    }

    .trusted {
        /* justify-content: center; */
        margin-top: 20px;
    }

    .clients img {
        width: 4vh;
        height: 4vh;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-info span {
        margin-right: 0;
        margin-bottom: 5px;
    }

    /* .hero {
        min-height: 85vh;
        padding: 2vw 15px;
    } */

    .hero-text h1 {
        font-size: 3.125vh;
    }

    .hero-text p {
        font-size: 1.7vh;
        margin-left: 1vh;
    }

    .request-btn,
    .booking-btn {
        width: 80%;
        justify-content: center;
        margin-right: 0;
        font-size: 13px;
        padding: 12px 15px;
        /* display: none; */
    }

    .request-btn {
        width: fit-content;
        justify-content: center;
        margin-right: 0;
        font-size: 13px;
        padding: 12px 15px;
        /* display: none; */
    }

    .booking-btn {
        display: none;
    }

    .play-btn {
        margin-top: 15px;
    }

    .hero-image img {
        width: 100%;
    }
}




/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw;
    }

    .services-title {
        font-size: 2vw;
    }

    .services-main-title {
        font-size: 4vw;
    }

    .service-icon {
        width: 6vw;
        height: 6vw;
    }

    .service-title {
        font-size: 2vw;
    }

    .service-description {
        font-size: 1.6vw;
    }
}

@media (max-width: 576px) {


        .services-grid {
        grid-template-columns: 1fr;
        gap: 3vh;
        margin-top: 3vh;
    }


    .services-title {
        font-size: 1.823vh;
    }

  
        .services-main-title {
        font-size: 2.925vh;
    }

       .services-main-title br{
        display: none;
    }

    .service-icon {
        width: 9vh;
        height: 9vh;
    }

    .service-title {
        font-size: 2.5vh;
    }

    .service-description {
        font-size: 1.907vh;


    }


    .service-card {
        padding: 3vh !important;
        gap: 1vh;
    }

}



/* Responsive adjustments */
@media (max-width: 768px) {


    .description p {
        font-size: 1.907vh !important;
        margin-bottom: 2vh !important;
        /* line-height: 24px !important; */
    }

    .tour-card .image-box img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .anvv_topp {
        margin-top: 0.9vh;
    }

    .main_rowws {
        display: flex;
        gap: 1.5vh;
    }

    .tour-card .content-container {
        width: 50%;
        padding: 0vw 0vw;
        margin-top: 1vh;
    }


    .tour-card {
        flex-direction: column;
    }

    .tour-card .image-container,
    .tour-card .content-container {
        width: 100%;
    }

    .tour-card .title-section h2 {
        font-size: 3.125vh;
    }

    .tour-card .description {
        font-size: 3vw;
    }

    .tour-card .read-more {
        font-size: 2vh;
        padding: 1.5vh 2vh;
        border-radius: 10px;
    }


    .tour-card .read-more i {
        margin-left: 1vh;
    }

    .tour-card .image-dimensions {
        font-size: 3vw;
    }


}










/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-container {
        flex-wrap: wrap;
    }

    .stat-item {
        flex-basis: 50%;
        margin-bottom: 3vw;
    }

    .stat-value {
        font-size: 7vw;
    }

    .stat-label {
        font-size: 2.5vw;
    }

     .testimonial-section {
        width: 100%;
        position: relative;
        padding: 4vh 0 !important;
        /* background-image: url(/assets/images/levelup.jpg); */
        /* background-size: cover; */
        /* background-position: center; */
        color: white;
    }

    .booking-section .query-overlay {
        /* position: absolute; */
        position: relative !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: transparent !important;
        border-radius: 1vw;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: flex-start;
        padding: 3vw;
    }

    .stat-item {
        flex-basis: 100%;
        margin-bottom: 5vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stat-value {
        font-size: 10vw;
    }

    .stat-label {
        font-size: 3.5vw;
    }


    a.request-btn i {
        margin-left: 1vh;
    }

    .play-btn {
        width: 40px;
        height: 40px;
        margin-left: 1vh;
    }

    .booking-section .card {
        border-radius: 1vw;
        padding: 3vh !important;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    }

    .booking-section input,
    .booking-section select,
    .booking-section textarea,
    .booking-section button,
    .booking-section .query-text {
        font-size: 3vw;
        padding: 1vh 1vh;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex-basis: 100%;
        margin-bottom: 5vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
        .stat-value {
        font-size: 4.5vh;
    }

        .stat-label {
        font-size: 2vh;
    }

    a.request-btn i {
        margin-left: 1vh;
    }

    .play-btn {
        width: 40px;
        height: 40px;
        margin-left: 1vh;
    }

      .booking-section .card {
        border-radius: 1vw;
        padding: 2vh 2vh !important;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    }

    .booking-section input,
    .booking-section select,
    .booking-section textarea,
    .booking-section button,
    .booking-section .query-text {
        font-size: 3vw;
        padding: 1vh 1vh;
    }


}



/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-heading {
        font-size: 5vw;
    }

    .testimonial-stars {
        font-size: 3vw;
    }

    .testimonial-text {
        font-size: 2.2vw;
        min-height: 12vw;
    }

    .profile-image {
        width: 8vw;
        height: 8vw;
    }

    .profile-name {
        font-size: 2.5vw;
    }

    .testimonial-carousel .owl-dots {
        text-align: center;
        margin-top: 2vw;
        display: none;
    }
}

@media (max-width: 480px) {
      .testimonial-heading {
        font-size: 2.925vh;
        padding: 1vh 5vh;
    }

    .testimonial-item {
        padding: 4vw;
        width: 80%;
        margin: 0px auto;
    }

    .testimonial-stars {
        font-size: 5vw;
    }

    .testimonial-text {
        font-size: 3.5vw;
        min-height: auto;
    }

    .profile-image {
        width: 12vw;
        height: 12vw;
    }

    .profile-name {
        font-size: 4vw;
    }
}


@media (max-width: 768px) {
    .booking-section {
        flex-direction: column;
    }

        .booking-section h1, .booking-section .query-title {
        font-size: 2.925vh;
    }

    .booking-section input,
    .booking-section select,
    .booking-section textarea,
    .booking-section button,
    .booking-section .query-text {
        font-size: 3vw;
        padding: 2vw;
    }

    .booking-section .form-row {
        flex-direction: column;
    }

    .booking-section button {
        padding: 1.3vh 2vh;
        color: #fff;
        margin-top: 1vh;
        font-size: 1.5vh;
        display: flex;
        gap: 1vh;
    }

  
        .packages-section .package-card {
        padding: 2.1vh !important;
        flex: 1;
        max-width: 28vw;
        /* background-color: #f1f1f1; */
        border-radius: 12px;
        overflow: hidden;
        /* box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.08); */
        border: 0.1vw solid #f0f0f0;
        /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    }
}


@media (max-width: 768px) {

        .blog-section .section-heading {
        font-size: 2.485vh;
    }

    .blog-section .section-description {
        font-size: 1.5vh;
        max-width: 90vw;
    }
  
        .blog-section .blog-cards {
        flex-direction: column;
        align-items: center;
        margin-top: 3vh;
    }

     .blog-section .blog-card {
        max-width: 90vw;
        margin-bottom: 2vh;
    }

    .blog-section .blog-image {
        height: 50vw;
    }

    .blog-section .blog-title {
        font-size: 4vw;
    }

      .blog-section .blog-excerpt a {
        font-size: 1.5vh;
    }

    .blog-section .read-more {
        font-size: 3vw;
    }

        .blog-section .read-more svg {
        width: 2vh;
        height: 2vh;
    }


        .blog-section .read-more {
        font-size: 2vh;
        display: flex
;
        align-items: center !important;
        gap: 9px;
        width: max-content;
    }

}


@media (max-width: 768px) {
    .footer .footer-content {
        display: block;
    }

    .ennv_folder {
        width: 16vh !important;
    }

    .footer .footer-logo-section,
    .footer .footer-links-section,
    .footer .footer-contact-section {
        min-width: 100%;
        margin-bottom: 5vw;
    }

    .footer .footer-logo {
        width: 10vw;
    }

    .footer .footer-section-title {
        font-size: 4vw;
    }

       .footer .footer-description, .footer .footer-link a, .footer .contact-item {
           font-size: 1.5vh;
        text-align: left;
    }
    

    .footer .social-icon {
        width: 8vw;
        height: 8vw;
    }

    .footer .social-icon svg {
        width: 3.5vw;
        height: 3.5vw;
    }

    .footer .contact-icon {
        width: 3.5vw;
        height: 3.5vw;
        margin-right: 2vw;
    }

       .footer .footer-bottom {
        font-size: 1.6vh;
        padding: 3vw;
    }
}



@media (max-width: 768px) {


    .packages-section .packages-container {
        flex-direction: column;
        align-items: center;
    }

    .packages-section .package-card {
        max-width: 90vw;
        margin-bottom: 4vw;
    }

    .packages-section .package-image {
        height: 50vw;
        border-radius: 10px;
    }
 
        .packages-section .section-heading {
        font-size: 2.925vh;
        margin-bottom: 3vh;
        padding: 0vh 1vh;
    }

         .packages-section .package-title {
        font-size: 2.5vh;
        margin-bottom: 4vw;
        line-height: 1.5;
    }

    .packages-section {
        max-width: 90vw;
        margin: 0 auto;
        padding: 3vh 0 3vh;
    }


    .packages-section .read-more {
        color: #2196f3;
        text-decoration: none;
        font-size: 1.7vh;
        font-weight: 700;
        /* letter-spacing: 1px; */
    }

        .packages-section .nights-info {
        display: flex;
        align-items: center;
        font-size: 1.5vh;
        color: #5a6c7d;
        margin-top: 1.5vh;
    }

        .packages-section .package-detail, .packages-section .package-price, .read-more {
        font-size: 1.5vh !important;
        margin-top: 1vh;
    }

        .packages-section .detail-label {
        min-width: 12vh;
    }

    .packages-section.nights-info {
        font-size: 2.5vw;
    }

    .packages-section .check-icon {
        width: 3vw;
        height: 3vw;
        margin-right: 1.5vw;
    }

    .packages-section .check-icon::before {
        width: 1.5vw;
        height: 0.8vw;
        border-left: 0.4vw solid white;
        border-bottom: 0.4vw solid white;
    }

    .packages-section .book-now,
    .packages-section .page-btn,
    .packages-section .view-all-btn {
        font-size: 3vw;
        padding: 2vw 4vw;
        border-radius: 10px;
    }
}



/* Mobile responsiveness */
@media (max-width: 768px) {

        .blog_inst_tag {
        font-size: 1.223vh;
        padding: 0.5vh 1vh;
    }


 .booking-section {
    display: flex
;
    /* max-width: 90vw; */
    padding: 5vh 3vh;
    margin: 5vw auto;
    gap: 2vw;
    background: #EBFCFF;
}

    .rfnd h1 {
        font-size: 3.125vh;
        font-weight: 600;
        color: var(--dark-green);
    }

    .wrapper .main-content {
        flex-direction: column;
    }

    .rfnd h1 {
        font-size: 2.425vh;
        font-weight: 600;
        color: var(--dark-green);
    }

    .basic_boxxx {
        background: var(--dark-green);
        color: #fff;
        padding: 0.5vh 1.4vh;
        width: fit-content;
        border-radius: 20px;
        margin: 0px auto;
        margin-top: 1vw;
    }

    .bnner_otherr {
        height: 23vh;
        width: 100%;
        position: relative;
    }


    .wrapper .logo-overlay {
        padding: 2vw;
        top: 3vw;
        right: 3vw;
    }


    .wrapper .logo-icon {
        width: 6vw;
        height: 6vw;
    }


    .wrapper .logo-text {
        font-size: 2.5vw;
    }


    .wrapper .profile-overlay {
        bottom: 3vw;
        left: 3vw;
        padding: 2vw;
    }


    .wrapper .profile-img {
        width: 8vw;
        height: 8vw;
    }


    .wrapper .profile-text {
        font-size: 2.2vw;
    }


    .wrapper .vision-tag {
        font-size: 2vw;
        padding: 1vw 2vw;
    }


    .wrapper .main-heading {
        font-size: 3.125vh;
        margin-top: 1vh;
        margin-bottom: 2vh;
        padding-bottom: 2vh;
    }

    .wrapper .features {
        grid-template-columns: auto auto;
    }

    .wrapper .feature-item {
        font-size: 2.5vw;
    }


    .wrapper .feature-icon {
        font-size: 2.5vw;
    }

    .wrapper .vision-section {
        flex-direction: column;
        margin-top: 3vh;
    }

    .wrapper .vision-image {
        width: 100%;
        margin-bottom: 3vw;
    }


    .wrapper .vision-content {
        width: 100%;
    }


    .wrapper .section-title {
        font-size: 4vw;
    }


    .wrapper .section-text {
        font-size: 2.5vw;
    }
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .banner-section {
        padding: 15vw 5vw;
        background-size: 25vw 25vw;
    }

    .banner-section .banner-heading {
        font-size: 8vw;
        margin-bottom: 4vw;
    }

    .banner-section .banner-text {
        font-size: 3.5vw;
        margin-bottom: 6vw;
        max-width: 90%;
    }

    .banner-section .buttons-container {
        flex-direction: column;
        gap: 3vw;
    }

    .banner-section .btn {
        width: 50%;
        margin: 0 auto;
        padding: 3vw 6vw;
        font-size: 1.5vh;
    }

    .team-section {
        /* max-width: 1200px; */
        margin: 0 auto;
        padding: 5vh 3vh !important;
        padding-bottom: 3vw;
        text-align: center;
    }
}


/* Mobile responsiveness */
@media (max-width: 992px) {
    .team-section .team-member {
        width: 45%;
    }

    .team-section .member-image-container {
        height: 35vw;
    }

    .team-section.team-heading,
    .team-section.team-subheading {
        font-size: 4.5vw;
    }

    .team-section .team-description {
        font-size: 1.8vw;
        max-width: 85%;
    }

    .team-section .team-tag {
        font-size: 1.5vw;
    }

    .team-section .member-name {
        font-size: 2vw;
    }

    .team-section .member-position {
        font-size: 1.5vw;
    }

    .team-section .social-icon {
        width: 3vw;
        height: 3vw;
        font-size: 1.5vw;
    }
}

@media (max-width: 576px) {
    .team-section .team-member {
        width: 90%;
        margin-bottom: 2vh;
    }

    .team-section .member-image-container {
        height: 100%;
    }

     .team-section .team-heading, .team-section .team-subheading {
        font-size: 3vh;
        line-height: 25px;
        margin-top: 1vh;
        margin-bottom: 1vh;
    }

     .team-section .team-description {
        font-size: 2vh;
        max-width: 99%;
        margin-top: 2vh;
        margin-bottom: 2vh;
    }

    .team-section .team-tag {
        font-size: 2vw;
        padding: 1vw 3vw;
    }

      .team-section .member-name {
        font-size: 3vh;
    }

    .team-section .member-position {
        font-size: 1.5vh;
    }

    .team-section .social-icon {
        width: 6vw;
        height: 6vw;
        font-size: 3vw;
    }
}



@media (min-width: 768px) {
    .contacts .hero-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 4vw 0;
    }
}



@media (min-width: 768px) {
    .contacts .hero-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 4vw 0;
    }
}



@media (min-width: 768px) {
    .contacts .form-row {
        flex-direction: row;
        gap: 1vw;
    }


}



@media (min-width: 768px) {
    .contacts .map-section {
        flex-direction: row;
        align-items: center;
    }
}











@media (max-width: 768px) {



    .head_fork h1 {
       font-size: 1.223vh;
        padding: 0.5vh 1vh;
    }


      .tabs {
        margin-bottom: 14px;
        display: grid
;
        grid-template-columns: auto auto auto;
        justify-content: center;
        gap: 1vh;
    }

    .tab {
         padding: 10px 34px;
        margin-right: 10px;
        border: none;
        cursor: pointer;
        background: #ddd;
        border-radius: 27px;
        margin-bottom: 0vw;
        font-size: 1.5vh;
    }

    .contacts .hero-section {
    display: flex
;
    flex-direction: column;
    padding: 2vh 0;
}


    .gallery img {

        width: 100%;

    }
}




@media (max-width: 768px) {


    .container-box-different {
        flex-direction: column;
        gap: 4vw;
    }

    .container-box-different .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4vw;
    }

    .container-box-different .card {
        flex: 1;
        min-width: 80vw;
    }

    .container-box-different .card-body h3 {
        font-size: 4vw;
    }

    .container-box-different .card-body button {
        font-size: 2.5vw;
    }
}



@media (max-width: 768px) {
    .package_settinggs .container {
        flex-direction: column;
    }

    .package_settinggs .about-images img {
        width: 100%;
    }

    .footer .social-icons {
    margin-top: 3vh;
}

}




@media  (max-width:768px) {

     #random_form {
        padding: 2vh 3vh;
        padding-top: 4vh;
    }

    .page-wrapper {
        width: 100%;
        /* max-width: 1200px; */
        margin: 0 auto;
        padding: 3vh 3vh;
        text-align: center;
    }

    section.gallery_box {
    padding: 4vh 3vh;
    padding-top: 3vh;
}



            .btn_worksss a {
               text-decoration: none;
        /* background: red; */
        color: #fff;
        padding: 0.9vh 3vh;
        border-radius: 7px;
        background: #2d4356;
        margin-top: 1vh;
        border-radius: 28px;
    }
    

  
        .stats-section {
        width: 100%;
        background-color: #1a1a1a;
        padding: 3vh 2vw;
        /* margin: 4vh 0vw; */
        color: white;
        /* border-top: 3px solid #0099cc; */
        /* border-bottom: 3px solid #0099cc; */
    }

.blog_part_boxx {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
}

    .blog-section {
        /* max-width: 90vw; */
        margin: 0 auto;
        text-align: center;
        padding: 4vh 3vh;
        padding-top: 0vh;
    }



.blog-section .blog-title a {
    font-size: 1.4vh;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1vw;
    line-height: 1.4;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1vh;
}

    .blog-section .blog-title a {
        font-size: 2vh;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1vw;
        line-height: 1.4;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 1vh;
    }

        .dropdown span {
        padding: 14px 20px;
        padding-right: 52px;
    }

li.dropdown span {
    display: flex
;
    align-items: center;
    gap: 11px;
    justify-content: space-between;
}

.dropdown span i{
    font-size: 1.5vh !important;
}

}


@media  (max-width:768px){
    
        .banner-section {
        padding: 13vh 3vh;
        background-size: 25vw 25vw;
    }

        .banner-section {
        padding: 6vh 3vh;
        background-size: 25vw 25vw;
    }

    .banner-section .btn-icon {
    margin-left: 1.5vw;
    transform: rotate(-45deg);
}

.banner-section .banner-text {
        font-size: 3.5vw;
        margin-bottom: 6vw;
        max-width: 100%;
    }


    .social-icons a{
        width: 40px !important;
        height: 40px !important;
        font-size: 2vh !important;
        margin-left: 10px;
    }

        .blog-section .section-description {
        font-size: 1.2vh;
        max-width: 90vw;
        margin-top: 1vh;
    }

    .container-box-different .main-content .dropcap {
    float: left;
    font-size: 3.5vh;
    line-height: 1;
    margin-right: 0.8vw;
    font-weight: bold;
}

 
.contacts .book-btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 0.6vw 1.5vw;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.6rem;
    border: 1px solid #ddd;
    margin-bottom: 1.5vw;
}

.contacts .hero-title {
    font-size: 2.925vh;
    margin-bottom: 1vw;
    color: #2c3e50;
    font-weight: 600;
}

.contacts .form-title {
    font-size: 0.9rem;
    margin-bottom: 1vw;
    color: #555;
}

    .contacts input, .contacts textarea, .contacts select {
        width: 100%;
        padding: 1vh 1vh;
        /* padding-bottom: 2vh; */
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 0.9rem;
        color: #6b6b6b;
    }

.contacts .form-section {
    flex: 1;
    background-color: #f0f8ff;
    padding: 2vh;
    border-radius: 10px;
}


.contacts .form-group {
    flex: 1;
    margin-bottom: 1vh;

}


.contacts .submit-btn {
    background-color: #4a89dc;
    color: white;
    border: none;
    padding: 1vh 2vh;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.contact-item i {
    margin-right: 0vw;
    color: #fff;
    font-size: 1.5vh;
    /* margin-right: 1vh; */
}

.contacts .form-section {
        flex: 1;
        background-color: #f0f8ff;
        padding: 2vh;
        border-radius: 10px;
        width: 100%;
    }

        .services-title {
        font-size: 1.223vh;
        padding: 0.5vh 1vh;
    }

    .formms_foldss{
          font-size: 1.223vh;
        padding: 0.5vh 1vh;
    }

    .packages-section .section-heading br{
        display: none;
    }


    .head_fork p{
font-size: 2.925vh;
        margin-bottom: 3vh;
        padding: 0vh 1vh;
    }

               .head_fork p br{
                display: none;
               }


               .btn_worksss a i {
    transform: rotate(-45deg);
    margin-left: 0.9vh;
}

.test-class{
    font-size: 1.223vh;
        padding: 0.5vh 1vh;
}
}