/* Navbar Background Gradient */
/* .navbar {
    background-image: linear-gradient(to right top, #022e70, #005595, #0079a3, #009c9b, #08bb86);
} */

* Navbar Item Hover Effect */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
    color: white;
    transition: color 0.3s ease-in-out;
}

/* Underline Animation */
.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #ffffff; /* Change this color */
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

/* Hover Effect */
.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
    color:white; /* Change text color on hover */
}

/* Offcanvas Menu */
.custom-offcanvas {
    max-width: 70vw !important;
    height: 100vh;
    border-radius: 0px 0px 0px 0px;
    opacity: 90%;
    background: #3B71CA;
    color: rgb(255, 255, 255);
    transition: transform 0.3s ease-in-out;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

/* Hero Content */
.hero-content {
    position: relative;
    padding-top: 1rem;
    margin-top: -100px; 
}

/* Background Video Container */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Background Video */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for opacity  */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.487);
}

/* Text not close*/
.hero-section h1,
.hero-section p,
.hero-section a {
    position: relative;
    z-index: 2;
}



/* Card Container */
.card-container {
    position: absolute;
    bottom: 40px; 
    width: 100%;
    z-index: 2;
}

/* Remove Gaps for LG and Above Using Bootstrap Classes */
.gx-lg-0 {
    --bs-gutter-x: 0 !important; /* Remove horizontal gap for LG and above */
}

/* Ensure Cards Don't Stretch */
.custom-card {
    max-width: 100%; /* Prevent any stretching issue */
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Hover Effect */
.custom-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Fade-Up Effect on Hover */
.card-content h4,
.card-content p,
.card-content i {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.4s ease-out;
}

.custom-card:hover .card-content h4,
.custom-card:hover .card-content p,
.custom-card:hover .card-content i {
    transform: translateY(-10px);
}

/* why choose us */

/* Overlay Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.623);
}

/* Glassmorphism Card Effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glassmorphism:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px #3B71CA;
}

/* Icons Styling */
.icon i {
    transition: transform 0.3s ease;
}

.glassmorphism:hover .icon i {
    transform: scale(1.2);
}
/* why choose us end */


/* Early Bird Offer Section */
.early-bird {
    background: linear-gradient(to right, #ff9800, #ffffff);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Pricing Cards */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.pricing-card {
    border: none;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Most Popular Card */
.popular {
    border: 2px solid #ff9800;
    background: linear-gradient(to right top, #022e70, #005595, #0079a3, #009c9b, #08bb86);
    color: white;
    animation: pulse 1.5s infinite alternate;
}


/* Pricing Button */
.btn-pricing {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
}



/* Testimonial Section Background */
.testimonial-section {
    background: transparent;
    padding: 50px 0;
}

/* Testimonial Card */
.testimonial-card {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Testimonial Image */
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid white;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: white;
    min-height: 70px;
}

/* Testimonial Name */
.testimonial-name {
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

/* Testimonial Country */
.testimonial-country {
    font-size: 13px;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item .row {
        display: flex;
        justify-content: center;
    }

    .testimonial-card {
        width: 90%;
        margin: 0 auto;
    }
}



