  
        :root {
            --pastel-green: #a8d5ba;
            --light-green: #d4e9d7;
            --beige: #f5f1e6;
            --dark-green: #5a7d5a;
            --text-color: #3a3a3a;
            --white: #ffffff;
            --gold: #d4af37;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--beige);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 400;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-family: 'Merriweather', serif;
            font-size: 1.8rem;
            color: var(--dark-green) !important;
            font-weight: 500;
        }
        
        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--dark-green) !important;
        }
        
        /* About Hero Section */
        .about-hero {
            height: 96vh;
            /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                        url("/images/about-hero-img.jpg") no-repeat center center/cover; */
             /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); */
             background: linear-gradient(135deg,#5a7d5a,#a8d5ba);
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: self-start;
            text-align: start;
            max-width: 900px;
            /* margin: 0 auto; */
            padding: 0 20px;
            z-index: 2;
            position: relative;
            left: 10%;
            transform: translate(-15%,-5%);
            /* text-align: center; */
        }
        
        .logo-container {
            margin-bottom: 30px;
            animation: fadeIn 1s ease;
        }
        
        .logo {
            font-family: 'Merriweather', serif;
            font-size: 3.5rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 10px;
        }
        
        .logo-subtitle {
            font-size: 1.2rem;
            color: var(--light-green);
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        
        .hero-content h1 {
            text-align: start;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content p {
            text-align: start;
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease;
            max-width: 800px;
            /* margin-left: auto; */
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .location-badge2 {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1rem;
            margin-top: 20px;
            animation: fadeIn 2s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 65%;
            left: 85%;
            animation-delay: 3s;
        }
        
        .floating-element:nth-child(3) {
            width: 70px;
            height: 70px;
            top: 80%;
            left: 15%;
            animation-delay: 6s;
        }
        
        .floating-element:nth-child(4) {
            width: 120px;
            height: 120px;
            top: 25%;
            left: 75%;
            animation-delay: 9s;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            z-index: 2;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background-color: var(--beige);
            color: white;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-labels {
            color: #3a3a3a;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .about-hero {
                height: 80vh;
            }
            
            .logo {
                font-size: 2.5rem;
            }
            
            .logo-subtitle {
                font-size: 1rem;
                letter-spacing: 2px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content{
                margin-left: 5%;
            }
            .about-hero {
                height: 70vh;
            }
            
            .logo {
                font-size: 2rem;
            }
            
            .hero-content h1 {
                font-size: 1.7rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .location-badge {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
    


     
        
        /* Instructor Section */
        .instructor-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(168, 213, 186, 0.1) 0%, rgba(212, 233, 215, 0.2) 50%, rgba(245, 241, 230, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Background Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--pastel-green) 0%, transparent 70%);
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: 100px;
            right: -100px;
            animation-delay: 5s;
        }
        
        .floating-element:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 20%;
            animation-delay: 10s;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--pastel-green), transparent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 25px auto 0;
        }
        
        /* Instructor Layout */
        .instructor-layout {
            position: relative;
            z-index: 2;
        }
        
        .instructor-profile {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }
        
        .instructor-image {
            flex: 0 0 320px;
            margin-right: 50px;
            position: relative;
        }
        
        .image-container {
            width: 320px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 40px rgba(90, 125, 90, 0.2);
            border: 8px solid white;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .instructor-profile:hover .image-container img {
            transform: scale(1.05);
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 213, 186, 0.2), transparent);
            border-radius: 12px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
        }
        
        .instructor-profile:hover .image-overlay {
            opacity: 1;
        }
        
        .experience-badge {
            background: var(--dark-green);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .instructor-profile:hover .experience-badge {
            transform: translateY(0);
        }
        
        .instructor-info {
            flex: 1;
        }
        
        .instructor-name {
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .instructor-name:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--pastel-green);
            bottom: -8px;
            left: 0;
        }
        
        .instructor-title {
            font-size: 1.3rem;
            color: #777;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .instructor-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-green);
            font-weight: 500;
            margin-bottom: 25px;
        }
        
        .instructor-bio {
            color: #555;
            margin-bottom: 30px;
        }
        
        .instructor-bio p {
            margin-bottom: 15px;
        }
        
        /* Qualifications Grid */
        .qualifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .qualification-item {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border-left: 4px solid var(--pastel-green);
            position: relative;
            overflow: hidden;
        }
        
        .qualification-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(168, 213, 186, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .qualification-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .qualification-item:hover:before {
            opacity: 1;
        }
        
        .qualification-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--light-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-green);
            font-size: 1.5rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .qualification-item:hover .qualification-icon {
            background: var(--pastel-green);
            transform: scale(1.1);
        }
        
        .qualification-text {
            color: #555;
            font-weight: 500;
        }
        
        /* Philosophy Section */
        .philosophy-container {
            background: linear-gradient(135deg, var(--light-green), var(--pastel-green));
            padding: 50px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(90, 125, 90, 0.15);
        }
        
        .philosophy-container:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .philosophy-title {
            font-size: 1.8rem;
            color: var(--dark-green);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 2;
        }
        
        .philosophy-quote {
            font-size: 1.8rem;
            color: var(--dark-green);
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            line-height: 1.4;
            text-align: center;
            padding: 0 40px;
        }
        
        .philosophy-quote:before, .philosophy-quote:after {
            content: '"';
            font-size: 4rem;
            color: rgba(90, 125, 90, 0.2);
            position: absolute;
            font-family: serif;
        }
        
        .philosophy-quote:before {
            top: -20px;
            left: 0;
        }
        
        .philosophy-quote:after {
            bottom: -40px;
            right: 0;
        }
        
        .philosophy-text {
            color: #555;
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Social Links */
        .instructor-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-green);
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .social-link:hover {
            background: var(--pastel-green);
            color: var(--text-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Stats Section */
        .stats-section {
            display: flex;
            justify-content: space-around;
            margin: 40px 0;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #777;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* CTA Button */
        .cta-button {
            background: linear-gradient(135deg, var(--pastel-green), var(--light-green));
            border: none;
            color: var(--text-color);
            padding: 16px 35px;
            font-size: 1.2rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 25px rgba(168, 213, 186, 0.4);
            margin-top: 20px;
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, var(--dark-green), var(--pastel-green));
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(90, 125, 90, 0.5);
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .instructor-profile, .qualification-item, .philosophy-container, .stats-section {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .cta-button {
            animation: pulse 2s infinite ease-in-out;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .instructor-profile {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }
            
            .instructor-image {
                flex: none;
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .image-container {
                width: 280px;
                height: 350px;
            }
            
            .instructor-name:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .stats-section {
                flex-direction: column;
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .instructor-section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .instructor-name {
                font-size: 2rem;
            }
            
            .qualifications-grid {
                grid-template-columns: 1fr;
            }
            
            .philosophy-container {
                padding: 30px;
            }
            
            .philosophy-quote {
                font-size: 1.5rem;
                padding: 0 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .instructor-profile {
                padding: 25px 20px;
            }
            
            .image-container {
                width: 240px;
                height: 300px;
            }
            
            .instructor-name {
                font-size: 1.7rem;
            }
            
            .philosophy-quote {
                font-size: 1.3rem;
            }
        }
    









        .h{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .h2{
            align-self: flex-start;
        }

        @media (max-width: 576px) {
            .h2{
                min-width: 90vw !important;
            }
            .h1{
                margin: 0px 0px 2px;
            }
            p{
                text-align: start !important;
            }

             .navlogo{
                display: block !important;
                transform: scale(1.2) !important;
            }
        }





        .instructor-location{
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
        }

        @media (max-width: 576px) {
            .instructor-location{
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .book-icon{
                display: none;
            }
        }