  
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1a5f7a 0%, #2a9d8f 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            gap: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            white-space: nowrap;
        }
        
        .logo-icon {
            font-size: 2rem;
            margin-right: 10px;
            color: #ffd166;
        }
        
        .logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .logo-tagline {
            font-size: 0.75rem;
            opacity: 0.9;
            margin-top: 2px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            flex-wrap: nowrap;
        }
        
        nav {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        
        nav li {
            margin-left: 15px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffd166;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Slider Section */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            background-color: #1a5f7a;
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slide:nth-child(1) {
            background-image: linear-gradient(135deg, rgba(26, 95, 122, 0.4) 0%, rgba(42, 157, 143, 0.5) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80');
        }
        
        .slide:nth-child(2) {
            background-image: linear-gradient(135deg, rgba(26, 95, 122, 0.4) 0%, rgba(42, 157, 143, 0.5) 100%), url('https://images.unsplash.com/photo-1427504494785-cdad6e08da20?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80');
        }
        
        .slide:nth-child(3) {
            background-image: linear-gradient(135deg, rgba(26, 95, 122, 0.4) 0%, rgba(42, 157, 143, 0.5) 100%), url('https://images.unsplash.com/photo-1576091160550-112173f31c74?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80');
        }
        
        .slide:nth-child(4) {
            background-image: linear-gradient(135deg, rgba(26, 95, 122, 0.4) 0%, rgba(42, 157, 143, 0.5) 100%), url('https://images.unsplash.com/photo-1559027615-cd2628902d4a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80');
        }
        
        .slide-content {
            text-align: center;
            color: white;
            max-width: 900px;
            padding: 40px;
            animation: slideIn 0.8s ease-in-out;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            backdrop-filter: blur(5px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slide-content h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        /* Slider Navigation Buttons */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            font-size: 1.8rem;
            padding: 15px 20px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .slider-nav:hover {
            background-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-nav.prev {
            left: 20px;
        }
        
        .slider-nav.next {
            right: 20px;
        }
        
        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .dot.active {
            background-color: #ffd166;
            transform: scale(1.2);
        }
        
        .dot:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        .cta-button {
            display: inline-block;
            background-color: #ffd166;
            color: #1a5f7a;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            background-color: #ffc145;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        
        /* Hinduism Section */
        .hinduism-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
        }
        
        .hinduism-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            padding: 0 20px;
        }
        
        .hinduism-intro p {
            font-size: 1.1rem;
            color: #1a5f7a;
            line-height: 1.8;
            font-weight: 500;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }
        
        .value-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #2a9d8f;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .value-icon {
            font-size: 3rem;
            color: #2a9d8f;
            margin-bottom: 20px;
        }
        
        .value-card h3 {
            color: #1a5f7a;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: #555;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        /* Responsive for Hinduism Section */
        @media (max-width: 768px) {
            .hinduism-section {
                padding: 3rem 0;
            }
            
            .values-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .value-card {
                padding: 20px;
            }
            
            .value-icon {
                font-size: 2.5rem;
            }
            
            .value-card h3 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .value-card {
                padding: 20px 15px;
            }
            
            .value-icon {
                font-size: 2rem;
            }
            
            .value-card h3 {
                font-size: 1.1rem;
            }
            
            .value-card p {
                font-size: 0.9rem;
            }
        }
        
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #1a5f7a;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: #2a9d8f;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .trust-objectives {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 4rem;
        }
        
        .objective-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .objective-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .objective-img {
            height: 180px;
            width: 100%;
            object-fit: cover;
        }
        
        .objective-content {
            padding: 25px;
        }
        
        .objective-content h3 {
            color: #1a5f7a;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .objective-content p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .objective-number {
            display: inline-block;
            background-color: #2a9d8f;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 10px;
            font-weight: 700;
        }
        
        /* About Section */
        .about-section {
            background-color: #e9f5f4;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }
        
        .about-text h2 {
            color: #1a5f7a;
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* Board of Trustees Section */
        .board-section {
            padding: 4rem 0;
        }
        
        .trustees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }
        
        .trustee-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .trustee-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .trustee-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-bottom: 4px solid #2a9d8f;
        }
        
        .trustee-info {
            padding: 25px 20px;
        }
        
        .trustee-name {
            color: #1a5f7a;
            font-size: 1.4rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .trustee-position {
            color: #2a9d8f;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .trustee-bio {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 12px;
            width: 90%;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #2a9d8f;
            padding-bottom: 1rem;
        }
        
        .modal-header h2 {
            color: #1a5f7a;
            margin: 0;
        }
        
        .modal-close {
            font-size: 2rem;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
            border: none;
            background: none;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-close:hover {
            color: #1a5f7a;
        }
        
        .modal-body {
            color: #555;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .modal-body .trustee-position {
            color: #2a9d8f;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .show-more-btn {
            background-color: #2a9d8f;
            color: white;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.85rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }
        
        .show-more-btn:hover {
            background-color: #1a5f7a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .trustee-bio-preview {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* Footer */
        footer {
            background-color: #1a5f7a;
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffd166;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #2a9d8f;
            bottom: 0;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ffd166;
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 10px;
            color: #ffd166;
            width: 20px;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: #2a9d8f;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .slide-content h1 {
                font-size: 2.8rem;
            }
            
            .trust-objectives {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .trustees-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav {
                width: 100%;
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            
            nav li {
                margin: 5px 0;
            }
            
            nav a {
                display: block;
                padding: 10px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            
            .hero-slider {
                height: 500px;
            }
            
            .slide-content {
                max-width: 85%;
                padding: 30px 20px;
            }
            
            .slide-content h1 {
                font-size: 2.4rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .slider-nav {
                padding: 12px 15px;
                font-size: 1.5rem;
            }
            
            .trustees-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero-slider {
                height: 350px;
            }
            
            .slide-content {
                max-width: 90%;
                padding: 20px 15px;
            }
            
            .slide-content h1 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }
            
            .slide-content p {
                font-size: 0.95rem;
                margin-bottom: 1.2rem;
            }
            
            .cta-button {
                padding: 10px 25px;
                font-size: 0.95rem;
            }
            
            .trust-objectives {
                grid-template-columns: 1fr;
            }
            
            .objective-card {
                margin-bottom: 20px;
            }
            
            .slider-nav {
                padding: 10px 12px;
                font-size: 1.2rem;
            }
            
            .slider-nav.prev {
                left: 10px;
            }
            
            .slider-nav.next {
                right: 10px;
            }
            
            .slider-dots {
                bottom: 20px;
                gap: 8px;
            }
            
            .dot {
                width: 10px;
                height: 10px;
            }
        }
    