 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #1a1a1a;
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }


.containerrr{
   
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
}
        .about-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            padding: 0px 40px;
            gap: 80px;
            position: relative;
        }

        .about-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        }

        .aboutData {
            flex: 1;
            z-index: 2;
            position: relative;
            animation: slideInLeft 1s ease-out;
        }

        .aboutData span {
            color: #ff6b35;
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .aboutData h1 {
            color: #ffffff;
            font-size: 4.8rem;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
            position: relative;
        }

        .aboutData h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #ff9068);
            border-radius: 2px;
            animation: expandLine 1.2s ease-out 1.2s forwards;
            transform: scaleX(0);
            transform-origin: left;
        }

        .aboutData p {
            color: #b8b8b8;
            font-size: 1.3rem;
            line-height: 1.7;
            font-weight: 300;
            letter-spacing: 0.5px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.9s forwards;
            position: relative;
        }

        .aboutImage {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .aboutImage::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(45deg, #ff6b35, #ff9068, #ffb347);
            border-radius: 20px;
            opacity: 0.3;
            filter: blur(20px);
            animation: glowPulse 3s ease-in-out infinite alternate;
        }

        .aboutImage img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 15px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 80px rgba(255, 107, 53, 0.2);
            transition: all 0.4s ease;
            position: relative;
            z-index: 3;
            background: #333;
            padding: 20px;
        }

        .aboutImage img:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 100px rgba(255, 107, 53, 0.3);
        }

      
        .about-section{
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
            margin: 0 auto;
            width: 65%;
            padding-bottom: 2rem;
        }
        .about-section h1{
            font-size: 3.5rem;
            line-height: 1.4;
            padding-bottom: 1.5rem;
            animation: slideInRight 1s ease-out;
        }
        .about-section p{
            font-size: 1.3rem;
            line-height: 1.6;
            padding-bottom: 1rem;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandLine {
            to {
                transform: scaleX(1);
            }
        }

        @keyframes glowPulse {
            0% {
                opacity: 0.3;
                transform: scale(1);
            }
            100% {
                opacity: 0.5;
                transform: scale(1.05);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-20px);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-container {
                flex-direction: column;
                gap: 40px;
                padding: 40px 20px;
                text-align: center;
            }

            .aboutData h1 {
                font-size: 3rem;
            }

            .aboutData p {
                font-size: 1.1rem;
            }

            .aboutImage {
                order: -1;
            }

            .aboutImage img {
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .aboutData h1 {
                font-size: 2.5rem;
            }

            .aboutData p {
                font-size: 1rem;
            }

            .about-container {
                padding: 30px 15px;
            }
            .about-section{
                width: 95%;
            }
            .about-section h1{
                font-size: 2rem;
            }
            .about-section p{
                font-size: 1rem;
                padding: .5rem;
            }
        }





.GData{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 4rem auto;
    max-width: 1200px;
    width: 95%;
}
.GData h1{
    width: 70%;
    font-size: 3rem;
    font-weight: 400;
    padding-bottom: 2rem;
    animation: slideInLeft 1s ease-out;
}
.GData p{
    width: 70%;
    font-size: 1.3rem;
    line-height: 1.5;
    padding-bottom: 2rem;
    
            animation: slideInRight 1s ease-out;
}
 @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }





/* contact section  */
        
.contactSec {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 60px 20px;
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .test-inner {
            text-align: center;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #edd05d, #f4e4a5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }


        .border1 {
            width: 160px;
            height: 5px;
            background: linear-gradient(90deg, transparent, #edd05d, transparent);
            margin: 30px auto 50px;
            border-radius: 3px;
        }

      
        .row1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 0 10px;
        }

        .col1 {
            animation: slideUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .col1:nth-child(1) {
            animation-delay: 0.2s;
        }

        .col1:nth-child(2) {
            animation-delay: 0.4s;
        }

        .col1:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(30px);
            }
        }

        .testimonial1 {
            background: linear-gradient(145deg, #3a3a3a, #4a4a4a);
            padding: 40px 25px;
            border-radius: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial1::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #edd05d, transparent, #edd05d);
            border-radius: 20px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .testimonial1:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(237, 208, 93, 0.2);
        }

        .testimonial1:hover::before {
            opacity: 0.3;
        }

        .testimonial1 img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #edd05d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .testimonial1:hover img {
            transform: scale(1.1) rotate(5deg);
        }

        .name1 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-weight: 700;
            text-transform: uppercase;
            margin: 25px 0 20px;
            color: #edd05d;
            line-height: 1.3;
            min-height: 60px;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .testimonial1 p {
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            line-height: 1.6;
            color: #e0e0e0;
            flex-grow: 1;
            text-align: center;
        }

        /* Tablet Styles */
        @media screen and (max-width: 968px) {
            .contactSec {
                padding: 40px 15px;
            }

            .row1 {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
            }

            .testimonial1 {
                padding: 35px 20px;
            }
        }

        /* Mobile Styles */
        @media screen and (max-width: 640px) {
            .contactSec {
                padding: 30px 10px;
            }

            h1 {
                letter-spacing: 1px;
            }

            .border1 {
                width: 120px;
                margin: 20px auto 35px;
            }

            .row1 {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0;
            }

            .testimonial1 {
                padding: 30px 20px;
                border-radius: 15px;
            }

            .testimonial1 img {
                width: 100px;
                height: 100px;
                border-width: 3px;
            }

            .name1 {
                margin: 20px 0 15px;
               
            }
        }

        /* Small Mobile Styles */
        @media screen and (max-width: 380px) {
            .contactSec {
                padding: 20px 5px;
            }

            .testimonial1 {
                padding: 25px 15px;
            }

            .testimonial1 img {
                width: 80px;
                height: 80px;
            }

            .testimonial1 p {
                font-size: 0.9rem;
            }
        }

        /* Accessibility and Performance */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }

        /* Focus styles for keyboard navigation */
        .testimonial1:focus-within {
            outline: 2px solid #edd05d;
            outline-offset: 4px;
        }










        
      /* faq section  */

        :root {
            --primary-color: #191919;
            --secondary-color: #edd05d;
            --accent-color: #edd05d;
            --text-color: #050505;
            --light-bg: #b3b2b2;
            --white: #3f3f3f;
            --shadow: 0 4px 20px rgba(0,0,0,0.1);
            --border-radius: 12px;
        }


        .containerr1 {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
       
        

        /* FAQ Section */
        .faq-section {
            background: var(--primary-color);
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
            margin-bottom: 6rem;
        }

        .faq-title {
            color: var(--light-bg);
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
        }

        .faq-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 10%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .faq-item {
            margin-bottom: 25px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .question {
            background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
            color: var(--primary-color);
            font-size: 1.2rem;
            padding: 20px;
            margin: 0;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-color);
            transition: transform 0.3s ease;
        }

        .question:hover {
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
        }

        .answer {
            padding: 25px;
            font-size: 1rem;
            line-height: 1.7;
            text-align: justify;
            background: var(--white);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .question::after {
            content: '-';
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-item.active .answer {
            max-height: 500px;
            padding: 25px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
        }

        @media (max-width: 768px) {
         
            .mission-section h1,
            .faq-title {
                font-size: 2rem;
            }
            
            .mission-section,
            .faq-section {
                padding: 30px;
            }
            
            .leader-image {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
           
            
            .mission-section h1,
            .faq-title {
                font-size: 1.7rem;
            }
            
            .mission-section,
            .faq-section {
                padding: 20px;
            }
            
            .question {
                font-size: 1.1rem;
                padding: 15px;
            }
            
            .answer {
                padding: 20px;
                font-size: 0.95rem;
            }
            
            .faq-item.active .answer {
                padding: 20px;
            }
        }