        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #3275FB 0%, #13306C 100%);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(50, 117, 251, 0.15);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #3275FB 0%, #13306C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-padding{
            padding: 32px;
        }
        
        .service-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(50, 117, 251, 0.1);
        }
        
        .service-card:hover {
            background: linear-gradient(145deg, #3275FB 0%, #13306C 100%);
            color: white;
        }
        
        .service-card:hover h3,
        .service-card:hover p {
            color: white;
        }
        
        .video-overlay {
            background: linear-gradient(45deg, rgba(50, 117, 251, 0.9), rgba(19, 48, 108, 0.9));
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #3275FB;
            border-radius: 3px;
        }
        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader {
        animation: rotate 2s infinite;
        height: 50px;
        width: 50px;
        }

        .loader:before,
        .loader:after {
        border-radius: 50%;
        content: "";
        display: block;
        height: 20px;
        width: 20px;
        }
        .loader:before {
        animation: ball1 2s infinite;
        background-color: rgb(255 255 255 / 16%);
        box-shadow: 30px 0 0 #00A9FE;
        margin-bottom: 10px;
        }
        .loader:after {
        animation: ball2 2s infinite;
        background-color: #00A9FE;
        box-shadow: 30px 0 0 rgb(255 255 255 / 16%);
        }

        @keyframes rotate {
        0% {
            transform: rotate(0deg) scale(0.8);
        }
        50% {
            transform: rotate(360deg) scale(1.2);
        }
        100% {
            transform: rotate(720deg) scale(0.8);
        }
        }

        @keyframes ball1 {
        0% {
            box-shadow: 30px 0 0 #00A9FE;
        }
        50% {
            box-shadow: 0 0 0 #00A9FE;
            margin-bottom: 0;
            transform: translate(15px, 15px);
        }
        100% {
            box-shadow: 30px 0 0 #00A9FE;
            margin-bottom: 10px;
        }
        }

        @keyframes ball2 {
        0% {
            box-shadow: 30px 0 0 rgb(255 255 255 / 32%);
        }
        50% {
            box-shadow: 0 0 0 rgb(255 255 255 / 32%);
            margin-top: -20px;
            transform: translate(15px, 15px);
        }
        100% {
            box-shadow: 30px 0 0 rgb(255 255 255 / 32%);
            margin-top: 0;
        }
        }
        
        .floating-icon {
            animation: bounce 2s infinite;
        }
        
        .pulse-ring {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(50, 117, 251, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(50, 117, 251, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(50, 117, 251, 0);
            }
        }
        .fade-borders 
        {
            border-radius: 5%; /* optional if your image is circular */
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
            height: 80%;
        }
        /* Custom CSS Styles */

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Dots */
.carousel-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.75);
    transform: scale(1.1);
}

.carousel-dot.active {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
@media (min-width: 768px) {
    .hero-container {
        height: 45rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-gradient h1 {
        font-size: 3rem;
    }
    
    .hero-gradient p {
        font-size: 1.25rem;
    }

    .hero-container {
        height: 30rem;
    }
}

@media (max-width: 640px) {
    .hero-gradient h1 {
        font-size: 1.8rem;
    }
    
    .hero-gradient p {
        font-size: .7rem;
    }
    .hero-container {
        height: 20rem;
    }
    
}
 .blog-section {
            padding: 80px 20px;
            background-color: #f9fafb;
        }

        .blog-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease-out;
        }

        .blog-header h4 {
            color: #2a61c0;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .blog-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 16px;
        }

        .blog-header h2 .gradient-text {
            background: linear-gradient(135deg, #2a61c0 0%, #1e3a8a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .blog-header .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2a61c0 0%, #1e3a8a 100%);
            margin: 16px auto 16px;
        }

        .blog-header p {
            color: #6b7280;
            max-width: 600px;
            margin: 16px auto 0;
            font-size: 16px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        .blog-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .blog-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .blog-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .blog-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .blog-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateY(-8px);
        }

        .blog-card-image {
            width: 100%;
            height: 192px;
            object-fit: cover;
            overflow: hidden;
            position: relative;
            display: block;
        }

        .blog-card-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 192px;
        }

        .blog-card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image-wrapper img {
            transform: scale(1.1);
        }

        .blog-card-category {
            position: absolute;
            top: 16px;
            left: 16px;
            background-color: #2a61c0;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 9999px;
            z-index: 10;
        }

        .blog-card-content {
            padding: 24px;
        }

        .blog-card-meta {
            display: flex;
            gap: 24px;
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 12px;
        }

        .blog-card-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .blog-card-meta-icon {
            width: 16px;
            height: 16px;
        }

        .blog-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 12px;
            line-height: 1.4;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .blog-card-title:hover {
            color: #2a61c0;
        }

        .blog-card-excerpt {
            color: #6b7280;
            margin-bottom: 16px;
            line-height: 1.6;
            font-size: 14px;
        }

        .blog-card-link {
            display: inline-flex;
            align-items: center;
            color: #2a61c0;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
            gap: 8px;
        }

        .blog-card-link:hover {
            color: #1e3a8a;
        }

        .blog-card-link-icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .blog-card-link:hover .blog-card-link-icon {
            transform: translateX(4px);
        }

        .blog-cta {
            text-align: center;
        }

        .blog-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #2a61c0;
            color: white;
            padding: 12px 32px;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(42, 97, 192, 0.2);
            font-size: 16px;
        }

        .blog-cta-button:hover {
            background-color: #1e3a8a;
            transform: scale(1.05);
            box-shadow: 0 15px 25px -5px rgba(42, 97, 192, 0.3);
        }

        .blog-cta-icon {
            width: 20px;
            height: 20px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 16px;
            }

            .blog-header h2 {
                font-size: 24px;
            }

            .blog-grid {
                gap: 20px;
            }

            .blog-card-meta {
                flex-direction: column;
                gap: 8px;
            }
        }
        /* Video Cards */
.video-card {
    position: relative;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Aspect Ratio for Portrait Videos */
.aspect-\[9\/16\] {
    aspect-ratio: 9 / 16;
}

/* Play Button Animation */
.video-play-btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-play-btn i {
    display: inline-block;
    transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-card {
        max-height: 500px;
    }

    .video-play-btn {
        width: 48px !important;
        height: 48px !important;
    }

    .video-play-btn i {
        font-size: 16px !important;
    }
}

/* Modal Styles */
#videoModal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#videoModal.hidden {
    display: none;
}

#videoModal:not(.hidden) {
    display: flex;
}