/* Hero Section */
        .hero-section {
            min-height: 40vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 50%;
            width: auto;
            height: 100%;
            transform: translateX(-50%) translateY(-50%);
            z-index: 1;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(254, 114, 0, 0.8) 0%, rgba(243, 111, 3, 0.799) 100%);
            z-index: 2;
        }

        .hero-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(254, 114, 0, 0.8) 0%, rgba(243, 111, 3, 0.799) 100%);
            opacity: 0.3;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 3;
            position: relative;
            padding-top: 80px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-family: 'Playfair Display', serif;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Floating Elements */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: linear-gradient(135deg, rgba(254, 114, 0, 0.8) 0%, rgba(243, 111, 3, 0.799) 100%);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Main Content Styles */
        .mrutha-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .mrutha-image {
            text-align: center;
            margin: 40px 0;
        }

        .mrutha-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .mrutha-image h1 {
            font-size: 2.5rem;
            color: #333;
            margin-top: 20px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .mrutha-summary {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            border-left: 4px solid rgba(254, 114, 0, 0.8);
        }

        .mrutha-summary p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }

        .mrutha-summary p:before {
            content: "\f0a4";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: rgba(254, 114, 0, 0.8);
        }

        .mrutha-description {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            border-left: 4px solid rgba(254, 114, 0, 0.8);
        }

        .mrutha-description h2 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
            font-family: 'Playfair Display', serif;
        }

        .mrutha-description p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, rgba(254, 114, 0, 0.8) 0%, rgba(243, 111, 3, 0.799) 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin: 20px 0;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, rgba(224, 94, 0, 0.8) 0%, rgba(213, 91, 0, 0.799) 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Mobile Responsiveness */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .mrutha-image h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .mrutha-image h1 {
                font-size: 1.8rem;
            }

            .mrutha-description h2 {
                font-size: 1.5rem;
            }
        }