* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Slider Section */
.slider-container {
    position: relative;
    width: 100%;
    height: 68vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 160px;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 15s infinite ease-in-out;
}

.slide {
    width: 100vw;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}

.slide-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.slide1 {
    background-image: url('../../images/banner/slider-1.jpg');
}

.slide2 {
    background-image: url('../../images/banner/slider-2.jpg');
}

.slide3 {
    background-image: url('../../images/banner/slider-banner.png');
}

.pc-slide1 {
    background-image: url('../../images/banner/domestic-1.png');
}

.pc-slide2 {
    background-image: url('../../images/banner/international-1.png');
}

@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-100vw); }
    45% { transform: translateX(-100vw); }
    50% { transform: translateX(-200vw); }
    70% { transform: translateX(-200vw); }
    75% { transform: translateX(0); }
    100% { transform: translateX(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 10px auto;
    border-radius: 3px;
}

.section-title p {
    color: #666;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Card Section with Hover Effects */
.card-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 3rem auto;
    padding: 0 20px;
    max-width: 1200px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 360px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #007bff, #00bfff);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
}

.card h4 {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #007bff;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight {
    color: #007bff;
    font-weight: bold;
}

/* Features Section with Animation */
.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 4rem auto;
    padding: 0 20px;
    max-width: 1400px;
}

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff 0%, #00bfff 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    color: white;
}

.feature-card:hover h4,
.feature-card:hover p {
    color: white;
}

