@import "tailwindcss";


/* Regular */
@font-face {
    font-family: 'Helvetica Neue LT Pro';
    src: url('./assets/fonts/helvetica-neue-lt-pro/HelveticaNeueLTProRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}



/* Bold */
@font-face {
    font-family: 'Helvetica Neue LT Pro';
    src: url('./assets/fonts/helvetica-neue-lt-pro/HelveticaNeueLTProBd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* GT Walsheim Trial */

/* Regular */
@font-face {
    font-family: 'GT Walsheim Trial';
    src: url('./assets/fonts/gt/GT-Walsheim-Regular-Trial-BF651b7fc7342f.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'GT Walsheim Trial';
    src: url('./assets/fonts/gt/GT-Walsheim-Bold-Trial-BF651b7fc570c3.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Medium (Agar hai) */
@font-face {
    font-family: 'GT Walsheim Trial';
    src: url('./assets/fonts/gt/GT-Walsheim-Medium-Trial.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@layer base {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    input,
    text,
    button,
    a,
    ul,
    li,
    label,
    select,
    option,
    textarea {
        font-family: 'Helvetica Neue LT Pro', sans-serif;
    }

}

.font-gt {
    font-family: 'GT Walsheim Trial', sans-serif !important;
}

/* Ab apni custom CSS */
:root {
    --primary: #1D4ED8;
    --second-blue: #005cb4;
    --primary-text: #ffffff;
    --secondry-text: #787a7f;
    --third-text: #262626;
    --fourth-text: #888888;
    --secondary: #9333EA;
    --global-red: #ef3d23;
    --primary-red: #ef3d23;
    --swiper-navigation-size: 20px !important;
}

.custom-red {
    background-color: var(--global-red)
}

.custom-blue {
    background-color: var(--primary);
}

.custom-blue:hover {
    background-color: #003bdb;
    /* background-image: url(); */
}


.hero-section {
    /* background-image: url(./assets/images/HomeImages/heroImg.jpg); */
    background-image: url(./images/HomeImages/heroImg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;

}

.home-discover-section {
    background-image: url(./images/HomeImages/MiddleBanner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto cover;

}

.logo-effect-bg::before {
    content: "";
    width: 180px;
    height: 40px;
    background: rgb(255, 255, 255);
    position: absolute;
    top: 3px;
    left: 0;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.login-signup-bg-shap {
    content: "";
    width: 120px;
    background: rgb(255, 0, 0);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

@media screen and (max-width:767px) {
    .logo-effect-bg::before {
        content: "";
        width: 150px;
        height: 40px;
        background: rgb(255, 255, 255);
        position: absolute;
        top: 3px;
        left: 0;
        clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
        z-index: 0;
    }
}

.logo-effect-bg img {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .logo-effect-bg img {
        left: 28px;
    }
}


.swiper-button-next,
.swiper-button-prev {
    background: #e63946;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #fff;
}

/* ======================= */

/* Custom arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--global-red, #e63946);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    color: #fff;
}

/* Gradient overlays */
.routes-swiper-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
    z-index: 10;
}

.routes-swiper-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, white, transparent);
    z-index: 10;
}