body {
    margin: 0;
    overflow-x: hidden;
}


.custom-container{
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}


/*///////////////////////////////////////////////////////////////////CSS For  Header Start//////////////////////////////////////////////////////////////////////////////////////*/

.header-section{
    background-color: #0056b3;
    padding: 10px 60px;
    width: 100%;
}

.header-section .main-header-links{
    display: flex;
}

.header-section .main-header-logo{
    display: flex;
    justify-content: center;
}

.header-section .main-header-language{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-section .main-header-links nav ul{
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-section .main-header-links nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    font-family: sans-serif;

}

.header-section .main-header-logo .logo {
    display: flex;
    align-items: center;
}

.header-section .main-header-logo .logo svg {
    width: 100%;
}


.header-section .main-header-language .language-picker {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.header-section .main-header-language .language-picker img {
    width: 30px;
    height: 22px;
}

.header-section .main-header-language .language-picker .arrow-icon {
    margin-left: 5px;
    font-size: 12px;
    filter: invert(1);
}

.header-section .main-header-language .language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    color: black;
    min-width: 100px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.header-section .main-header-language .language-dropdown a {
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-section .main-header-language .language-dropdown a img {
    height: 20px;
    margin-right: 10px;
}

.header-section .main-header-language .language-dropdown a:hover {
    background-color: #f1f1f1;
}

.header-section .main-header-language .show {
    display: block;
}

.header-section .main-header-language .content {
    padding: 20px;
}

/*///////////////////////////////////////////////////////////////////CSS For  Header End//////////////////////////////////////////////////////////////////////////////////////*/



/*/////////////////////////////////////////////////////////////////CSS For Burger Menu Start//////////////////////////////////////////////////////////////////////////////////////*/

.burger-header-section{
    display: none;

}
.burger-header-section.language-picker{
    margin-right: -40px;
}

.burger-header-section .burger-header-logo .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.burger-header-section .burger-header-logo .logo img {
    width: 110px;
}

.burger-header-section .burger-header-language .language-picker {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.burger-header-section .burger-header-language .language-picker img {
    width: 30px;
    height: 22px;
}
.burger-header-section .burger-header-language .language-picker .arrow-icon {
    margin-left: 5px;
    font-size: 12px;
    filter: invert(1);
}


.burger-header-section .lang-toggle{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
}


.burger-header-section .burger-header-language .language-picker{
    margin-right: -30px;
}
.burger-header-section .burger-header-language .language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    color: black;
    min-width: 100px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.burger-header-section .burger-header-language .language-dropdown a {
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.burger-header-section .burger-header-language .language-dropdown a img {
    height: 20px;
    margin-right: 10px;
}

.burger-header-section .burger-header-language .language-dropdown a:hover {
    background-color: #f1f1f1;
}

.burger-header-section .burger-header-language .show {
    display: block;
}

.burger-header-section .burger-header-language .content {
    padding: 20px;
}


.burger-header-section .burger-header-nav nav{
    height: 0;
}


.burger-header-section .burger-header-nav nav #toggle {
    display: block;
    width: 28px;
    height: 30px;
    margin-left: auto;
}

.burger-header-section .burger-header-nav nav #toggle span:after,
.burger-header-section .burger-header-nav nav #toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
}

.burger-header-section .burger-header-nav nav #toggle span:after{
    top: 9px;
}

.burger-header-section .burger-header-nav nav #toggle span {
    position: relative;
    display: block;
}

.burger-header-section .burger-header-nav nav #toggle span,
.burger-header-section .burger-header-nav nav #toggle span:after,
.burger-header-section .burger-header-nav nav #toggle span:before {
    width: 100%;
    height: 5px;
    background-color: #fff;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
}

/* on activation */
.burger-header-section .burger-header-nav nav #toggle.on span {
    background-color: transparent;
}

.burger-header-section .burger-header-nav nav #toggle.on span:before {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-header-section .burger-header-nav nav #toggle.on span:after {
    transform: rotate(-45deg) translate(7px, -8px);
}

