:root {
    --dark-blue: #002664;
    --white: #ffffff;
    --sky: #13b5ea;
    --gray: #555555;
    --bg-light: #f9f9f9;
    --transition-speed: 0.6s;
}

/* About Us Section */
.about-us {
    padding: 60px 5%;
    background-color: var(--bg-light);
    overflow: hidden;
}

/* Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left Video */
.about-video {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    aspect-ratio: 1 / 1; /* square frame */
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-speed) ease;
}

.about-video.visible {
    transform: translateY(0);
    opacity: 1;
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

/* Right Content */
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-speed) ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content h2 {
    font-size: 2.4rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-content .subtitle {
    font-size: 1.2rem;
    color: var(--sky);
    font-weight: 500;
    margin-bottom: 12px;
}

.about-content .intro {
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--gray);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease 0.2s;
}

.about-content.visible .intro {
    opacity: 1;
    transform: translateY(0);
}

.about-content .intro span {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Features List */
.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-features li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.4;
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-speed) ease;
}

.about-content.visible .about-features li {
    opacity: 1;
    transform: translateX(0);
}

.about-features li i {
    color: var(--sky);
    font-size: 1.1rem;
    min-width: 22px;
}

/* Button */
.about-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,38,100,0.9);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,38,100,0.25);
    opacity: 0;
    transform: translateY(10px);
}

.about-content.visible .btn {
    opacity: 1;
    transform: translateY(0);
}

.about-content .btn:hover {
    background: var(--sky);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19,181,234,0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 2rem;
    }
    .about-content .subtitle {
        font-size: 1rem;
    }
    .about-content .intro {
        font-size: 0.95rem;
    }
    .about-features li {
        font-size: 0.95rem;
        gap: 8px;
    }
}

/* Features Section */
.features-section {
    position: relative;
    background: url('assests/slider1.png') center/cover no-repeat;
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
}

.features-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    transition: background 0.5s ease;
}

.features-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.features-section.visible .features-container {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--sky);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 181, 234, 0.1) 0%, rgba(0, 38, 100, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card .icon {
    font-size: 2.8rem;
    color: var(--sky);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card .description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(10px);
    position: relative;
    z-index: 1;
}

.feature-card:hover .description {
    opacity: 0.9;
    max-height: 200px;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .features-section {
        padding: 80px 15px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        max-width: 600px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-card .icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 60px 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card .description {
        font-size: 0.9rem;
    }
}

/* ================================
   PRICING SECTION
================================ */
.pricing-section {
    padding: 80px 5%;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

/* LEFT SIDE TEXT — CLEAN PROFESSIONAL STYLE */
.pricing-info {
    flex: 1;
    padding-right: 30px;
}

.pricing-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #002664;
    margin-bottom: 18px;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 520px;
}

.pricing-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 28px;
}

/* FEATURES LIST */
.pricing-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-features .feature i {
    font-size: 1.15rem;
    color: #0a7ad6;
}

/* Pricing CTA link under text block */
.pricing-cta {
    margin-top: 24px;
}

.pricing-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #002664;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.pricing-cta-link span {
    position: relative;
}

.pricing-cta-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #002664, #13b5ea);
    border-radius: 999px;
    transition: width 0.25s ease;
}

.pricing-cta-link i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.pricing-cta-link:hover::after {
    width: 100%;
}

.pricing-cta-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .pricing-cta {
        display: flex;
        justify-content: center;
    }
}


/* Right Side - Pricing Cards */
.pricing-slider {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    position: relative;
    padding: 0 15px;
}

/* Card Styling */
.price-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin: 0 auto;
    max-width: 500px;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
    position: relative;
    padding-bottom: 15px;
}

.price-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--sky);
    border-radius: 3px;
}

.price-card.premium h3::after {
    background: #002664;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.price-card ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.price-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: #e6f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--sky);
}

.price-card.premium ul li::before {
    background: #e6f0ff;
    color: #002664;
}

.price {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 2rem;
    font-weight: 700;
    color: #002664;
}

.price-card.standard .price {
    color: var(--sky);
}

.price span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #718096;
    margin-top: 5px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #002664;
    background: transparent;
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 18px;
    color: #002664;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: transparent;
    transform: translateY(-2px);
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
    transform: scale(1.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-pagination-bullet {
    background: none;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #002664;
    width: 30px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-container {
        gap: 40px;
    }
    
    .pricing-info {
        padding-right: 20px;
    }
    
    .price-card {
        padding: 30px 25px;
    }
}

@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .pricing-info {
        padding-right: 0;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .price-card h3 {
        text-align: center;
    }
    
    .price-card h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .price-card ul li {
        text-align: center;
        padding-left: 0;
    }
    
    .price-card ul li::before {
        display: none;
    }
}

/* ================================
   ANIMATIONS
================================ */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Card Float Animation */
@keyframes cardFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Scale In Animation */
@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* ================================
   PRICING SECTION ANIMATIONS
================================ */
.pricing-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure proper stacking context */
.pricing-container {
    position: relative;
    z-index: 1;
}

/* Left Content Animations */
.pricing-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.1s;
}

