     .carousel-container {
    width: 100%;
    height: 63rem;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);*/
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 80px;
}

.text-content {
    max-width: 50%;
    animation: slideInLeft 0.8s ease-out;
}

.text-content h1 {
    font-size: 20px;
    color: #19d519;
    font-weight: bold;
    overflow: hidden;              
    white-space: nowrap;          
    width: 0;                     
    animation: typing 3s steps(20, end) forwards;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatDrone {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.text-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.text-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #5ae483ff 0%, #0d8103ff 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(132, 245, 87, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(203, 245, 87, 0.6);
}

.drone-image {
    width: 400px;
    height: auto;
    animation: floatDrone 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-dot.active {
    background: #fff;
    width: 40px;
    border-radius: 6px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 20px;
}

.nav-arrow.next {
    right: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .carousel-container {
        height: 50rem;
    }
    
    .slide-content {
        padding: 0 60px;
    }
    
    .text-content h2 {
        font-size: 40px;
    }
    
    .drone-image {
        width: 350px;
    }
}

@media (max-width: 992px) {
    .carousel-container {
        height: 45rem;
    }
    
    .slide-content {
        padding: 0 50px;
    }
    
    .text-content h2 {
        font-size: 36px;
    }
    
    .text-content p {
        font-size: 17px;
    }
    
    .drone-image {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 40rem;
    }
    
    .slide-content {
        padding: 0 30px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .text-content {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .text-content h2 {
        font-size: 32px;
    }
    
    .text-content p {
        font-size: 16px;
    }
    
    .drone-image {
        width: 250px;
        margin-top: 20px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .carousel-controls {
        bottom: 20px;
    }
    
    /*.slide-overlay {*/
    /*    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);*/
    /*}*/
}

@media (max-width: 576px) {
    .carousel-container {
        height: 35rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .text-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .text-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .drone-image {
        width: 200px;
        margin-top: 15px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .nav-arrow.prev {
        left: 10px;
    }
    
    .nav-arrow.next {
        right: 10px;
    }
    
    .carousel-controls {
        bottom: 15px;
        gap: 10px;
    }
    
    .control-dot {
        width: 10px;
        height: 10px;
    }
    
    .control-dot.active {
        width: 30px;
    }
}

@media (max-width: 400px) {
    .carousel-container {
        height: 30rem;
    }
    
    .text-content h2 {
        font-size: 18px;
    }
    
    .text-content p {
        font-size: 14px;
    }
    
    .drone-image {
        width: 180px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 13px;
    }
}

.video-wrapper {
position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
    border-radius: 7px;
    box-shadow: rgb(0 0 0 / 20%) 0px 25px 20px -20px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

  .certification-card {
        background: white;
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-top: 4px solid #28a745;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .certification-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #28a745, #20c997);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .certification-card:hover::before {
        transform: scaleX(1);
    }

    .certification-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .cert-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #28a745, #20c997);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 2rem;
    }

    .cert-icon.penalty {
        background: linear-gradient(135deg, #dc3545, #e35d6a);
    }

    .cert-icon.growth {
        background: linear-gradient(135deg, #ffc107, #ffd54f);
    }

    .cert-icon.valid {
        background: linear-gradient(135deg, #17a2b8, #5bc0de);
    }

    .certification-card h4 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .certification-card p {
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .cert-badge {
        margin-top: auto;
    }

    .cert-cta {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border: 2px dashed #28a745;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .certification-card {
            margin-bottom: 1.5rem;
            padding: 1.5rem 1rem;
        }

        .cert-icon {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }

        .certification-card h4 {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 576px) {
        .cert-cta .btn {
            display: block;
            width: 100%;
            margin-bottom: 1rem;
        }

        .cert-cta .btn:last-child {
            margin-bottom: 0;
        }
    }