        /* Global Styles */
        :root {
            --primary-color: #134763;
            --secondary-color: #dbdbdb;
            --accent-color: #c9a145;
            --text-color: #333;
            --light-text: #f8f9fa;
            --dark-green: #0d3013;
            --gold-light: #e8d9a9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #fefefe;
            color: var(--text-color);
            line-height: 1.8;
            overflow-x: hidden;
        }

        .arabic-font {
            font-family: 'Amiri', serif;
        }

        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 85px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 2;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #555;
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 400;
        }

        .btns {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(26, 71, 34, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btns::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-green), var(--primary-color));
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btns:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(26, 71, 34, 0.3);
        }

        .btns:hover::before {
            left: 0;
        }

        .gold-text {
            color: var(--accent-color);
        }

        .pattern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmNWYwZTYiIGZpbGwtb3BhY2l0eT0iMC40Ij48cGF0aCBkPSJNMCA0MGw0MC0wIDAgLTQwIC00MCAwIDAgNDB6bTQwIDBsLTQwIDAiLz48L2c+PC9nPjwvc3ZnPg==');
            opacity: 0.1;
            z-index: -1;
        }

        .islamic-pattern {
            position: absolute;
            width: 300px;
            height: 300px;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMEgxMDBWMTAwSDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTUwIDBDMjIuNCAwIDAgMjIuNCAwIDUwczIyLjQgNTAgNTAgNTAgNTAtMjIuNCA1MC01MFM3Ny42IDAgNTAgMHptMCA4NUMzNi4xIDg1IDI1IDczLjkgMjUgNTBzMTEuMS0zNSAyNS0zNSAyNSAxMS4xIDI1IDM1LTExLjEgMzUtMjUgMzV6IiBmaWxsPSIjYzlhMTQ1IiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
            background-size: contain;
            opacity: 0.1;
            z-index: -1;
        }

        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 5px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: all 0.4s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 68px;
            margin-right: 15px;
            transition: all 0.4s ease;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
            transition: all 0.4s ease;
        }

        .logo p {
            font-size: 0.9rem;
            color: var(--accent-color);
            margin: 0;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin-left: 30px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary-color);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }

        /* Hero Slider */
        .hero {
            margin-top: 0;
            height: 100vh;
            min-height: 800px;
            position: relative;
            overflow: hidden;
        }

        .slider {
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #05293c, #05293c6e);
        }

        .slide-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            padding: 0 50px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease;
            transition-delay: 0.3s;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h2 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: white;
            line-height: 1.3;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .slide-content .arabic {
            font-family: 'Amiri', serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--gold-light);
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .slide-1 {
            background-image: url('images/slider-1.png');
        }

        .slide-2 {
            background-image: url(images/slider-2.jpg);
        }

        .slide-3 {
            background-image: url(images/slider-3.jpg);
        }

        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 2;
        }

        .slider-nav button {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            border: 2px solid white;
            background: transparent;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .slider-nav button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: all 0.3s;
        }

        .slider-nav button.active::before {
            left: 0;
        }

        .scroll-down {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0) translateX(-50%);
            }

            40% {
                transform: translateY(-20px) translateX(-50%);
            }

            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        /* About Us Section */
        .about {
            background-color: var(--secondary-color);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--accent-color);
            opacity: 0.1;
            border-radius: 50%;
        }

        .about::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: var(--primary-color);
            opacity: 0.05;
            border-radius: 50%;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .about-img {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: rotate(-2deg);
            transition: all 0.5s ease;
        }

        .about-img:hover {
            transform: rotate(0deg);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
        }

        .about-text p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #555;
        }

        .about-features {
            margin-top: 40px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .about-feature:hover {
            background: white;
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .about-feature i {
            color: var(--accent-color);
            font-size: 1.8rem;
            margin-right: 20px;
            margin-top: 5px;
        }

        .feature-text h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .feature-text p {
            margin: 0;
            font-size: 1rem;
            color: #666;
        }

        /* Why Choose Us Section */
        .features {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 100%;
            background: linear-gradient(135deg, rgba(201, 161, 69, 0.05), rgba(26, 71, 34, 0.03));
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover::before {
            height: 10px;
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--secondary-color), white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--primary-color);
            font-size: 2.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
            color: white;
            transform: rotateY(180deg);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }

        .feature-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--accent-color);
        }

        .feature-card p {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, var(--secondary-color), #f9f5eb);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmNWYwZTYiIGZpbGwtb3BhY2l0eT0iMC42Ij48cGF0aCBkPSJNMCA0MGw0MC0wIDAgLTQwIC00MCAwIDAgNDB6bTQwIDBsLTQwIDAiLz48L2c+PC9nPjwvc3ZnPg==');
            opacity: 0.3;
            z-index: 0;
        }

        .testimonial-container {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 30px 0;
            scroll-snap-type: x mandatory;
            position: relative;
            z-index: 1;
        }

        .testimonial-container::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            min-width: 350px;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            scroll-snap-align: start;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 25px;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -15px;
            font-size: 4rem;
            color: var(--accent-color);
            opacity: 0.2;
            font-family: serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--accent-color);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #05293c, #271b00);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 15px;
            background: linear-gradient(90deg, var(--accent-color), var(--gold-light));
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-color);
        }

        .footer-column p {
            margin-bottom: 20px;
            opacity: 0.8;
            line-height: 1.8;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 70px;
            margin-right: 15px;
        }

        .footer-logo-text h3 {
            font-size: 1.5rem;
            margin: 0;
            color: white;
        }

        .footer-logo-text p {
            font-size: 0.9rem;
            color: var(--gold-light);
            margin: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--gold-light);
            font-size: 0.8rem;
        }

        .footer-links a:hover {
            opacity: 1;
            transform: translateX(5px);
        }

        .contact-info {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--gold-light);
            margin-right: 15px;
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .footer-bottom p a {
            color: var(--gold-light);
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .section-title h2 {
                font-size: 2.5rem;
            }

            .slide-content h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }

            .about-img,
            .about-text {
                flex: none;
                width: 100%;
            }

            .slide-content h2 {
                font-size: 2.5rem;
            }

            .slide-content p {
                font-size: 1.1rem;
            }

            .features-container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 90px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
                transition: all 0.5s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .section-title p {
                font-size: 1.1rem;
            }

            .hero {
                min-height: 700px;
            }

            .slide-content {
                padding: 0 30px;
            }

            .slide-content h2 {
                font-size: 2.2rem;
            }

            .slide-content .arabic {
                font-size: 2rem;
            }

            .features-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .slide-content h2 {
                font-size: 1.8rem;
            }

            .slide-content .arabic {
                font-size: 1.6rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .about-feature {
                flex-direction: column;
                text-align: center;
            }

            .about-feature i {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }



        /* quran form */

        

   
    /* About Us Section Styles */
    .about-us-section {
        padding: 60px 0;
        background-color: #f8fafc;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 32px;
        color: #1a365d;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .header-line {
        width: 80px;
        height: 3px;
        background-color: #10b981;
        margin: 0 auto;
    }

    .about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
    }

    .about-image {
        flex: 1;
        min-width: 300px;
    }

    .about-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .about-text {
        flex: 1;
        min-width: 300px;
    }

    .about-text h3 {
        font-size: 24px;
        color: #2d3748;
        margin: 20px 0 15px;
        font-weight: 600;
    }

    .about-text p {
        color: #4a5568;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .features-list li {
        margin-bottom: 10px;
        color: #4a5568;
        display: flex;
        align-items: flex-start;
    }

    .check-icon {
        color: #10b981;
        margin-right: 10px;
        font-weight: bold;
    }

    /* Team Section Styles */
    .team-section {
        padding: 60px 0;
        background-color: #ffffff;
    }

    .team-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-subtitle {
        color: #4a5568;
        max-width: 700px;
        margin: 15px auto 0;
        line-height: 1.6;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .team-member {
        text-align: center;
        padding: 20px;
        background-color: #f8fafc;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .member-image {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px;
        border: 5px solid #e2e8f0;
    }

    .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-member h3 {
        font-size: 20px;
        color: #1a365d;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .member-position {
        color: #10b981;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .member-detail {
        color: #4a5568;
        font-size: 14px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .about-content {
            flex-direction: column;
        }

        .about-image,
        .about-text {
            flex: none;
            width: 100%;
        }

        .team-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

    @media (max-width: 480px) {
        .section-header h2 {
            font-size: 28px;
        }

        .team-grid {
            grid-template-columns: 1fr;
        }
    }
     /* Pricing Section Styles */
  .pricing-section {
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Open Sans', sans-serif;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section-title {
    text-align: center;
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .pricing-card.popular {
    border: 2px solid #10b981;
  }

  .pricing-card.hifz-plan {
    border: 2px solid #3b82f6;
  }

  .hifz-plan .card-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  }

  .card-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    border-radius: 12px 12px 0 0;
  }

  .pricing-card.popular .card-header {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
  }

  .card-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .price span {
    font-size: 16px;
    font-weight: 400;
  }

  .popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ef4444;
    color: white;
    padding: 4px 30px;
    font-size: 13px;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
  }

  .hifz-plan .popular-badge {
    background: #2563eb;
  }

  .card-body {
    padding: 25px;
  }

  .plan-duration {
    text-align: center;
    color: #10b981;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
  }

  .hifz-plan .plan-duration {
    color: #3b82f6;
  }

  .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
  }

  .features-list li {
    margin-bottom: 12px;
    color: #4a5568;
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .tick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .hifz-plan .tick-icon {
    background-color: #3b82f6;
  }

  .features-list .na {
    color: #a0aec0;
  }

  .features-list .na .tick-icon {
    background-color: #e2e8f0;
    color: #a0aec0;
  }

  .enroll-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .enroll-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
  }

  .pricing-card.popular .enroll-btn {
    background-color: #047857;
  }

  .hifz-plan .enroll-btn {
    background-color: #3b82f6;
  }

  .hifz-plan .enroll-btn:hover {
    background-color: #2563eb;
  }

  @media (max-width: 1200px) {
    .pricing-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .pricing-cards {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 30px;
    }

    .section-subtitle {
      font-size: 16px;
    }
  }

