@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0d452c;
    --primary-darker: #1a2e27;
    --accent-gold: linear-gradient(135deg, #2a2206 0%, #6f5a12 18%, #c9a227 35%, #fff6c3 50%, #d4af37 62%, #9c7c19 82%, #3f3308 100%);
    --accent-orange: #e67e22;
    --text-light: #cac2b0;
    --text-white: #ffffff;
    --text-black: #000000;
    --card-transparent: #6e6b0900;
    --featured-color: linear-gradient( 135deg,#023a26 0%,#044A26 25%, #055327 45%,#1E7F52 65%, 80%,#055327 100% );
    --background: #FCF5EB !important;
    --card-gradient: linear-gradient(135deg, #0d452c 0%, #1a2e27 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --simple-font: 'Poppins', sans-serif;
}

body p{
    /* text-align: justify; */
    text-align: left;
}

body {
    background: var(--background);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    font-family: var(--simple-font);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ANIMATED BACKGROUND */
/* ═══════════════════════════════════════════════════════════════ */

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--background);
    /* background: linear-gradient(135deg, #234031 0%, #234031 50%, #234031 100%); */
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float-smooth 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -10%;
    background: linear-gradient(135deg, #1a4d38, #0d452c);
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -5%;
    right: -5%;
    background: linear-gradient(135deg, #0d452c, #1a2e27);
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a4d38, #0d452c);
    animation-delay: 14s;
}

@keyframes float-smooth {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* PARTICLES */
/* ═══════════════════════════════════════════════════════════════ */

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: drift 25s infinite linear;
}

@keyframes drift {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(50px) scale(1);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* HOME MAIN CONTAINER */
/* ═══════════════════════════════════════════════════════════════ */

.home-main-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SLIDER SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.hero-slider-section {
    width: 100%;
    height: 70vh;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #173428, green );
}

.hero-slide {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 69, 44, 0.4), rgba(35, 64, 49, 0.4));
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 80%;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
    background:#F5E6D3;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Simple font - Poppins instead of Georgia */
    font-family: var(--simple-font);
    
    /* Smooth animation */
    animation: titleGlow 1s ease-in-out infinite;
    
    /* Word spacing for elegance */
    word-spacing: 0.1em;
}

.slide-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    color: #234031;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FDB931 0%, #D4AF37 100%);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.6);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: #FFD700;
    width: 30px;
    border-radius: 6px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* COMMON SECTION STYLES */
/* ═══════════════════════════════════════════════════════════════ */

.video-section,
.services-overview,
.featured-testimonials,
.why-choose-section,
.blog-preview {
    padding: 4rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.welcome-section {
    padding: 5rem 0rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-align: center;
}

.section-title .highlight {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--simple-font);
    font-size: 3rem;
    font-weight: 400;
    margin: 0 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════ */
/* WELCOME SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.welcome-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.welcome-card:hover {
    transform: scale(1.15) rotate(-10deg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(214, 175, 55, 0.2));
}

.welcome-card h3 {
    font-size: 1.4rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HIGHLIGHT LOGO - Welcome Section */
/* ═══════════════════════════════════════════════════════════════ */

.highlight-logo {
    height: 70px;
    width: auto;
    margin: 0 0.5rem;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    /* filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.2)); */
    transition: var(--transition-smooth);
}

.highlight-logo:hover {
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.4));
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .highlight-logo {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .highlight-logo {
        height: 45px;
    }
}

@media (max-width: 479px) {
    .highlight-logo {
        height: 40px;
    }
}


/* ═══════════════════════════════════════════════════════════════ */
/* VIDEO SECTION - FULLY RESPONSIVE & ATTRACTIVE */
/* ═══════════════════════════════════════════════════════════════ */

.video-section {
    padding: 0rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-container {
    width: 100%;
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 3rem;
}

/* Video Player */
.video-player-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 15px 40px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.25);
    background: #000;
}

.video-player {
    background: #000;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 24px;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.video-duration {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    background: rgba(0, 0, 0, 0.9);
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 215, 0, 0.5);
    letter-spacing: 1.2px;
    z-index: 10;
}