.burger-header-section .burger-header-nav nav #toggle.on + #menu {
    opacity: 1;
    visibility: visible;
}

/* menu appearance*/
.burger-header-section .burger-header-nav nav #menu {
    position: relative;
    color: #DD5044;
    width: 200px;
    padding: 10px;
    margin: auto;
    text-align: center;
    border-radius: 4px;
    background: white;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    /* just for this demo */
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
    font-family: sans-serif;
}

.burger-header-section .burger-header-nav nav ul, li, li a {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.burger-header-section .burger-header-nav nav li a {
    padding: 5px;
    color: #888;
    text-decoration: none;
    transition: all .2s;
}

.burger-header-section .burger-header-nav nav li a:hover,
.burger-header-section .burger-header-nav nav li a:focus {
    background: #1ABC9C;
    color: #fff;
}


.burger-header-section .burger-column-wrap{
    justify-content: space-between ;
    display: flex;
    align-items: center;
}


@media (max-width: 992px) and (min-width: 768px) {

    .burger-header-section .col-md-12{
        justify-content: space-between !important;
    }

    .burger-header-section {
        padding: 10px 20px;
    }

    .burger-header-section .burger-header-nav nav #menu {
        width: 100%;
        text-align: justify;
    }

    .burger-header-section .burger-header-logo .logo img {
        width: 90px;
    }
}

@media (max-width: 767px) {


    .burger-header-section .burger-header-nav nav #toggle span{
        height: 2px;
    }
   
   .burger-header-section .burger-header-nav nav #toggle span:before {
        height: 2px;
    }
   
    .burger-header-section .burger-header-nav nav #toggle span:after {
        height: 2px;
    }


    .burger-header-section .burger-header-language .language-picker{
        margin-right: -40px;
    }
     
     .burger-header-section .burger-header-language .language-picker {
        display: flex;
        gap: 10px;
     }


   .burger-header-section .container{
        width: 100%;
    }

    .burger-header-section {
        padding: 10px;
        flex-direction: column;
        align-items: 
        flex-start;
    }

    .burger-header-section .burger-header-logo .logo img {
        width: 80px;
    }

    .burger-header-section .burger-header-nav {
        width: 100%;
        text-align: -webkit-right;
    }

    .burger-header-section .burger-header-nav nav #toggle {
        margin: 0;
    }

    .burger-header-section .burger-header-nav nav #menu {
        position: relative;
        width: 100%;
        background-color: #fff;
        text-align: center;
        padding: 10px 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .burger-header-section .burger-header-nav nav ul {
        padding-left: 0;
    }

    .burger-header-section .burger-header-nav nav li {
        margin-bottom: 10px;
    }
}

@media (min-width: 576px){
    .burger-header-section .container{
        max-width: 100%;
    }
}

/*///////////////////////////////////////////////////////////////////CSS For Burger Menu End//////////////////////////////////////////////////////////////////////////////////////*/




/*///////////////////////////////////////////////////////////////////CSS For Hero Section Start//////////////////////////////////////////////////////////////////////////////////////*/

/* Input wrapper styling */
.hero-section .input-wrapper {
    position: relative;
    min-width: 170px;
}

/* Floating label styling */
.hero-section .floating-label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #050B20;
    font-size: 15px;
    font-weight: 700;
    line-height: 28px;
    font-family: sans-serif;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hero-section .search-input {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 28px;
    font-family: sans-serif;
    border: none;
    /* border-radius: 5px; */
    outline: none;
    color: #050B20;
}

/* When input is focused or filled, move label upwards */
.hero-section .search-input:focus + .floating-label,
.hero-section .input-wrapper.focus .floating-label {
    top: -0px;
    left: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 287px;
    font-family: sans-serif;
    color: #99999B;
}

.hero-section .search-input:focus {
    border-color: #0056b3;
}

.hero-section .input-wrapper.filled .floating-label {
    opacity: 0.5;
}


