/* Custom Button Classes with Animations */

/* Base button styles */
.btn-custom {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Ripple Effect Button */
.btn-ripple {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-ripple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::before {
    width: 300px;
    height: 300px;
}

/* Glow Effect Button */
.btn-glow {
    background: linear-gradient(45deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.8), 0 0 40px rgba(255, 107, 107, 0.6);
    }
}

.btn-glow:hover {
    animation-duration: 0.5s;
}

/* Pulse Effect Button */
.btn-pulse {
    background: linear-gradient(45deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.btn-pulse:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Bounce Effect Button */
.btn-bounce {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.btn-bounce:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scale Effect Button */
.btn-scale {
    background: linear-gradient(45deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
    box-shadow: 0 4px 15px rgba(168, 237, 234, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-scale:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(168, 237, 234, 0.6);
}

/* Gradient Animation Button */
.btn-gradient {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    color: white;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 4px 15px rgba(238, 119, 82, 0.4);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-gradient:hover {
    animation-duration: 1s;
}

/* Floating Effect Button */
.btn-float {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-float:hover {
    animation-play-state: paused;
}

/* Shake Effect Button */
.btn-shake {
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 100%);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
}

.btn-shake:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Layered Animation Buttons */

/* Multi-layer animated button */
.btn-layered {
    position: relative;
    background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    overflow: hidden;
    z-index: 1;
}

.btn-layered::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-layered::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: -1;
}

.btn-layered:hover::before {
    left: 100%;
}

.btn-layered:hover::after {
    transform: translateX(0);
}

.btn-layered:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* 3D Layer Button */
.btn-3d-layer {
    position: relative;
    background: #000000;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.btn-3d-layer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #FFA500, var(--primary-color));
    z-index: -1;
    transform: translateZ(-1px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-3d-layer::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #000000;
    z-index: -1;
    transform: translateZ(-2px);
}

.btn-3d-layer:hover {
    transform: translateZ(10px);
}

.btn-3d-layer:hover::before {
    opacity: 1;
}

/* Particle Layer Button */
.btn-particle {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color) 0%, #FFA500 100%);
    color: #000000;
    border: 2px solid #000000;
    overflow: hidden;
}

.btn-particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-particle:hover::before {
    width: 300px;
    height: 300px;
}

.btn-particle span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-particle:hover span {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Wave Layer Button */
.btn-wave {
    position: relative;
    background: #000000;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.btn-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    animation: wave 2s infinite;
}

@keyframes wave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn-wave:hover {
    background: var(--primary-color);
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Gold-Black Combination Buttons */

/* Elegant Gold Button */
.btn-gold-elegant {
    background: linear-gradient(145deg, var(--primary-color) 0%, #FFA500 50%, var(--primary-color) 100%);
    color: #000000;
    border: 2px solid #B8860B;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-gold-elegant:hover {
    background: linear-gradient(145deg, #FFA500 0%, var(--primary-color) 50%, #FFA500 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Black Luxury Button */
.btn-black-luxury {
    background: linear-gradient(145deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.btn-black-luxury:hover {
    background: linear-gradient(145deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

/* Gold Border Black Button */
.btn-gold-border {
    background: #000000;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
    position: relative;
}

.btn-gold-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), #FFA500, var(--primary-color), #FFA500);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gold-border:hover::before {
    opacity: 1;
}

.btn-gold-border:hover {
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 215, 0, 1);
}

/* Metallic Gold-Black Button */
.btn-metallic {
    background: linear-gradient(45deg, #000000 0%, var(--primary-color) 25%, #000000 50%, var(--primary-color) 75%, #000000 100%);
    background-size: 200% 200%;
    color: #FFFFFF;
    border: 2px solid var(--primary-color);
    animation: metallic-shine 3s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

@keyframes metallic-shine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-metallic:hover {
    animation-duration: 1s;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* Royal Gold-Black Button */
.btn-royal {
    background: radial-gradient(circle at 30% 30%, var(--primary-color) 0%, #FFA500 30%, #000000 70%);
    color: #FFFFFF;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    transition: all 1s ease !important;
}


.btn-royal:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    color: #000000 !important;
    background: radial-gradient(circle at 30% 30%, var(--primary-color) 0%, #FFA500 30%, #FFA500 100%);

}

.btn-royal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color) 40%, rgba(255, 215, 0, 1) 50%, var(--primary-color) 60%);
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-royal:hover::after {
    opacity: 0;
}


/* Vintage Gold-Black Button */
.btn-vintage {
    background: #000000;
    color: var(--primary-color);
    border: 2px solid #B8860B;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.btn-vintage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-vintage:hover::before {
    opacity: 1;
}

.btn-vintage:hover {
    background: var(--primary-color);
    color: #000000;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Services Title Animation */
.services-title {
    background: linear-gradient(45deg, var(--primary-color), #FFA500, var(--primary-color), #a16900);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Existing button overrides */
.green-button a,
.orange-button a {
    transition: all 0.3s ease;
}

.green-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.orange-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.4);
}

.slider-image {
  max-width: 50vw;
  margin: auto;
  animation: slideIn 2s ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

@keyframes slideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Flip Card Styles for Services Section */

.service-card {
    perspective: 1000px;
    height: 300px;
    margin-bottom: 20px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    
        border: 2px solid var(--primary-color);
}

.card-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card-front img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-front h4 {
    margin-top: 10px;
    font-size: 24px;
    color: #333;
}

.card-back {
    background-color: #f8f9fa;
    color: #333;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card-back h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.card-back p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}

footer h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

footer p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

footer ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #ffd700;
}

footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

footer .social-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #ffd700;
}

footer .row:last-child {
    border-top: 1px solid #555;
    padding-top: 20px;
    margin-top: 30px;
}

footer .row:last-child p {
    margin-bottom: 5px;
    text-align: center;
}

/* Courses Page Styles */

.courses-section {
    padding: 80px 0;
    padding-top: 0px;
    margin-top: 50px;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-heading h2 em {
    color: var(--primary-color);
    font-style: normal;
}

.section-heading p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.course-item {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.course-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s;
}

.course-item:hover::before {
    left: 100%;
}

.course-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #dbba00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.course-item:hover .course-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(231, 76, 60, 0.4);
}

.course-icon i {
    font-size: 32px;
}

.course-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.course-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Academy Highlight Section */
.academy-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #121800 0%, #0c0c00 100%);
    color: white;
}

.highlight-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.highlight-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.highlight-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.included-features h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

.included-features ul {
    list-style: none;
    padding: 0;
}

.included-features li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.included-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.highlight-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Simple CTA Section Enhancement */
.simple-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.simple-cta h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.simple-cta h4 em {
    color: var(--primary-color);
    font-style: normal;
}

.simple-cta h4 strong {
    color: #ffd700;
}

.simple-cta .buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
/* 
.green-button a,
.orange-button a {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.green-button a {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.green-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.4);
}

.orange-button a {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    color: white;
}

.orange-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 126, 34, 0.4);
} */

/* Responsive Design */
@media (max-width: 768px) {
    .courses-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .course-item {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .course-icon i {
        font-size: 24px;
    }

    .academy-highlight {
        padding: 60px 0;
    }

    .highlight-content h3 {
        font-size: 24px;
    }

    .simple-cta .buttons {
        flex-direction: column;
        align-items: center;
    }

    .simple-cta .buttons .green-button,
    .simple-cta .buttons .orange-button {
        width: 100%;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    font-size: 28px;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    .slider-image-2 {
        left: 0% !important;
    }
    
    .slider-image-2 img {
        max-width: 100vw !important;
        margin: 0 auto;
        bottom: -120px !important;
        position: relative !important;
    }
}

.header-text {
  z-index: 9;
}

    .slider-image {
        max-width: 35vw;
    }

    .slider-image-2 {
        max-width: 50vw;
        bottom: 0px !important;
    }


/* Mobile-only adjustments for the slider header to avoid oversized text on small screens */
@media (max-width: 600px) {
    /* target the slider header inside the hero/slider */
    .header-text h2 {
        font-size: 34px !important; /* reduced from large desktop size */
        line-height: 1.15;
        margin-bottom: 10px;
        font-weight: 700;
    }

    /* make emphasized words slightly smaller so they don't blow up */
    .header-text h2 em {
        font-style: normal;
        font-weight: 700;
        font-size: 38px !important;
    }

    /* ensure the slider image doesn't overlap the text area on small screens */
    .slider-image {
        max-width: 100vw;
        left: 25%;
        bottom: 0;
    }
    .slider-image img {
        max-width: 50vw;
        margin: 0 auto;
    }   
    

    /* reduce padding inside header text container if present */
    .header-text {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.logo img {
    max-width: 350px;
}

/* Stronger override for very small devices */
@media (max-width: 480px) {
    .logo img {
    max-width: 280px;
}

.header-area .main-nav .menu-trigger 

    /* increase specificity by including parent classes and use slightly smaller size */
    .swiper-container#top .swiper-slide .header-text h2 {
        font-size: 32px !important;
        line-height: 1.5 !important;
        margin-bottom: 80px !important;
        letter-spacing: 0.2px;
    }

    .swiper-container#top .swiper-slide .header-text h2 em {
        font-size: 28px !important;
    }

    /* ensure container spacing so text wraps nicely */
    .swiper-container#top .header-text {
        padding-right: 8px !important;
        padding-left: 8px !important;
    }
}