/* Video Content */
.video-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.4rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 15px 40px rgba(255, 215, 0, 0.2);
    background: var(--card-transparent);
    border-radius: 40px;
    border: 1.5px solid rgba(8, 70, 4, 0.91);
    backdrop-filter: blur(12px);
    aspect-ratio: 16 / 10;
    overflow-y: auto;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: var(--primary-dark) transparent;
}
.video-content::-webkit-scrollbar {
    width: 5px;
}

.video-content:-webkit-scrollbar-track {
    background: transparent;      /* track invisible */
}



.content-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.video-content span{
    color: var(--primary-dark);
    /* background: linear-gradient(180deg, #ffdc50, #a15a00);
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    font-weight: 600;
    font-size: large;
    /* filter: drop-shadow(2px 2px 0.9px #736209); */

}
.content-tag {
    display: inline-block;
    background: var(--accent-orange);
    color: transparent;
    background-image: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.45rem 1.2rem;
    border-radius: 30px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    width: fit-content;
}

.content-header h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--simple-font);
    letter-spacing: -0.5px;
    text-align: center;
}

.video-description {
    color: var(--text-black);
    line-height: 1.9;
    font-size: 0.98rem;
    margin: 0;
}

/* Explore Button */
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: #234031;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.3);
    border: none;
    cursor: pointer;
    font-family: var(--simple-font);
}

.explore-btn-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}



.explore-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 60px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FDB931 0%, #D4AF37 100%);
}

.explore-btn span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* VIDEO SECTION RESPONSIVE */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .video-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .content-header h3 {
        font-size: 1.8rem;
    }

    .video-content {
        padding: 1rem 2rem;
    }
}