/* When input is focused or filled, move label upwards */
.search-field .search-input:focus + .floating-label,
.search-field .input-wrapper.filled .floating-label {
    top: -4px;
    left: 10px;
    font-size: 12px;
    color: #99999B;
}

/* When input is not focused and empty, keep label in place */
.search-field .search-input:not(:focus):placeholder-shown + .floating-label {
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #050B20;
}


.hero-section {
    background-image: url("../images/main-banner.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 10rem;
}

.hero-section .search-container {
    background: white;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding: 10px 40px;
    min-height: 100px;
}

.hero-section .search-container .icon-holder svg{
    width: 100%;
}

.hero-section .input-group {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allow the input group to take available space */
    width: 100%;
}

.hero-section .divider {
    width: 2px;
    height: 30px;
    background: #ccc;
    margin-right: 30px;
}

.hero-section .search-button {
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 14px 27px;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    gap: 10px;
}

.hero-section .search-button:hover {
    background: #004494;
}

@media (max-width: 992px){
    .header-section{
        display: none;
    }

    .burger-header-section{
        display: block;
        justify-content: space-between;
        align-items: center;
        background-color: #0056b3;
        padding: 10px 0;
        width: 100%;
    }
}

@media (max-width: 767px) {

    .burger-header-section{
        padding: 10px;
    }


    .hero-section {
        padding: 5rem 1rem; /* Reduced padding for smaller screens */
    }

    .hero-section .search-container {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
        border-radius: 15px;
    }

    .hero-section .search-container .icon-holder {
        display: none;
    }

    .hero-section .input-group {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .hero-section .input-group input {
        min-width: 100%; /* Full width inputs */
        margin-bottom: 10px; /* Space between inputs */
    }

    .hero-section .divider {
        display: none; /* Hide divider on mobile */
    }

    .hero-section .search-button {
        min-width: 100%; /* Full width button */
    }


    .result-section {
        margin: 0 auto !important;
        padding: 0;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {

    .burger-header-section{
        padding: 10px 0;
    }

    .hero-section {
        padding: 7rem 2rem; /* Adjust padding for tablets */
    }

    .hero-section .search-container {
        padding: 15px 30px; /* Adjust padding */
    }

    .hero-section .input-group {
        flex-direction: row; /* Keep inputs in a row */
    }

    .hero-section .input-group input {
        min-width: 120px; /* Adjust input width for tablet */
        margin-right: 15px; /* Space between inputs */
    }
}

/*///////////////////////////////////////////////////////////////////CSS For Hero Section End//////////////////////////////////////////////////////////////////////////////////////*/



/*///////////////////////////////////////////////////////////////////CSS For Second Section Start//////////////////////////////////////////////////////////////////////////////////////*/

.second-section {
    padding: 66px 20px 0; /* Default for large screens */
}

.second-section .modification-text h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    text-align: center;
    font-family: sans-serif;
    color: #050B20;
}

.second-section .modification-text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    color: #8F8D8D;
    max-width: 1063px;
    margin: 0 auto;
    font-family: sans-serif;
}

.second-section .explore-btn-holder {
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.second-section .explore-btn-holder a {
    text-decoration: none;
}

.second-section .explore-btn-holder a button {
    width: 143px;
    background-color: #0071CE;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0071CE;
    padding: 12px 32px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    font-family: sans-serif;
    transition: background-color 0.3s ease;
}

.second-section .explore-btn-holder a button:hover {
    background-color: #0056a3; /* Slightly darker blue on hover */
}

/* Media Queries for Responsiveness */

/* For Tablets and smaller desktops */
@media (max-width: 992px) {
    .second-section {
        padding: 60px 20px; /* Reduce padding for tablet screens */
    }

    .second-section .modification-text h1 {
        font-size: 32px; /* Reduce font size for tablet */
        line-height: 42px;
    }

    .second-section .modification-text p {
        font-size: 20px; /* Adjust paragraph font size */
        line-height: 28px;
    }

    .second-section .explore-btn-holder a button {
        width: 130px; /* Slightly smaller button */
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* For Mobile Devices */
@media (max-width: 576px) {
    .second-section {
        padding: 40px 20px; /* Much smaller padding for mobile */
    }

    .second-section .modification-text h1 {
        font-size: 28px; /* Smaller font size for mobile */
        line-height: 36px;
    }

    .second-section .modification-text p {
        font-size: 18px; /* Reduce paragraph font size */
        line-height: 26px;
    }

    .second-section .explore-btn-holder a button {
        width: 100%; /* Full-width button for mobile */
        max-width: 200px; /* Constrain the button size */
        padding: 10px 20px;
        font-size: 15px;
    }
}

/*///////////////////////////////////////////////////////////////////CSS For Second Section End//////////////////////////////////////////////////////////////////////////////////////*/





/*///////////////////////////////////////////////////////////////////CSS For Third Section Start//////////////////////////////////////////////////////////////////////////////////////*/

.third-section {
    background-image: url(../images/travel-banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 20px 65px;; /* Default padding for large screens */
}

.third-section .modification-text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    color: white;
    font-family: sans-serif;
}

.third-section .modification-text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    color: white;
    max-width: 883px;
    font-family: sans-serif;
    margin: 0 auto;;
}

.third-section .explore-btn-holder {
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.third-section .explore-btn-holder a {
    text-decoration: none;
    font-family: sans-serif;
}

.third-section .explore-btn-holder a button {
    width: 175px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    padding: 12px 14px;
    color: #1C69D4;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    font-family: sans-serif;
}

.third-section .explore-btn-holder a button:hover {
    background-color: #f0f0f0; /* Add a hover effect */
}

/* Media Queries for Responsiveness */

/* For Tablets and smaller desktops */
@media (max-width: 992px) {
    .third-section {
        padding: 80px 20px 60px; /* Reduce padding for tablet screens */
    }

    .third-section .modification-text h1 {
        font-size: 32px; /* Reduce heading size for tablet */
        line-height: 42px;
    }

    .third-section .modification-text p {
        font-size: 20px; /* Reduce paragraph font size */
        line-height: 28px;
    }

    .third-section .explore-btn-holder a button {
        width: 175px; /* Slightly smaller button */
        padding: 10px 12px;
        font-size: 16px;
    }
}

/* For Mobile Devices */
@media (max-width: 576px) {
    .third-section {
        padding: 60px 20px 40px; /* Much smaller padding for mobile */
        background-position: top; /* Adjust background position for mobile */
    }

    .third-section .modification-text h1 {
        font-size: 28px; /* Smaller font size for mobile */
        line-height: 36px;
    }

    .third-section .modification-text p {
        font-size: 18px; /* Reduce paragraph font size */
        line-height: 26px;
    }

    .third-section .explore-btn-holder a button {
        width: 100%; /* Full-width button on mobile */
        max-width: 200px; /* Limit button width */
        padding: 10px;
        font-size: 15px;
    }
}

/*///////////////////////////////////////////////////////////////////CSS For Third Section End//////////////////////////////////////////////////////////////////////////////////////*/




/*///////////////////////////////////////////////////////////////////CSS For Fourth Section Start//////////////////////////////////////////////////////////////////////////////////////*/

.fourth-section .text-box {
    background-color: #0062cc;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 38px 40px 80px;
    height: 457px;
}

.fourth-section .text-box h2 {
    font-size: 40px;
    font-weight: 700;
     margin-bottom: 10px;
    font-family: sans-serif;
    line-height: 64px;
}

.fourth-section .text-box p {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 36px;
    font-family: sans-serif;
}

.fourth-section .input-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.fourth-section .input-box input {
    width: 100%;
    padding: 17px 16px;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 8px;
    border: 1px solid #575757;
    flex: 1;
    margin-right: 10px;
}

.fourth-section .input-box a button {
    padding: 12px 41px;
    background-color: white;
    color: #0062cc;
    border: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    min-width: 172px;
    font-family: sans-serif;
}

.fourth-section .input-box a button:hover {
    background-color: #0056b3;
    color: white;
}

.fourth-section .image-holder img {
    width: 100%;
    height: 457px;
    object-fit: cover; /* Ensure the image covers the area without distortion */
}

/* Media Queries for Responsiveness */

@media (max-width: 1024px){

    .fourth-section .text-box {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .fourth-section .text-box {
        padding: 50px 20px; /* Reduce padding on tablets */
        height: 400px;
    }

    .fourth-section .text-box h2 {
        font-size: 1.75rem; /* Slightly smaller heading for tablets */
    }

    .fourth-section .text-box p {
        font-size: 20px; /* Reduce paragraph font size */
        line-height: 30px;
    }

    .fourth-section .input-box {
        gap: 30px; /* Reduce gap between input and button */
    }

    .fourth-section .image-holder img {
        height: 400px; /* Adjust image height for tablets */
    }
}

@media (max-width: 576px) {
    .fourth-section .text-box {
        padding: 40px 20px; /* Further reduce padding for mobile screens */
        min-height: auto;
        text-align: center; /* Center-align text on mobile */
    }

    .fourth-section .text-box h2 {
        font-size: 1.5rem; /* Smaller heading for mobile */
    }

    .fourth-section .text-box p {
        font-size: 18px; /* Smaller paragraph text for mobile */
        line-height: 28px;
    }

    .fourth-section .input-box {
        width: 100%;
        align-items: center; /* Center input and button */
        gap: 20px;
    }

    .fourth-section .input-box input {
        width: 100%; /* Full width input for mobile */
    }

    .fourth-section .input-box a button {
        width: 100%; /* Full width button for mobile */
        max-width: 200px; /* Constrain button width on mobile */
    }

    .fourth-section .image-holder img {
        height: auto; /* Let the image height adjust naturally */
        max-height: 300px; /* Constrain the max height for mobile */
    }
}

/*///////////////////////////////////////////////////////////////////CSS For Fourth Section End//////////////////////////////////////////////////////////////////////////////////////*/





/*///////////////////////////////////////////////////////////////////CSS For Footer Section Start//////////////////////////////////////////////////////////////////////////////////////*/

.footer-section {
    background-color: #333333;
    padding: 60px 55px 0;
}

.footer-section .footer-info h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: white;
    font-family: sans-serif;
}

.footer-section .footer-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: white;
    white-space: pre-line;
    font-family: sans-serif;
}

.footer-section .footer-info p a {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: white;
    text-decoration: none;
    font-family: sans-serif;
}

.footer-section .copy-write-text {
    text-align: center;
    margin: 50px auto 0;
}

.footer-section .copy-write-text p {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: white;
    white-space: pre-line;
}


@media (max-width: 991px) {
    .footer-section {
        padding: 40px 30px 0;
    }

    .footer-section .custom-container {
        padding: 0 15px;
    }

    /* Each column will take 50% width on tablets */
    .footer-section .col-md-3 {
        width: 100%;
        padding: 10px;
        box-sizing: content-box;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    /* Adjust font sizes for tablet */
    .footer-section .footer-info h3 {
        font-size: 16px;
    }

    .footer-section .footer-info p {
        font-size: 14px;
    }

    .footer-section .copy-write-text p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 30px 15px 0;
    }

    /* Each column will take 100% width on mobile */
    .footer-section .col-md-3 {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    /* Reduce font sizes for small mobile screens */
    .footer-section .footer-info h3 {
        font-size: 14px;
    }

    .footer-section .footer-info p {
        font-size: 12px;
    }

    .footer-section .copy-write-text p {
        font-size: 14px;
    }

    /* Adjust the logo size for smaller screens */
    .footer-section .footer-logo img {
        max-width: 80%;
        height: auto;
        margin: 0 auto;
    }
}

/*///////////////////////////////////////////////////////////////////CSS For Footer Section End//////////////////////////////////////////////////////////////////////////////////////*/


/*///////////////////////////////////////////////////////////////////CSS For Hide Section Start//////////////////////////////////////////////////////////////////////////////////////*/


.result-section {
    margin: 54px auto 0;
    padding: 0;
}

.result-section .swiper {
    width: 100%;
    height: 600px;
}

.result-section .swiper-slide {
    text-align: center;
    font-size: 18px;
    font-family: sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.result-section .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    display: block !important;
    background: white !important;
    border: 2px solid white !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.result-section .swiper-pagination-bullet-active {
    opacity: 1 !important;
}

.result-section .swiper-pagination-bullet-active::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 6px !important;
    height: 6px !important;
    background-color: white !important;
    border-radius: 50% !important;
}

.result-section .swiper-pagination-bullet-active::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid white !important;
    border-radius: 50% !important;
    opacity: 0.5 !important;
    animation: pulse 1s infinite !important;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1) !important;
        opacity: 0.5 !important;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5) !important;
        opacity: 0 !important;
    }
}

.result-section .swiper-pagination-vertical {
    top: 68% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    position: absolute !important;
    right: auto !important;
    left: 95% !important;
}
@media (max-width: 767px) {
    .result-section .swiper-pagination-vertical {
        top: 16% !important;
        bottom: 10px !important;
        transform: none !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 14px !important;
        right: 0 !important;
        width: 100% !important;
    }


    .result-section .swiper-pagination-vertical .swiper-pagination-bullet,
    .result-section .swiper-pagination-bullet-active::before,
    .result-section .swiper-pagination-bullet-active::after {
        width: 8px !important;
        height: 8px !important;
    }

    .result-section .swiper-pagination-bullet-active::before {
        width: 18px !important;
        height: 18px !important;
        border: 1px solid white;
        background: transparent ! IMPORTANT;
    }
}

@media (max-width: 425px){
    .result-section .swiper-pagination-vertical {
        top: auto !important;
        bottom: 10px !important;
        transform: none !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 14px !important;
        /* right: 0 !important; */
        width: 100% !important;
        left: 0 !important;
    }

    .result-section .swiper-pagination-bullet-active::before {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 6px !important;
        height: 6px !important;
        background-color: white !important;
        border-radius: 50% !important;
    }


    .result-section .swiper-pagination-bullet-active::after {
        width: 18px !important;
        height: 18px !important;
    }
}


.result-section .car-overview-heading {
    padding: 50px 5% 0;
    border-top: 1px solid #C2C1C1;
}

.result-section .car-overview-info {
    padding: 0 5% 20px;
}

.result-section .heading-text h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #050B20;
}

