@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #1d3557;
    --accent: #fca311;
    --text-font-family: "Poppins", sans-serif;
}
.text-primary{
    color: var(--primary) !important;
}
.bg-primary{
    background-color : var(--primary) !important;
}
body {
    font-family: var(--text-font-family);
    scroll-behavior: smooth;
    background: #fff;
    color: #333;
}
section{
    scroll-margin-top: 50px;
}
.title h6{
    position: relative;
    display: inline-block;
    padding-left: 25px;
    font-weight: 600;
}
.title h6::before{
    position: absolute;
    content: "";
    background: var(--primary);
    height: 100%;
    left: 0;
    top: 0px;
    transform: skew(-20deg);
    width: 8px;
}
.title h6::after{
    position: absolute;
    content: "";
    background: var(--primary);
    height: 100%;
    top: 0px;
    left: 12px;
    transform: skew(-20deg);
    width: 5px;
}
section{
    padding-top: 50px !important;
}

body p{
    text-align: justify;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary);
}

.navbar-light .navbar-toggler-icon {
    filter: invert(25%);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 100px !important;
    background: url("../media/banner1.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 15px;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
.hero-content p.lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

#booking label, #contact label{
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Features Section */
#features i {
    /* font-size: 2.5rem; */
    color: white;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.feature-box{
    background: linear-gradient(141deg, #1d3557, #3c5982);
    color: white;
    padding: 30px 20px;
    border-radius: 15px 0 15px 0;
    box-shadow: 6px 6px 0px 0px rgb(176 176 176 / 34%);
}
#features .col-md-4:hover i {
    color: var(--accent);
}
#features h5 {
    font-weight: 600;
}

/* Offer Section with before/after hover effect */
#offers {
    margin-top: 40px;
    margin-bottom: 60px;
}
.offer-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.offer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Before/After Image Effect */
.offer-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.offer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.offer-image-wrapper img.after {
    opacity: 0;
    z-index: 2;
}
.offer-card:hover .offer-image-wrapper img.before {
    opacity: 0;
}
.offer-card:hover .offer-image-wrapper img.after {
    opacity: 1;
}

/* Card Body */
.offer-card .card-body {
    padding: 20px;
    text-align: center;
    background: #fff;
}
.offer-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.offer-card p {
    color: #666;
    margin-bottom: 15px;
}

.offer-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.offer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.offer-image-wrapper .before {
    opacity: 1;
    z-index: 1;
}

.offer-image-wrapper .after {
    opacity: 0;
    z-index: 2;
}

.offer-card:hover .after {
    opacity: 1;
}

.offer-card:hover .before {
    opacity: 0;
}
.flight-card {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.flight-card:hover .offer-image {
    transform: scale(1.02);
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    z-index: 1;
}

.offer-text {
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

/* Form Section */
.form-section {
    padding: 60px 15px;
    background: #f8f9fa;
}
.form-section h2 {
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}
.form-control {
    border-radius: 8px;
    box-shadow: none;
    border: 1.5px solid #ddd;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    border: 1px solid #1d35573b !important;
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background-color: var(--primary);
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #14304a;
}

/* cta section */
.cta-dark-section {
    background-color: var(--primary); /* dark background */
}

.cta-dark-section h2,
.cta-dark-section h5,
.cta-dark-section p {
    color: #fff;
}

.cta-contact-btn {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-contact-btn:hover {
    background-color: #fff;
    color: #222;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.4);
}

/* Contact Section */
.contact-section {
    padding-bottom: 80px;
}
.contact-section h2, .title h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}
.contact-section form .form-control {
    margin-bottom: 20px;
}
iframe {
    border-radius: 12px;
    border: none;
    height: 350px;
    width: 100%;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
}

/* Footer */
footer.footer {
    background: var(--primary);
    color: white;
    text-align: center;
}
footer.footer a {
    color: #ffd166;
    text-decoration: underline;
}
footer.footer a:hover {
    color: #fca311;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p.lead {
        font-size: 1.1rem;
    }
    .offer-image-wrapper {
        height: 180px;
    }
    .team-img {
        height: 220px;
    }
}
.contact-us-section-bg{
    background : linear-gradient(to left, rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url("../media/contact-us_bg.jpg") center / cover no-repeat;
    padding: 80px 0px 80px 0px;
    
}
.india-to-canada-flight{
    background : url('../media/india-to-canada-flight.jpg') center / cover no-repeat;
    height : 100%;
}