.pricing-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-info h2 {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease 0.2s;
}

.pricing-info.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.pricing-subtitle {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease 0.3s;
}

.pricing-info.visible .pricing-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.pricing-description {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease 0.4s;
}

.pricing-info.visible .pricing-description {
    opacity: 1;
    transform: translateY(0);
}

/* Features List Animation */
.pricing-features .feature {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.pricing-features.visible .feature {
    opacity: 1;
    transform: translateX(0);
}

/* Add delay to each feature */
.pricing-features.visible .feature:nth-child(1) { transition-delay: 0.5s; }
.pricing-features.visible .feature:nth-child(2) { transition-delay: 0.6s; }
.pricing-features.visible .feature:nth-child(3) { transition-delay: 0.7s; }

/* Pricing Cards Animation */
.price-card {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.swiper-slide-active .price-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition-delay: 0.2s;
}

/* Premium card emphasis */
.price-card.premium {
    transform: translateY(30px) scale(0.98) perspective(1000px) rotateX(5deg);
}

.swiper-slide-active .price-card.premium {
    transform: translateY(0) scale(1.02) perspective(1000px) rotateX(0);
    box-shadow: 0 25px 50px rgba(0, 38, 100, 0.15);
}

/* Hover Effects */
.price-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Active state for cards */
.price-card.active {
    animation: cardActive 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardActive {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    will-change: transform, opacity;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 24px;
    color: #002664;
    transition: transform 0.3s ease;
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
    transform: scale(1.2);
}

.pricing-section.visible .swiper-button-next,
.pricing-section.visible .swiper-button-prev {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Pagination Bullets */
.swiper-pagination-bullet {
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 4px;
    background: #002664;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pricing-container {
        gap: 30px;
    }
    
    .pricing-info {
        padding-right: 0;
        max-width: 100%;
    }
    
    .pricing-slider {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-info {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 30px;
    }
    
    .pricing-features .feature {
        justify-content: center;
    }
    
    .pricing-slider {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 4%;
    }
    
    .pricing-info h2 {
        font-size: 2.2rem;
    }
    
    .price-card {
        padding: 25px 20px;
    }
    
    .price-card h3 {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 50px 3%;
    }
    
    .pricing-info h2 {
        font-size: 1.8rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .price-card {
        padding: 20px 15px;
    }
    
    .price-card ul li {
        font-size: 0.95rem;
        padding: 8px 0 8px 25px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .price span {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .pricing-info h2 {
        font-size: 1.6rem;
    }
    
    .price-card {
        padding: 18px 12px;
    }
    
    .price-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .price-card ul li {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
}

/* Ensure Swiper navigation is visible on mobile */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
    }
    
    .swiper-button-next i,
    .swiper-button-prev i {
        font-size: 20px !important;
    }
}

@media (max-width: 600px) {
    .pricing-section {
        padding: 70px 5%;
    }
    
    .pricing-info h2 {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .price-card {
        padding: 25px 20px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.review-section {
    padding: 80px 5%;
    background: #f9fafc;
}

.review-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.review-intro h2 {
    font-size: 2.4rem;
    color: #002664;
    font-weight: 700;
    margin-bottom: 15px;
}

.review-intro p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.review-slider {
    position: relative;
}

.review-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.review-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: #002664;
    margin-bottom: 5px;
}

.reviewer-position {
    font-size: 0.9rem;
    color: #718096;
}

/* Swiper Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(255,255,255,0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.swiper-button-next::after {
    content: '\f054';
}

.swiper-button-prev::after {
    content: '\f053';
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}




/* ================================
   REVIEWS SECTION
================================ */
.reviews-section {
    padding: 100px 5%;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    padding: 20px;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.reviews-slider-container {
    position: relative;
    padding: 0 40px;
}

.reviews-slider {
    padding: 20px 0 50px;
}

.review-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 58, 138, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.3);
    background: #1e293b;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover::after {
    transform: scaleX(1);
}

.review-rating {
    color: #ffb400;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-rating .fas {
    margin: 0 1px;
}

.review-rating .far,
.review-rating .fas {
    margin-right: 2px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 25px;
    font-style: normal;
    position: relative;
    padding-left: 20px;
    font-weight: 300;
}

.review-text::before {
    content: '"\201C"';
    position: absolute;
    left: -5px;
    top: -15px;
    font-size: 4rem;
    color: rgba(0, 38, 100, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e6f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #002664;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback for missing images */
.reviewer-avatar:not(:has(img)) {
    background: linear-gradient(135deg, #002664, #13b5ea);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.reviewer-info p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 300;
}

/* Review Section Swiper Buttons */
.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff !important;
    transition: all 0.3s ease;
    top: 50%;
    margin-top: -22.5px;
    opacity: 0.9;
}

.reviews-slider .swiper-button-next::after,
.reviews-slider .swiper-button-prev::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

.reviews-slider .swiper-button-next::after {
    content: '\f054';
}

.reviews-slider .swiper-button-prev::after {
    content: '\f053';
}

.reviews-slider .swiper-button-next:hover,
.reviews-slider .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.reviews-slider .swiper-button-next:active,
.reviews-slider .swiper-button-prev:active {
    transform: scale(0.95);
}

/* Pagination */
.reviews-slider .swiper-pagination {
    bottom: 0;
}

.reviews-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #475569;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 6px !important;
    position: relative;
    overflow: hidden;
}

.reviews-slider .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.reviews-slider .swiper-pagination-bullet-active {
    background: transparent;
    opacity: 1;
    transform: scale(1.5);
    width: 24px;
    border-radius: 4px;
}

.reviews-slider .swiper-pagination-bullet-active::before {
    transform: scaleX(1);
}

.reviews-slider .swiper-pagination-bullet:hover {
    opacity: 1;
    background: #64748b;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .reviews-slider-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 70px 4%;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .reviews-slider-container {
        padding: 0 15px;
    }
    
    .reviews-slider .swiper-button-next,
    .reviews-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
    
    .reviews-slider .swiper-button-next {
        right: -5px;
    }
    
    .reviews-slider .swiper-button-prev {
        left: -5px;
    }
}

@media (max-width: 576px) {
    .reviews-section {
        padding: 60px 3%;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviewer-info h4 {
        font-size: 1rem;
    }
    
    .reviewer-info p {
        font-size: 0.85rem;
    }
}


/* ================================
   OUR PARTNERS SECTION – LIGHT, CLEAN, PROFESSIONAL
================================ */

.partners-section {
    margin-top: 50px;
    margin-bottom: 50px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.04);
    border-radius: 18px;
    padding: 10px 10px;
    min-height: 100px;
}

.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: stretch;
}

.partners-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    margin-top: 10px;
}

/* ----------------------
   LEFT COLUMN
----------------------- */

.partners-header {
    margin-bottom: 5px;
}

.partner-info-card {
    padding: 0px 0px;
    border-radius: 16px;
    background: #ffffff;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.partner-info-card:hover {
    box-shadow: 0 16px 38px rgba(0,0,0,0.08);
}

.partners-left span {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
    padding: 0;
}

.partners-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0px;
}

.partners-desc {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.7;
}

.partner-info-meta {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.partner-info-meta span {
    font-size: 12px;
    padding: 4px 1px;
    border-radius: 50px;
    border: 0px solid rgba(0,0,0,0.1);
    color: #334155;
    background: #f8fafc;
}





.partner-filter-label {
    font-size: 14px;
    color: #0f1729;
    font-weight: 500;
}

.partner-filter-card.active,
.partner-filter-card:hover {
    background: #f1f5f9;
    border-color: #bae6fd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

/* ----------------------
   RIGHT COLUMN (SLIDER)
----------------------- */

.partners-right {
    position: relative;
}

.partner-slider-shell {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,0.25);
    padding: 10px 0;
    box-shadow: 0 12px 30px rgba(15,23,42,0.06);
    width: 100%;
    max-width: 100%;
    cursor: grab;
}

.partner-slider-shell.is-dragging {
    cursor: grabbing;
}

.partner-slider-shell::before,
.partner-slider-shell::after {
    content: '';
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.partner-slider-shell::before {
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

.partner-slider-shell::after {
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to top, #ffffff, transparent);
}

.partner-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    width: max-content;
}

.partner-track.animate {
    animation: partnerScroll 30s linear infinite;
}

.partner-track.animate.paused {
    animation-play-state: paused;
}

/* Logo Design - Lighter + More Premium */

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    margin: 0 8px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid rgba(148,163,184,0.35);
    color: #0f172a;
    font-size: 12px;
    transition: all 0.25s ease;
    min-width: 140px;
}

.partner-logo img {
    max-width: 100px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.partner-logo:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 26px rgba(15,23,42,0.08);
    background: #ffffff;
}

.partner-logo-name {
    white-space: nowrap;
}

/* Smooth scroll animation */
@keyframes partnerScroll {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Partners Section Header Creative Styles */
.partners-section .section-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.partners-section .section-header p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
    position: relative;
    display: inline-block;
}

.partners-section .section-header p::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dark-blue));
}

.partners-section .section-header p::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--dark-blue), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .partner-logo {
        padding: 8px 18px;
        font-size: 12px;
    }
}