.feature-card img {
    width: 80px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Packages Section */
.premium-packages {
    padding: 4rem 20px;
    text-align: center;
    background: #f6f6f6;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 3rem auto;
    max-width: 1200px;
}

.package-card {
    background: #fff;
    border: none;
    width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.package-banner {
    padding: 25px;
    position: relative;
    color: white;
}

.package-banner span {
    display: block;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-card.platinum .package-banner {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.package-card.gold .package-banner {
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
}

.package-card.silver .package-banner {
    background: linear-gradient(135deg, #95a5a6 0%, #bdc3c7 100%);
}

.package-details {
    padding: 25px;
}

.package-details h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-card ul li {
    padding: 8px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

.package-card ul li:last-child {
    border-bottom: none;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
}

.platinum-color {
    color: #8e44ad;
}

.gold-color {
    color: #f39c12;
}

.silver-color {
    color: #95a5a6;
}

.orange-btn {
    background: linear-gradient(135deg, #ff6b00 0%, #ff9e00 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
    display: inline-block;
    justify-content: flex-end;
}

.orange-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,107,0,0.4);
}

/* Explore Section */
.explore-packages {
    padding: 4rem 20px;
    text-align: center;
    background: #efefef;
}

.package-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 3rem auto;
    max-width: 1200px;
}

.explore-package-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 360px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 10px;
}

.explore-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.package-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-package-card:hover .package-image {
    transform: scale(1.1);
}

.package-info {
    padding: 20px;
    text-align: left;
}

.package-title {
    color: #007bff;
    margin: 0 0 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 15px 0;
    padding: 10px;
}

.icons div {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.icons img {
    height: 24px;
    margin-bottom: 5px;
}

.location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.location::before {
    content: '📍';
    margin-right: 5px;
}

.description {
    font-size: 0.95rem;
    color: #555;
    margin: 15px 0;
    line-height: 1.6;
    padding: 10px;
}

.duration {
    font-size: 0.95rem;
    font-weight: 600;
    color: #007bff;
    margin: 15px 0;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.duration::before {
    content: '⏱️';
    margin-right: 5px;
}

.book-btn {
    background: linear-gradient(135deg, #297aa0 0%, #3aa8d0 100%);
    color: white;
    border: none;
    width: 80%;
    padding: 12px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(41,122,160,0.3);
}

.book-btn:hover {
    background: linear-gradient(135deg, #2a8bb0 0%, #46a8ca 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 90, 198, 0.4);
}

/* Holiday Theme Section */
.holiday-theme-section {
    background: linear-gradient(135deg, #68c1dd 0%, #b3e1ee 100%);
    padding: 4rem 20px;
    text-align: center;
}

.holiday-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
}

.holiday-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.holiday-image {
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
}

.holiday-text {
    text-align: left;
    margin-top: 30px;
}

.holiday-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f6f6f6;
    margin-bottom: 15px;
    line-height: 1.3;
}

.holiday-text h2 span {
    color: #085ec5;
}

.holiday-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.holiday-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tour-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 280px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.tour-card:nth-child(1) { animation-delay: 0.2s; }
.tour-card:nth-child(2) { animation-delay: 0.4s; }
.tour-card:nth-child(3) { animation-delay: 0.6s; }

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-content {
    padding: 20px;
}

.tour-card h3 {
    color: #007bff;
    margin: 10px 0;
    font-size: 1.2rem;
}

.tour-icons {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.tour-card p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #555;
}

.tour-desc {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 15px 0;
}

/* Honeymoon Section */
.honeymoon-section {
    padding: 4rem 20px;
    background: #efefef;
    text-align: center;
}

.honeymoon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 3rem auto;
    max-width: 1200px;
}

.honeymoon-card {
    background: white;
    border-radius: 15px;
    width: 350px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.honeymoon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.honeymoon-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.honeymoon-card:hover img {
    transform: scale(1.1);
}

.honeymoon-content {
    padding: 20px;
}

.honeymoon-content h3 {
    font-size: 1.3rem;
    color: #007bff;
    margin-bottom: 10px;
}

.honeymoon-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-button {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.view-button:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27,94,32,0.4);
}

/* Adventure Section */
.adventure-section {
    text-align: center;
    padding: 4rem 20px;
    background-color: #f8f9fa;
}

.adventure-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 3rem auto;
    max-width: 1200px;
}

.adventure-card {
    background: #fff;
    border-radius: 20px;
    width: 350px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.adventure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff 0%, #00bfff 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.adventure-card:hover::before {
    opacity: 1;
}

.adventure-card:hover {
    transform: translateY(-10px) scale(1.02);
    color: white;
}

.adventure-card:hover h3,
.adventure-card:hover .subtitle,
.adventure-card:hover .description {
    color: white;
}

.adventure-card .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.adventure-card:hover .icon {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.adventure-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.adventure-card .subtitle {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.adventure-card .description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-container {
        height: 55vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .slider-container {
        height: 50vh;
    }
    
    .holiday-container {
        flex-direction: column;
    }
    
    .holiday-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 45vh;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .card, 
    .feature-card, 
    .package-card, 
    .explore-package-card, 
    .honeymoon-card, 
    .adventure-card {
        width: 100%;
        max-width: 400px;
    }
    
    .tour-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 40vh;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .package-banner span {
        font-size: 1.2rem;
    }
    
    .holiday-text h2 {
        font-size: 1.8rem;
    }
}

/* Keyframe Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0,123,255,0.2);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Featured On Section */
.featured-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.featured-heading {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 40px;
}

.featured-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.logo-box {
    border: 3px solid #000;
    border-radius: 15px;
    padding: 20px 30px;
    background: #fff;
    width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.logo-box img {
    max-width: 100%;
    object-fit: contain;
}

/* Reviews Section */
.reviews-section {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.reviews-heading {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #111;
}

.swiper {
    width: 100%;
    padding: 20px 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.review-card h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.role {
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    color: #333;
    font-style: italic;
    margin: 15px 0;
    min-height: 60px;
}

.stars {
    color: #FFA500;
    font-size: 18px;
    margin-bottom: 20px;
}

.view-all-wrapper {
    margin-top: 30px;
}

.view-all-btn {
    padding: 12px 24px;
    background: #ff5c00;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 10px;
}

.view-all-btn:hover {
    background: #e45000;
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ff5c00;
}

.promo-image-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-promo-section {
    background-color: #97d3eb;
    padding: 60px 20px;
    color: white;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.promo-text {
    flex: 1;
    min-width: 280px;
    margin-right: 40px;
}

.promo-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
}

.promo-text p {
    font-size: 18px;
    margin: 10px 0;
}

.promo-qr {
    flex-shrink: 0;
    text-align: center;
}

.promo-qr img {
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    background: white;
    padding: 10px;
}

.stats-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLCAxMjMsIDI1NSwgMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.stats-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    display: inline-block;
}

.stats-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #007bff, #00bfff);
    margin: 15px auto 0;
    border-radius: 2px;
}

.stats-section p.subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 40px 25px;
    width: 240px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #007bff, #00bfff);
    transition: height 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}


.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}


.stat-number::after {
    content: '+';
    position: absolute;
    right: -15px;
    top: 0;
    font-size: 1.5rem;
    color: #007bff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    transition: color 0.3s ease;
    position: relative;
}

/* Counting Animation */
@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.full-image-section {
    width: 100%;
    height: 80vh;
    background-image: url('../../images/about.png');
    margin-top: 160px;
}

/* about Us Section */
.section {
  display: flex;
  padding: 60px 5%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section .content {
  flex: 1 1 45%;
  min-width: 300px;
  animation-delay: 0.2s;
}

.section h1 {
  font-size: clamp(24px, 3vw, 28px);
  color: #333;
  margin-bottom: 10px;
  animation: textReveal 0.8s ease-out both;
}

.section h2 {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: bold;
  margin: 10px 0;
  color: #1f3b6d;
  animation: textReveal 0.8s ease-out 0.1s both;
}

.section h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: bold;
  color: #2aa4f8;
  margin: 0 0 20px;
  animation: textReveal 0.8s ease-out 0.2s both;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.4s both;
}

.read-more {
  background-color: #002d40;
  color: white;
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: clamp(14px, 2vw, 16px);
  position: relative;
  overflow: hidden;
}

.read-more:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.read-more:hover {
  background-color: #005c77;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 45, 64, 0.3);
}

.read-more:hover:before {
  left: 100%;
}

.play-btn {
  width: 60px;
  height: 60px;
  background-color: #0099e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.play-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: scale(0);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 153, 230, 0.4);
}

.play-btn:hover:before {
  transform: scale(1.5);
  opacity: 0;
}

.section .image {
  flex: 1 1 45%;
  text-align: center;
  min-width: 300px;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section .image img {
  width: 100%;
  border-radius: 8px;
  max-width: 550px;
  height: auto;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.section .image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services {
  display: flex;
  justify-content: space-around;
  padding: 40px 5%;
  background-color: #002d40;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.service-box {
  color: white;
  text-align: center;
  padding: 20px;
  flex: 1 1 200px;
  min-width: 150px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.service-box:nth-child(1) { animation-delay: 0.7s; }
.service-box:nth-child(2) { animation-delay: 0.8s; }
.service-box:nth-child(3) { animation-delay: 0.9s; }
.service-box:nth-child(4) { animation-delay: 1.0s; }

.service-box i {
  font-size: 32px;
  margin-bottom: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-box h4 {
  margin-top: 10px;
  font-size: clamp(16px, 2vw, 18px);
  transition: color 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-box:hover i {
  transform: scale(1.2);
  color: #2aa4f8;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  background-color: #1a4b91;
  color: white;
}

.abt-section-wrapper {
  background-color: #ffffff;
  margin: 0 auto;
  width: 90%;
  padding: 0;
}

.abt-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin: 60px 0 40px;
  color: #333;
  position: relative;
}

.abt-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  margin: 15px auto 0;
  border-radius: 3px;
}

.abt-info-card {
  display: flex;
  background-color: white;
  margin: 0px auto;
  padding: 35px;
  border-radius: 12px;
  max-width: 1250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abt-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.abt-info-text {
  flex: 1 1 55%;
  min-width: 300px;
}

.abt-info-text h3 {
  color: #1a4b91;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.4;
}

.abt-info-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.abt-info-image {
  flex: 1 1 35%;
  min-width: 280px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.abt-info-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.abt-info-card:hover .abt-info-image img {
  transform: scale(1.03);
}

.abt-info-text .abt-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #1a4b91;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.abt-info-text .btn:hover {
  background-color: #143a7a;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .abt-info-card {
    padding: 30px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .abt-info-card {
    flex-direction: column;
    text-align: center;
    margin: 30px 20px;
    padding: 25px;
  }

  .abt-info-text, .info-image {
    flex: 1 1 100%;
  }

  .abt-section-title {
    margin: 50px 0 30px;
    font-size: 24px;
  }

  .abt-section-title::after {
    margin: 12px auto 0;
  }
}

@media (max-width: 480px) {
  .abt-info-card {
    margin: 25px 15px;
    padding: 20px;
  }

  .abt-info-text h3 {
    font-size: 20px;
  }
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: #000;
    max-width: 80%;
    width: 640px;
}

.modal video {
    width: 100%;
    height: 600px;
}
