   .hero-section {
            position: relative;
            height: 60vh;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }
        
        .hero-content {
            z-index: 2;
            max-width: 100%;
            padding: 0 40px;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: #f4c406;
            color: #1e3c72;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: fadeIn 1s ease 0.6s both;
        }
        
        .cta-button:hover {
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
            border-radius: 50%;
            background: white;
            animation: float 15s infinite linear;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 80%;
            animation-delay: -5s;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 85%;
            animation-delay: -10s;
        }
        
        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 15%;
            animation-delay: -7s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .stats-section {
            background: #f8f9fa;
            padding: 80px 0;
            text-align: center;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .stat-item {
            flex: 1;
            min-width: 200px;
            margin: 20px;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 15px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1e3c72;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.1rem;
            color: #666;
        }
        
        .choose-grid {
            padding: 80px 40px;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .choose-item {
            display: flex;
            align-items: center;
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .choose-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .choose-text, .choose-img {
            flex: 1;
            padding: 0 40px;
        }
        
        .choose-text h3 {
            font-size: 2rem;
            color: #1e3c72;
            margin-bottom: 20px;
            position: relative;
        }
        
        .choose-text h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #f4c406;
        }
        
        .choose-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }
        
        .choose-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        
        .choose-img:hover img {
            transform: scale(1.05);
        }
        
        .testimonials-section {
            background: #1e3c72;
            color: white;
            padding: 80px 40px;
            text-align: center;
        }
        
        .testimonials-container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-slide {
            display: none;
            padding: 30px;
        }
        
        .testimonial-slide.active {
            display: block;
            animation: fadeIn 1s ease;
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .testimonial-role {
            color: #f4c406;
        }
        
        .testimonial-nav {
            margin-top: 30px;
        }
        
        .testimonial-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .testimonial-dot.active {
            background: #f4c406;
        }
        
        .cta-section {
            padding: 80px 40px;
            text-align: center;
            background: linear-gradient(135deg, #f4c406 0%, #f8d84a 100%);
            color: #1e3c72;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 100%;
            margin: 0 auto 30px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta-button-secondary {
            display: inline-block;
            padding: 12px 30px;
            background: #1e3c72;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cta-button-secondary:hover {
            background: #2a5298;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 768px) {
            .choose-item {
                flex-direction: column;
            }
            
            .choose-item.left .choose-img {
                order: 1;
            }
            
            .choose-item.left .choose-text {
                order: 2;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .stats-container {
                flex-direction: column;
            }
            
            .choose-text, .choose-img {
                padding: 0 20px;
            }
            
            .choose-grid, .testimonials-section, .cta-section {
                padding: 60px 20px;
            }
        }
    

        /*emoji hoves */
        div [id] {
    scroll-margin-top: 120px;
}
 