/* ================================
   CONTACT US SECTION
================================ */

.contact-section {
    padding: 0;
    margin-top: 50px;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Header Container */
.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 0 0 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.1s;
}

.contact-section.visible .contact-header {
    opacity: 1;
    transform: translateY(0);
}

/* Small Tag above heading */
.contact-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sky);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

.contact-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--sky);
    margin: 6px auto 0;
    border-radius: 2px;
}

/* Heading */
.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color var(--transition-speed);
}

/* Paragraph */
.contact-header p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-header h2 {
        font-size: 30px;
    }

    .contact-header p {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .contact-header h2 {
        font-size: 24px;
    }

    .contact-header p {
        font-size: 14px;
    }
}

/* World Map */
/* Container for map + background */
.world-map-container {
    position: relative;
    max-width: 1100px;
    margin: 24px auto 0;
    z-index: 0;
    background: #f8fafc; /* subtle background color for professional look */
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease 0.25s;
}

.contact-section.visible .world-map-container {
    opacity: 1;
    transform: translateY(0);
}

/* Map */
.world-map {
    width: 100%;
    height: auto; /* keep original aspect ratio */
    object-fit: contain; /* no cropping */
    opacity: 0.96; /* slight softening */
    filter: grayscale(100%) contrast(1.05);
    display: block;
    border-radius: 12px;
}