@media (max-width: 1024px) {
    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .video-player {
        aspect-ratio: 16 / 9;
    }

    .content-header h3 {
        font-size: 1.6rem;
    }

    .video-content {
        padding: 1rem 2rem;
    }

    .video-highlights {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .video-meta {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 4rem 1.5rem;
    }

    .video-wrapper {
        gap: 2rem;
    }

    .video-player {
        aspect-ratio: 16 / 9;
    }

    .content-header h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .video-description {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .video-highlights {
        padding: 1.3rem;
        gap: 1rem;
    }

    .highlight-item i {
        font-size: 1.3rem;
    }

    .highlight-item strong {
        font-size: 0.95rem;
    }

    .highlight-item span {
        font-size: 0.85rem;
    }

    .video-meta {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .video-content {
        padding: 1rem 1.8rem;
        gap: 1.5rem;
    }

    .explore-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .content-tag {
        font-size: 0.7rem;
        padding: 0.55rem 1.2rem;
    }
}

@media (max-width: 600px) {
    .video-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .video-player-wrapper {
        border-radius: 18px;
    }

    .video-player {
        border-radius: 18px;
        aspect-ratio: 16 / 9;
    }

    .video-player iframe {
        border-radius: 18px;
    }

    .video-duration {
        bottom: 0.8rem;
        right: 0.8rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .content-header h3 {
        font-size: 1.2rem;
        line-height: 1.35;
    }

    .video-description {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .video-highlights {
        padding: 1.2rem;
        gap: 0.9rem;
    }

    .highlight-item {
        gap: 0.9rem;
    }

    .highlight-item i {
        font-size: 1.2rem;
    }

    .highlight-item strong {
        font-size: 0.92rem;
    }

    .highlight-item span {
        font-size: 0.83rem;
    }

    .video-meta {
        gap: 1rem;
        flex-direction: column;
        padding-top: 1rem;
    }

    .video-content {
        padding: 1rem 1.5rem;
        gap: 1.2rem;
    }

    .explore-btn {
        padding: 0.95rem 1.8rem;
        font-size: 0.9rem;
    }

    .content-tag {
        font-size: 0.68rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 2.5rem 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .content-header h3 {
        font-size: 1.1rem;
    }

    .video-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .video-highlights {
        padding: 1rem;
    }

    .highlight-item strong {
        font-size: 0.9rem;
    }

    .highlight-item span {
        font-size: 0.8rem;
    }

    .meta-label {
        font-size: 0.7rem;
    }

    .meta-value {
        font-size: 0.95rem;
    }

    .explore-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    .video-content {
        padding: 0.8rem 1.3rem;
    }
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.stat span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    color: #234031;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-top: 1.5rem;
    border: none;
    cursor: pointer;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════════ */
/* SERVICES SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-gradient);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    background: var(--featured-color);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.service-card.featured {
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: var(--featured-color);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    color: #234031;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    transition: var(--transition-smooth);

    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .5rem;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: inherit;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--text-white);
    font-weight: 500;
    margin: 0.6rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 0.6rem;
    /* text-align: start !important; */
}

.service-features li i {
    color: #FFD700;
    
}


/* ═══════════════════════════════════════════════════════════════ */
/* TESTIMONIALS SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.testimonials-carousel {
    margin: 3rem 0;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    background: var(--card-gradient);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateX(100px);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars i {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin: 0;
}

.author-title {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-btn.active {
    background: var(--primary-dark);
    width: 25px;
    border-radius: 5px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: var(--transition-smooth);
}

.view-all-btn:hover {
    gap: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* WHY CHOOSE SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    /* text-align: center; */
    text-align: left;
    padding: 2rem;
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.content-text {
    color: var(--primary-dark);
}

/* ═══════════════════════════════════════════════════════════════ */
/* BLOG PREVIEW SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-preview-card {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    background: var(--featured-color);
}

.blog-preview-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(214, 175, 55, 0.08));
    border-radius: 50%;
    font-size: 2.5rem;
    color: #FFD700;
}

.blog-preview-card h3 {
   font-size: 1.4rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-preview-card p {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.read-more:hover {
    gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HOME CTA SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.home-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-wrapper {
    max-width: 80%;
    margin: 0 auto;
    background: var(--card-gradient);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 4rem 2rem;
    border-radius: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-content h2 {
    font-size: 2.5rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    color: #234031;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FDB931;
    color: #FDB931;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ANIMATIONS */
/* ═══════════════════════════════════════════════════════════════ */

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

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

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════════ */

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .hero-slider-section {
        margin-top: 70px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .welcome-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .blog-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium Devices (768px to 1023px) - Tablet */
@media (max-width: 1023px) {
    .hero-slider-section {
        height: 80vh;
        margin-top: 60px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-subtitle {
        font-size: 1.2rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .slider-prev {
        left: 1.5rem;
    }

    .slider-next {
        right: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .welcome-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-player iframe {
        height: 350px;
    }

    .video-info {
        text-align: center;
    }

    .video-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-wrapper {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Small Devices (480px to 767px) - Mobile */
@media (max-width: 767px) {
    .hero-slider-section {
        height: 60vh;
        margin-top: 55px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slide-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }

    .slider-indicators {
        bottom: 1.5rem;
        gap: 0.6rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .welcome-section,
    .video-section,
    .services-overview,
    .featured-testimonials,
    .why-choose-section,
    .blog-preview {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title .highlight {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .welcome-card {
        padding: 2rem;
    }

    .video-wrapper {
        gap: 1.5rem;
    }

    .video-player iframe {
        height: 300px;
    }

    .video-info {
        text-align: center;
    }

    .video-info h3 {
        font-size: 1.5rem;
    }

    .video-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-carousel {
        min-height: 280px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .cta-wrapper {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* Extra Small Devices (below 480px) - Small Mobile */
@media (max-width: 479px) {
    .hero-slider-section {
        height: 50vh;
        margin-top: 50px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .slide-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 20px;
    }

    .welcome-section,
    .video-section,
    .services-overview,
    .featured-testimonials,
    .why-choose-section,
    .blog-preview {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title .highlight {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .welcome-card {
        padding: 1.5rem;
    }

    .welcome-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .welcome-card h3 {
        font-size: 1.1rem;
    }

    .welcome-card p {
        font-size: 0.85rem;
    }

    .video-player iframe {
        height: 250px;
    }

    .video-info h3 {
        font-size: 1.3rem;
    }

    .video-info p {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
         width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-smooth);
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .why-number {
        font-size: 2.5rem;
    }

    .why-item h3 {
        font-size: 1.1rem;
    }

    .why-item p {
        font-size: 0.85rem;
    }

    .blog-preview-card {
        padding: 1.5rem;
    }

    .blog-preview-image {
        width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(214, 175, 55, 0.08));
    border-radius: 50%;
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    .blog-preview-card h3 {
        font-size: 1.1rem;
        background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .blog-preview-card p {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .cta-wrapper {
        padding: 1.5rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .cta-content p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}