.result-section .car-info, .result-section .feature-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 39px;
    margin: 19px 0;
}

.result-section .car-info img, .result-section .feature-info svg {
    min-width: 32px;
}

.result-section .feature-info svg{
    min-width: 24px;
}

.result-section .car-info h5{
    margin: 0;
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 700;
    line-height: 32px;
    color: #050B20;
}

.result-section .feature-info h5 {
    margin: 0;
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 700;
    line-height: 24px;
    color: #050B20;
}

.result-section .description-text p {
    font-size: 24px;
    font-family: sans-serif;
    font-weight: 400;
    line-height: 32px;
    color: #8F8D8D;
    margin-top: 16px;
}

.result-section .description-button {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.result-section .description-button a {
    text-decoration: none;
}

.result-section .description-button a button {
    width: 100%;
    /* max-width: 374px; */
    border-radius: 16px;
    background-color: #0071CE;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    padding: 12px 14px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    font-family: sans-serif;
}

.result-section .description-button a button:hover {
    background-color: #03a9f4;
}

.result-section .car-info .info-number, .result-section .car-info .info-number-2 {
    margin-top: 20px;
}

.result-section .car-info .info-number {
    position: absolute;
    left: 35%;
}

.result-section .car-info .info-number-2 {
    position: absolute;
    left: 70%;
}


.result-section .car-info .second-info-number {
    position: absolute;
    left: 35%;
}

.result-section .car-info .second-info-number-2 {
    position: absolute;
    left: 80%;
}

.result-section .info-number p, .second-info-number p, .result-section .dimension-number p, .info-number-2, .second-info-number-2 p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    font-family: sans-serif;
    color: #47484A;

}