/* Single Location Marker */
.map-location {
    position: absolute;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.map-location-pulse {
    position: absolute;
    bottom: -6px;
    width: 18px;
    height: 6px;
    border-radius: 999px;
    background: rgba(15,23,42,0.25);
    filter: blur(3px);
    animation: mapPulse 2.2s infinite ease-out;
}

.map-location i {
    position: relative;
    z-index: 1;
    color: #ef4444;
    font-size: 28px;
    text-shadow: 0 6px 18px rgba(15,23,42,0.25);
}

@keyframes mapPulse {
    0% { transform: translateY(0) scaleX(1); opacity: 0.9; }
    50% { transform: translateY(1px) scaleX(1.2); opacity: 0.5; }
    100% { transform: translateY(2px) scaleX(1); opacity: 0; }
}

/* Contact Cards */
.contact-cards {
    position: relative;
    z-index: 1;
    margin: -80px auto 0; /* soft overlap into map and centered */
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.c-card {
    padding: 24px 22px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.12);
    text-align: left;
    border: 1px solid rgba(148,163,184,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px); /* modern glass effect */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease,
                box-shadow 0.3s ease, background 0.3s ease;
}

.contact-section.visible .c-card {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered card entrance */
.contact-section.visible .c-card:nth-child(1) { transition-delay: 0.25s; }
.contact-section.visible .c-card:nth-child(2) { transition-delay: 0.32s; }
.contact-section.visible .c-card:nth-child(3) { transition-delay: 0.39s; }
.contact-section.visible .c-card:nth-child(4) { transition-delay: 0.46s; }

.c-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15,23,42,0.2);
    background: rgba(255, 255, 255, 0.9);
}

.c-icon i {
    font-size: 22px;
    color: #0f172a;
    opacity: 0.7;
}

.c-card h3 {
    margin: 10px 0 6px;
    font-size: 18px;
    color: var(--dark-blue);
    font-weight: 600;
}

.c-card p {
    color: #4b5563;
    font-size: 14px;
    margin: 0 0 8px; /* tighter spacing between lines */
}

.c-card p:last-of-type {
    margin-bottom: 16px; /* keep breathing room at bottom of text block */
}

/* Professional Buttons */
.c-btn {
    display: inline-block;
    background: #ffffff;
    color: var(--dark-blue);     /* dark blue text */
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid #d1d5db;
    box-shadow: 0 4px 14px rgba(15,23,42,0.08);
    transition: background 0.25s ease, color 0.25s ease,
                transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.c-btn:hover {
    background: var(--dark-blue);
    color: #ffffff;
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15,23,42,0.18);
}

.c-btn-outline {
    display: inline-block;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark-blue);
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.c-btn-outline:hover {
    background: var(--dark-blue);
    color: #ffffff;
    border-color: var(--dark-blue);
}

/* Responsive */
@media (max-width: 1024px) {
    .world-map {
        height: auto;
    }

    .contact-cards {
        margin-top: -100px;
    }
}

@media (max-width: 900px) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
        margin-top: -80px;
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .world-map {
        height: auto;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        margin-top: -70px;
    }

    .contact-header h2 {
        font-size: 28px;
    }
}
