
@FONT-FACE {
    font-family: "DiodrumArabic";
    src: url(fonts/DiodrumArabic/DiodrumArabic-Regular.ttf)
}


/*
@FONT-FACE {
    font-family: "reg";
    src: url(Bahij_TheSansArabic-Plain.ttf)
}


@FONT-FACE {
    font-family: "bod";
  src: url(Bahij_TheSansArabic-Plain.ttf)
}


@FONT-FACE {
    font-family: "header";
    src: url(Bahij_TheSansArabic-Plain.ttf)
}*/

/*
@FONT-FACE {
    font-family: "metro";
    src: url(metropolis-bold-webfont.woff2)
}*/

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.5s, color 0.3s, border-color 0.3s, transform 0.3s, opacity 0.3s;
        }

        body {
            font-family: 'DiodrumArabic', 'Arial', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        :root {
            /* ألوان الوضع الليلي (الإفتراضي) */
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --bg-tertiary: #111111;
            --text-primary: #ffffff;
            --text-secondary: #cccccc;
            --accent-color: #7a6bc9;
            --accent-color-dark: #4f4195;
            --accent-gradient: linear-gradient(45deg, #4f4195, #7a6bc9);
            --card-bg: rgba(255, 255, 255, 0.05);
            --card-border: rgba(79, 65, 149, 0.2);
            --shadow-color: rgba(79, 65, 149, 0.3);
        }

        .light-mode {
            /* ألوان الوضع النهاري */
            --bg-primary: #f0f0f0;
            --bg-secondary: #ffffff;
            --bg-tertiary: #e0e0e0;
            --text-primary: #333333;
            --text-secondary: #555555;
            --accent-color: #5e4ca8;
            --accent-color-dark: #4a3c86;
            --accent-gradient: linear-gradient(45deg, #5e4ca8, #7a6bc9);
            --card-bg: rgba(255, 255, 255, 0.8);
            --card-border: rgba(94, 76, 168, 0.2);
            --shadow-color: rgba(94, 76, 168, 0.2);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .light-mode .header {
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 0px;
            color: var(--accent-color);
            text-shadow: 0 0 20px rgba(122, 107, 201, 0.5);
            letter-spacing: 3px;
        }
        .logo  img {
            max-height: 105px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
            text-shadow: 0 0 10px rgba(122, 107, 201, 0.5);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--accent-gradient);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .theme-toggle {
            background: var(--accent-gradient);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 0 10px var(--shadow-color);
            transition: transform 0.3s ease;
        }

        .theme-toggle:hover {
            transform: rotate(30deg);
        }

        .theme-toggle i {
            color: white;
            font-size: 1.2rem;
        }

        .light-mode .theme-toggle i {
            color: white;
        }

        /* Slider Section - Fixed */
        .slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .slides-container {
            height: 100%;
            position: relative;
        }

        .slide {
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-content {
            text-align: center;
            z-index: 2;
            position: relative;
            width: 100%;
            padding: 0 20px;
            background: rgba(0, 0, 0, 0.6);
            padding: 40px;
            border-radius: 15px;
            max-width: 90%;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out;
        }

        .light-mode .slide-content {
            background: rgba(255, 255, 255, 0.7);
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--accent-color-dark), var(--text-primary), var(--accent-color-dark));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 3s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(79, 65, 149, 0.3);
            letter-spacing: 5px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 40px;
            opacity: 0.9;
            letter-spacing: 8px;
            text-transform: uppercase;
            font-weight: 300;
            color: var(--accent-color);
        }

        .hero-tagline {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 50px;
            font-weight: 400;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .light-mode .hero-tagline {
            color: #333;
        }

        .features {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            background: rgba(79, 65, 149, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid rgba(79, 65, 149, 0.3);
            color: var(--text-primary);
        }

        .light-mode .feature-item {
            background: rgba(79, 65, 149, 0.08);
            border: 1px solid rgba(79, 65, 149, 0.2);
            color: #333;
        }

        .feature-item i {
            color: var(--accent-color);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--accent-gradient);
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 30px var(--shadow-color);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            margin-top: 30px;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px var(--shadow-color);
            background: transparent;
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 50px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 10;
        }

        .slider-dots {
            display: flex;
            gap: 12px;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .light-mode .slider-dot {
            background: rgba(0, 0, 0, 0.2);
        }

        .slider-dot.active {
            background: var(--accent-color);
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(122, 107, 201, 0.7);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .light-mode .slider-btn {
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.2);
            color: #333;
        }

        .slider-btn:hover {
            background: var(--accent-color-dark);
            color: #fff;
            box-shadow: 0 0 15px var(--shadow-color);
            border-color: transparent;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            /* background: var(--bg-tertiary); */
                background: #fff;
                position: relative;
                z-index: 1;
        }
        .services::before {
            position: absolute;
            content: "";
            right: 0;
            top: 0;
            background: url(../images/bg.jpg);
            background-attachment: fixed;
            background-size: contain;
            opacity: 0.08;
            z-index: 2;
            height: 100%;
            width: 100%;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 70px;
            color: var(--text-primary);
            font-weight: 700;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            z-index: 3;
            position: relative;
        }

        .service-card {
            background: var(--card-bg);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 65, 149, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px var(--shadow-color);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.7rem;
            margin-bottom: 20px;
            color: var(--text-primary);
            font-weight: 700;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
            text-align: right;
        }

        .service-features {
            list-style: none;
            margin-top: 20px;
            text-align: right;
        }

        .service-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
            font-weight: 500;
            position: relative;
            padding-right: 25px;
        }

        .light-mode .service-features li {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: var(--accent-color);
        }

        /* About Section */
       

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--bg-primary);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-secondary);
            text-align: right;
        }

        .about-text h2 {
            color: var(--text-primary);
            font-size: 2.8rem;
            margin-bottom: 30px;
            font-weight: 800;
            position: relative;
            padding-bottom: 20px;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .about-features {
            list-style: none;
            margin-top: 30px;
        }

        .about-features li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding-right: 35px;
        }

        .light-mode .about-features li {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .about-features li::before {
            content: '✓';
            position: absolute;
            right: 0;
            font-size: 1.5rem;
        }

        .about-image {
            height: 500px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .about-image-content {
            background: rgba(0, 0, 0, 0.7);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            color: white;
            width: 90%;
            animation: fadeIn 1s ease-in-out;
        }

        .light-mode .about-image-content {
            background: rgba(255, 255, 255, 0.7);
            color: #333;
        }

        .about-image-content h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .about-image-content p {
            line-height: 1.7;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* بقية الأكواد تبقى كما هي... */

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-image {
                height: 400px;
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                letter-spacing: 4px;
            }
            
            .nav-menu {
                display: none;
            }
            
            .about-image {
                height: 300px;
            }
        }
        /* end about */

        .vision-mission {
            background: rgba(0, 0, 0, 0.7);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            width: 100%;
        }

        .light-mode .vision-mission {
            background: rgba(255, 255, 255, 0.7);
        }

        .vision-mission h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .vision-mission p {
            color: #ffffff;
            line-height: 1.7;
        }

        .light-mode .vision-mission p {
            color: #333;
        }

        .values {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            width: 100%;
        }

        .value-item {
            background: rgba(0, 0, 0, 0.7);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
        }

        .light-mode .value-item {
            background: rgba(255, 255, 255, 0.7);
            color: #333;
        }

        /* Why Us Section */
        .why-us {
            padding: 100px 0;
            background: var(--bg-tertiary);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px var(--shadow-color);
            background: rgba(79, 65, 149, 0.05);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .benefit-text {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Video Section */
        .video-section {
            padding: 100px 0;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .video-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px var(--shadow-color);
            border: 5px solid rgba(79, 65, 149, 0.3);
        }

        .light-mode .video-container {
            border: 5px solid rgba(94, 76, 168, 0.2);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-content {
            text-align: center;
            margin-bottom: 50px;
        }

        .video-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            position: relative;
            display: inline-block;
        }

        .video-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .video-content p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
            background: var(--bg-tertiary);
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gallery-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 50px;
            color: var(--text-primary);
            position: relative;
        }

        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .gallery-carousel {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .gallery-inner {
            display: flex;
            transition: transform 0.6s ease-in-out;
            gap: 20px;
        }

        .gallery-item {
            flex: 0 0 calc(25% - 15px);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px var(--shadow-color);
        }

        .gallery-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px;
            text-align: center;
            color: white;
            font-size: 1.1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .gallery-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            z-index: 10;
            pointer-events: none;
        }

        .gallery-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-gradient);
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 5px 15px var(--shadow-color);
            border: none;
        }

        .gallery-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px var(--shadow-color);
        }

        .gallery-btn-prev {
            margin-right: -30px;
        }

        .gallery-btn-next {
            margin-left: -30px;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .lightbox.active {
            opacity: 1;
            pointer-events: all;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            border-radius: 10px;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
        }

        .lightbox-caption {
            color: white;
            text-align: center;
            font-size: 1.2rem;
            margin-top: 15px;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--accent-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .lightbox-close:hover {
            transform: rotate(90deg);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--bg-primary);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-info {
            background: rgba(79, 65, 149, 0.05);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--card-border);
        }

        .light-mode .contact-info {
            background: rgba(79, 65, 149, 0.03);
        }

        .contact-title {
            color: var(--accent-color);
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .contact-details {
            list-style: none;
            margin-top: 30px;
        }

        .contact-details li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .light-mode .contact-details li {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .contact-details li i {
            color: var(--accent-color);
            font-size: 1.5rem;
            min-width: 30px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .light-mode .social-link {
            background: rgba(0, 0, 0, 0.05);
        }

        .social-link:hover {
            background: var(--accent-color);
            color: #fff;
            transform: translateY(-5px);
        }

        .contact-form {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--card-border);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--accent-color);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: var(--bg-secondary);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--accent-gradient);
            color: #fff;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
        }

        /* Footer */
        .footer {
            background: var(--bg-primary);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .light-mode .footer {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-content {
            text-align: center;
        }

        .footer-logo {
            font-size: 2.5rem;
            color: var(--accent-color);
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }

        .footer-tagline {
            color: var(--text-secondary);
            font-size: 1.3rem;
            letter-spacing: 2px;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .light-mode .copyright {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* WhatsApp Floating Button Styles */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            transition: all 0.3s ease;
        }
        
        .whatsapp-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-info {
            background: white;
            color: #075E54;
            padding: 8px 15px;
            border-radius: 30px;
            margin-bottom: 10px;
            font-weight: bold;
            font-size: 14px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .whatsapp-float:hover .whatsapp-info {
            opacity: 1;
            transform: translateY(0);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
            70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        /* Light/Dark mode adaptation */
        .light-mode .whatsapp-info {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-button {
                width: 55px;
                height: 55px;
                font-size: 30px;
            }
            
            .whatsapp-info {
                font-size: 12px;
                padding: 6px 12px;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .gallery-item {
                flex: 0 0 calc(33.333% - 15px);
            }
        }

        @media (max-width: 992px) {
            .about-content, .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-image {
                height: 400px;
            }

            .gallery-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .gallery-btn-prev {
                margin-right: -20px;
            }

            .gallery-btn-next {
                margin-left: -20px;
            }

            .gallery-item {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                letter-spacing: 4px;
            }
            
            .nav-menu {
                display: none;
            }
            
            .services-grid, .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .features {
                flex-direction: column;
                align-items: center;
            }
            
            .about-image {
                height: 300px;
                padding: 20px;
            }
            
            .values {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                flex: 0 0 calc(100% - 15px);
            }
        }

        /* Animated Elements */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }



/* Hero Section */
    .about-hero {
        background: radial-gradient(circle at center, var(--bg-primary) 0%, #1a1a2e 100%);
        min-height: 70vh;
        display: flex;
        align-items: center;
        padding-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        animation: float 20s ease-in-out infinite;
    }

    .light-mode .about-hero::before {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23000000" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(2deg); }
    }

    .hero-content {
        text-align: center;
        z-index: 2;
        position: relative;
        width: 100%;
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 4.5rem;
        font-weight: 900;
        margin-bottom: 20px;
        background: linear-gradient(45deg, var(--accent-color-dark), var(--text-primary), var(--accent-color-dark));
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 3s ease-in-out infinite;
        text-shadow: 0 0 30px rgba(79, 65, 149, 0.3);
        letter-spacing: 5px;
    }

    @keyframes shimmer {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 40px;
        opacity: 0.9;
        letter-spacing: 8px;
        text-transform: uppercase;
        font-weight: 300;
        color: var(--accent-color);
    }

    .breadcrumb {
        display: flex;
        justify-content: center;
        list-style: none;
        gap: 10px;
        font-size: 1.1rem;
        margin-top: 30px;
    }

    .breadcrumb li {
        display: flex;
        align-items: center;
    }

    .breadcrumb li:not(:last-child)::after {
        content: '/';
        margin: 0 10px;
        color: var(--text-secondary);
    }

    .breadcrumb a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb a:hover {
        color: var(--accent-color);
    }

    .breadcrumb span {
        color: var(--accent-color);
    }

    /* About Content */
    .about-section {
        padding: 100px 0;
        background: var(--bg-primary);
    }

    .section-title {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 70px;
        color: var(--text-primary);
        font-weight: 700;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--accent-gradient);
        border-radius: 2px;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-text {
        font-size: 1.15rem;
        line-height: 1.9;
        color: var(--text-secondary);
        text-align: right;
    }

    .about-text h2 {
        color: var(--text-primary);
        font-size: 2.8rem;
        margin-bottom: 30px;
        font-weight: 800;
        position: relative;
        padding-bottom: 20px;
    }

    .about-text h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100px;
        height: 4px;
        background: var(--accent-gradient);
        border-radius: 2px;
    }

    .about-features {
        list-style: none;
        margin-top: 30px;
    }

    .about-features li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
        font-weight: 600;
        font-size: 1.1rem;
        position: relative;
        padding-right: 35px;
    }

    .light-mode .about-features li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .about-features li::before {
        content: '✓';
        position: absolute;
        right: 0;
        font-size: 1.5rem;
    }

    /* .about-image {
        background: var(--accent-gradient);
        height: 500px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: #ffffff;
        font-weight: bold;
        position: relative;
        overflow: hidden;
        padding: 30px;
        text-align: center;
    } */

    .vision-mission {
        background: rgba(0, 0, 0, 0.7);
        padding: 25px;
        border-radius: 15px;
        margin-bottom: 30px;
        width: 100%;
    }

    .light-mode .vision-mission {
        background: rgba(255, 255, 255, 0.7);
    }

    .vision-mission h3 {
        color: var(--accent-color);
        margin-bottom: 15px;
        font-size: 1.8rem;
    }

    .vision-mission p {
        color: #ffffff;
        line-height: 1.7;
    }

    .light-mode .vision-mission p {
        color: #333;
    }

    .values {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
    }

    .value-item {
        background: rgba(0, 0, 0, 0.7);
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        font-weight: bold;
        font-size: 1.2rem;
        color: white;
    }

    .light-mode .value-item {
        background: rgba(255, 255, 255, 0.7);
        color: #333;
    }

    /* Timeline Section */
    .timeline-section {
        padding: 100px 0;
        background: #fff;
        position: relative;
        z-index: 1;
    }
    .timeline-section::before {
        position: absolute;
        content: "";
        right: 0;
        top: 0;
        background: url(../images/bg.jpg);
        background-attachment: fixed;
        background-size: contain;
        opacity: 0.08;
        z-index: 2;
        height: 100%;
        width: 100%;
    }

    .timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
            z-index: 3;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--accent-gradient);
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 70px;
        width: 100%;
    }

    .timeline-content {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 15px;
        border: 1px solid var(--card-border);
        backdrop-filter: blur(10px);
        width: calc(50% - 40px);
        position: relative;
        transition: all 0.3s ease;
    }

    .timeline-content:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
        box-shadow: 0 20px 40px var(--shadow-color);
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
    }

    .timeline-year {
        position: absolute;
        top: 20px;
        background: var(--accent-gradient);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-weight: bold;
    }

    .timeline-item:nth-child(odd) .timeline-year {
        right: -80px;
    }

    .timeline-item:nth-child(even) .timeline-year {
        left: -80px;
    }

    .timeline-content h3 {
        font-size: 1.8rem;
        color: var(--accent-color);
        margin-bottom: 15px;
    }

    .timeline-content p {
        color: var(--text-secondary);
        line-height: 1.8;
    }

    /* Team Section */
    .team-section {
        padding: 100px 0;
        background: var(--bg-primary);
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .team-card {
        background: var(--card-bg);
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid var(--card-border);
        transition: all 0.3s ease;
        position: relative;
        text-align: center;
    }

    .team-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
        box-shadow: 0 20px 40px var(--shadow-color);
    }

    .team-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

    .team-info {
        padding: 20px;
    }

    .team-name {
        font-size: 1.5rem;
        color: var(--text-primary);
        margin-bottom: 5px;
    }

    .team-position {
        color: var(--accent-color);
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .team-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .team-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        transition: all 0.3s ease;
    }

    .team-social a:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-5px);
    }

    /* Stats Section */
    .stats-section {
        padding: 100px 0;
        background: var(--accent-gradient);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .stat-card {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        border: 1px solid var(--card-border);
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
        box-shadow: 0 20px 40px var(--shadow-color);
    }

    .stat-icon {
        font-size: 3rem;
        color: var(--accent-color);
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: bold;
        color: var(--text-primary);
        margin-bottom: 10px;
    }

    .stat-text {
        color: var(--text-secondary);
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        background: var(--bg-primary);
        padding: 50px 0 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .light-mode .footer {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .footer-content {
        text-align: center;
    }

    .footer-logo {
        font-size: 2.5rem;
        color: var(--accent-color);
        font-weight: bold;
        margin-bottom: 20px;
        letter-spacing: 3px;
    }

    .footer-tagline {
        color: var(--text-secondary);
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 40px;
        font-weight: 300;
    }

    .copyright {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .light-mode .copyright {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* WhatsApp Floating Button Styles */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        transition: all 0.3s ease;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #25D366;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid white;
        animation: pulse 2s infinite;
    }
    
    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
    
    .whatsapp-info {
        background: white;
        color: #075E54;
        padding: 8px 15px;
        border-radius: 30px;
        margin-bottom: 10px;
        font-weight: bold;
        font-size: 14px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .whatsapp-float:hover .whatsapp-info {
        opacity: 1;
        transform: translateY(0);
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
        70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
    
    /* Light/Dark mode adaptation */
    .light-mode .whatsapp-info {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
    }
    
    /* Responsive design */
    @media (max-width: 992px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .about-image {
            height: 400px;
        }

        .timeline::before {
            left: 30px;
        }
        
        .timeline-content {
            width: calc(100% - 80px);
            margin-left: 80px !important;
        }
        
        .timeline-year {
            left: -80px !important;
            right: auto !important;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            letter-spacing: 4px;
        }
        
        .nav-menu {
            display: none;
        }
        
        /* .about-image {
            height: 300px;
            padding: 20px;
        } */
        
        .values {
            grid-template-columns: 1fr;
        }
    }