                     
         /*  */
         .hero-section {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.prism.prathiroopa.net/themes/PrismInfraTheme/assets/images/banner/about_banner.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 80%;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #333;
            text-align: center;
            padding: 2rem 0;
            border-bottom: 2px solid #007bff;
        }
        
        .leadership-section {
            padding: 4rem 0;
            background-color: #e6f7ff;
        }
        
        .profile-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .profile-image {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #007bff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .profile-image:hover {
            transform: scale(1.05);
        }
        
        .profile-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.05rem;
            color: #333;
        }
        
        .profile-title {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: .01rem;
        }
        
        .principles {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2rem 0;
            text-align: center;
            color: #333;
        }
        
        .quote-container {
            position: relative;
            max-width: 800px;
            margin: 4rem auto;
            padding: 2rem;
            background-color: #003366;
            color: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            /* position: relative; */
        }
        
        .quote-text {
            font-size: 1.3rem;
            font-style: italic;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .quote-author {
            font-size: 1rem;
            text-align: center;
            font-weight: 500;
        }
        
        .quote-author-title {
            font-size: 0.9rem;
            text-align: center;
            opacity: 0.8;
        }
        
        /* Custom quote marks */
        .quote-mark {
            position: absolute;
            font-size: 4rem;
            color: #FFD700;
            opacity: 0.7;
            line-height: 1;
        }
        
        .quote-mark-start {
            top: -30px;
            left: -30px;
        }
        
        .quote-mark-end {
            bottom: -50px;
            right: -30px;
            /* transform: rotate(180deg); */
        }
        
        .content-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .profile-image {
                width: 200px;
                height: 200px;
            }
            
            .principles {
                font-size: 1.5rem;
            }
            
            .quote-text {
                font-size: 1.1rem;
            }
            
            .quote-mark {
                font-size: 5rem;
            }
            
            .quote-mark-start {
                top: -20px;
                left: -20px;
            }
            
            .quote-mark-end {
                bottom: -30px;
                right: -20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .profile-image {
                width: 150px;
                height: 150px;
            }
            
            .principles {
                font-size: 1.3rem;
            }
            
            .quote-text {
                font-size: 1rem;
            }
            
            .quote-mark {
                font-size: 4rem;
            }
            
            .quote-mark-start {
                top: -15px;
                left: -15px;
            }
            
            .quote-mark-end {
                bottom: -25px;
                right: -15px;
            }
        }
