.elementor-30 .elementor-element.elementor-element-4b30714{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-30 .elementor-element.elementor-element-4b30714.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-30 .elementor-element.elementor-element-72cfe80{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-30 .elementor-element.elementor-element-4b30714{--width:136.124%;}}/* Start custom CSS for html, class: .elementor-element-e6f0f9b *//* Hero Section Container */
.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* Video Styling */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Dark Overlay for Text Clarity */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Adjust darkness here */
    z-index: 0;
}

/* Content Positioning */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

/* Shloka Style */
.shloka-text {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 1.6rem;
    color: #FFD700; /* Golden Color */
    margin-bottom: 12px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    letter-spacing: 1.5px;
}

/* Main Title Style */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Tagline Style */
.hero-tagline {
    font-family: 'Noto Serif', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 35px;
    color: #f4e6c8; /* Creamish White */
    font-style: italic;
}

/* Buttons Container */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary Button (Saffron) */
.btn-primary {
    background: #ff6b35;
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(255,107,53,0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e65a2a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.6);
}

/* Secondary Button (Border Only) */
.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .hero-wrapper { height: 85vh; }
    .hero-btns { flex-direction: column; gap: 15px; }
    .btn-primary, .btn-secondary { width: 100%; padding: 14px 25px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-79411fd *//* ========== SECTION 6.5: VIDEO (IMPROVED) ========== */
.video-experience-section {
    background: var(--white);
    padding: 80px 0;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;          /* comfortable viewing size */
    margin: 0 auto;
    padding-bottom: 56.25%;    /* 16:9 aspect ratio (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(100, 30, 22, 0.25);
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Optional: add a subtle glow on hover */
.video-wrapper:hover {
    box-shadow: 0 30px 60px -12px var(--maroon);
}/* End custom CSS */