.result-section  .second-info-number p, .second-info-number-2 p{
    margin: 0;

}

.result-section .dimension-number {
    margin-top: 43px;
}


@media (max-width: 1200px) {
    .result-section .car-info, .result-section .feature-info {
        flex-direction: row;
        align-items: center;
    }
    .result-section .car-info img {
        min-width: 25px;
    }
    .result-section .car-info h5, .result-section .feature-info h5 {
        font-size: 18px;
    }

    .result-section .car-info .info-number {
        position: absolute;
        left: 35%;
    }

    .result-section .car-info .info-number-2 {
        position: absolute;
        left: 75%;
    }
}

@media (max-width: 992px) {

    .car-overview-info .col-md-3{
        flex: 0 0 auto;
        width: 100%;
    }

    .result-section .car-overview-info {
        display: block;
    }

    .result-section .car-info .info-number-2 {
        position: absolute;
        left: 50%;
    }

    .result-section .car-info .second-info-number-2 {
        position: absolute;
        left: 50%;
    }

    .result-section .car-info .info-number {
        position: absolute;
        left: 50%;
    }

    .result-section .car-info .second-info-number {
        position: absolute;
        left: 50%;
    }


    .result-section .heading-text h1 {
        font-size: 28px;
    }
    .result-section .description-text p {
        font-size: 20px;
    }
    .result-section .description-button a button {
        font-size: 18px;
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .result-section .car-overview-heading {
        padding: 35px 20px 0;
    }

    .result-section .car-info h5, .result-section .feature-info h5 {
        font-size: 16px;
    }
    .result-section .info-number p, .result-section .dimension-number p, .info-number-2 {
        font-size: 16px;
    }


    .result-section .second-info-number p, .second-info-number-2 p {
        font-size: 16px;
    }

    .car-overview-info .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }
    .result-section .car-overview-info {
        flex-direction: column;
        padding: 0 20px 20px;
    }
    .result-section .car-info {
        margin: 20px 0;
    }
    .result-section .car-info .info-number, .result-section .car-info .info-number-2 {
        left: 68%;
    }
    .result-section .car-info .second-info-number, .result-section .car-info .second-info-number-2 {
        left: 68%;
    }
    .result-section .description-text p {
        margin: 0 auto;
    }

    .result-section .description-button {
        margin-top: 20px;

    }

    .car-overview-info .col-md-3{
        width: 100%;
    }



}

@media (max-width: 576px) {

    .result-section .description-button {
        display: flex;
        /* justify-content: center; */
    }

    .fourth-section .input-box input {
        margin-right: 0;
    }


    .second-section .col-md-12{
        padding: 0;
    }

    .third-section .col-md-12{
        padding: 0;
    }


    .result-section .car-overview-heading .heading-text{
        padding: 0;
    }
    .result-section .car-overview-info .col-md-3 {
        padding: 0;
    }

    .result-section .car-overview-info .col-md-6 {
        padding: 0;
    }

    .result-section .car-overview-info .col-md-12{
        padding: 0;
    }


    .result-section .heading-text h1 {
        font-size: 24px;
    }
    .result-section .description-text p {
        font-size: 18px;
    }
    .result-section .description-button a button {
        font-size: 16px;
    }
}

@media (max-width: 375px){
    .result-section .car-info, .result-section .feature-info {
        gap: 10px;
    }

    .result-section .car-info h5, .result-section .feature-info h5 {
        font-size: 14px;
    }

}

/*///////////////////////////////////////////////////////////////////CSS For Hide Section End//////////////////////////////////////////////////////////////////////////////////////*/
