    @font-face {
            font-family: 'Saudi Health';
            src: url('https://cdn.jsdelivr.net/gh/muhammadkh4n/kingdom-of-saudi-arabia-fonts@main/SaudiHealthSans-Regular.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }
        :root {
            --primary: #1a6fc9;
            --secondary: #4a90e2;
            --accent: #ffb347;
            --light: #f8fafc;
            --dark: #2c3e50;
            --light-blue: #e3f2fd;
            --gray: #7f8c8d;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --gold-gradient: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
            --glass: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.3);
            --logo-color1: #3B6D87;
            --logo-color2: #88C0D6;
            --card-bg: #ffffff;
            --gradient-primary: linear-gradient(135deg, var(--logo-color1), var(--logo-color2));
            --gradient-accent: linear-gradient(135deg, var(--accent), #ffa724);
            --water-gradient: linear-gradient(135deg, rgba(136, 192, 214, 0.1), rgba(59, 109, 135, 0.2));
            --water-color: rgba(136, 192, 214, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
  font-family: 'Saudi Health', sans-serif;       }

        body {
            background: #ffffff;
            color: var(--dark);
            line-height: 1.8;
            padding-top: 100px;
            overflow-x: hidden;
            scroll-behavior: smooth;
            font-size: 1.05rem;
            background: linear-gradient(to bottom, #f8fafc, #f0f7ff);
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            height: 100px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }

        .logo img {
            height: 80px;
            width: auto;
            object-fit: contain;
            transition: var(--transition);
            filter: drop-shadow(0 3px 5px rgba(59, 109, 135, 0.2));
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 1.6rem;
            margin: 0;
            background: linear-gradient(to right, var(--logo-color1), var(--logo-color2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .logo-text h1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 3px;
        }

        .logo-text span {
            font-size: 0.9rem;
            color: var(--logo-color2);
            font-weight: 600;
        }

        .main-nav {
            display: flex;
            justify-content: center;
            flex: 1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--logo-color1);
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            padding: 10px 15px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--water-gradient);
            z-index: -1;
            transition: var(--transition);
            border-radius: 8px;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a i {
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .nav-links a:hover i {
            transform: rotate(180deg);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 250px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            padding: 15px 0;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li {
            padding: 10px 20px;
            transition: var(--transition);
        }

        .dropdown li:hover {
            background: rgba(136, 192, 214, 0.1);
        }

        .dropdown li a {
            padding: 8px 15px;
            width: 100%;
            color: var(--dark);
            font-weight: 500;
        }

        .dropdown li a:hover {
            color: var(--logo-color1);
            padding-right: 20px;
        }

        .hamburger {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 35px;
            height: 25px;
            z-index: 1100;
            position: relative;
            display: none;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--logo-color1);
            border-radius: 3px;
            transition: var(--transition);
            position: absolute;
            left: 0;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }

        .menu {
            position: fixed;
            top: 100px;
            right: -350px;
            width: 300px;
            height: calc(100vh - 100px);
            background: linear-gradient(to bottom, var(--logo-color1), var(--logo-color2));
            transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            padding-top: 30px;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            overflow-y: auto;
        }

        .menu.active {
            right: 0;
        }

        .menu ul {
            list-style: none;
            padding: 0;
        }

        .menu ul li {
            padding: 12px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            position: relative;
        }

        .menu ul li .submenu-trigger {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: var(--transition);
        }

        .menu ul li .submenu-trigger.active {
            transform: translateY(-50%) rotate(180deg);
        }

        .menu ul li:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            display: block;
            transition: var(--transition);
            display: flex;
            align-items: center;
            font-weight: 500;
            padding-right: 30px;
        }

        .menu ul li a i {
            margin-left: 10px;
            font-size: 20px;
            color: var(--accent);
        }

        .menu ul li a:hover {
            color: var(--accent);
            transform: translateX(-10px);
        }

        .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin-top: 8px;
        }

        .submenu.active {
            max-height: 500px;
        }

        .submenu li {
            padding: 10px 20px 10px 40px;
            border-bottom: none;
        }

        .submenu li a {
            font-size: 16px;
            font-weight: 400;
        }

        .contact-info {
            padding: 25px;
            background: rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-info p {
            color: white;
            margin: 10px 0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .contact-info i {
            color: var(--accent);
        }

        .about-header {
            min-height: 85vh;
            background: linear-gradient(rgba(59, 109, 135, 0.9), rgba(136, 192, 214, 0)), url('img4/450.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
            text-align: center;
            color: white;
            margin-top: -100px;
        }

        .about-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img4/100.jpg');
            opacity: 0.1;
            z-index: 0;
        }

        .header-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .header-content h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 900;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .header-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
            font-weight: 300;
            color: var(--light);
        }

        .about-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .about-nav a {
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: var(--transition);
        }

        .about-nav a:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 179, 71, 0.3);
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            font-size: 1.1rem;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: var(--accent);
        }
        
        .breadcrumb span {
            color: rgba(255, 255, 255, 0.6);
        }

        .mission-vision {
            padding: 80px 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mission-card, .vision-card {
            background: white;
            border-radius: 25px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--accent);
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .mission-card::before, .vision-card::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: var(--gold-gradient);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }

        .mission-card h2, .vision-card h2 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--logo-color1);
            position: relative;
            z-index: 1;
        }

        .mission-card h2::after, .vision-card h2::after {
            content: "";
            position: absolute;
            bottom: -12px;
            right: 0;
            width: 60px;
            height: 4px;
            background: var(--gold-gradient);
            border-radius: 5px;
        }

        .mission-card p, .vision-card p {
            color: var(--gray);
            line-height: 1.9;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }

        .values-section {
            padding: 80px 5%;
            background: linear-gradient(to bottom, #f0f5fa, #e3f2fd);
            position: relative;
            overflow: hidden;
        }

        .values-section::before {
            content: "";
            position: absolute;
            top: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.1;
            z-index: 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--logo-color1);
            position: relative;
            z-index: 1;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--gold-gradient);
            border-radius: 5px;
        }
        

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .value-card {
            background: white;
            border-radius: 20px;
            padding: 30px 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--logo-color1);
            transition: var(--transition);
        }

        .value-card:hover .value-icon {
            background: var(--gold-gradient);
            color: white;
            transform: scale(1.1);
        }

        .value-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--logo-color1);
        }

        .value-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 1rem;
        }

        .journey-section {
            padding: 80px 5%;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .journey-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--light-blue);
            left: 50%;
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            width: 100%;
        }

        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 30px);
            text-align: left;
        }

        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 30px);
            text-align: right;
        }

        .timeline-content {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            border-top: 4px solid var(--accent);
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 18px;
            height: 18px;
            background: var(--accent);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -35px;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -35px;
        }

        .timeline-year {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gold-gradient);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
        }

        .timeline-item:nth-child(odd) .timeline-year {
            right: -80px;
        }

        .timeline-item:nth-child(even) .timeline-year {
            left: -80px;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--logo-color1);
        }

        .timeline-content p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 1rem;
        }

        .team-section {
            padding: 80px 5%;
            background: linear-gradient(to bottom, #f8fafc, #f0f5fa);
            position: relative;
            overflow: hidden;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .team-member {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .member-img {
            height: 260px;
            overflow: hidden;
            position: relative;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-member:hover .member-img img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 25px 15px;
        }

        .member-info h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--logo-color1);
        }

        .member-info p.position {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .member-info p.bio {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--logo-color1);
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-5px);
        }

        .stats-section {
            padding: 80px 5%;
            background: linear-gradient(rgba(59, 108, 135, 0.581), rgba(136, 192, 214, 0.532)), url('img4/Group-80\ \(1\).png') center/cover;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img4/pressure-booster-pump.jpg');
            opacity: 0.1;
            z-index: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            padding: 30px 15px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: white;
            display: block;
            transition: var(--transition);
        }

        .stat-item:hover .stat-number {
            color: var(--accent);
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .partners-section {
            padding: 80px 5%;
            background-color: white;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
            justify-content: center;
        }

        .partner-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .partner-logo:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: var(--transition);
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .cta-about {
            padding: 80px 5%;
            background: linear-gradient(rgba(59, 109, 135, 0.9), rgba(136, 192, 214, 0.9)), url('img4/100.jpg') center/cover;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .cta-content p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.8;
            font-weight: 300;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 16px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
            border: none;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 179, 71, 0.4);
        }

        .btn:hover::after {
            opacity: 0.2;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
            box-shadow: none;
        }

        .btn-outline::after {
            background: white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--logo-color1);
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 10px;
            transition: var(--transition);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-accent);
        }

        footer {
            background: linear-gradient(90deg, var(--logo-color1), var(--logo-color2));
            color: white;
            padding: 80px 5% 40px;
            position: relative;
            overflow: hidden;
            border-top-left-radius: 50px;
            border-top-right-radius: 50px;
            margin-top: 100px;
        }

        footer::before {
            content: "";
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: var(--gold-gradient);
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.1;
            z-index: 0;
        }

        footer::after {
            content: "";
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .footer-column h3 {
            font-size: 1.7rem;
            margin-bottom: 30px;
        }

        .footer-column p {
            margin-bottom: 25px;
            line-height: 1.9;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 18px;
            transition: var(--transition);
        }

        .footer-links li:hover {
            transform: translateX(-5px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-links a i {
            color: var(--accent);
            font-size: 1.3rem;
            transition: var(--transition);
        }

        .footer-links a:hover i {
            transform: scale(1.2);
        }

        .contact-list {
            list-style: none;
        }

        .contact-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.4rem;
            margin-top: 3px;
            min-width: 25px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform: translateZ(0);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 179, 71, 0.3);
            border-color: var(--accent);
        }

        .copyright {
            text-align: center;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 1200px) {
            .header-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .header-content {
                flex-direction: column-reverse;
                text-align: center;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.7rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .main-nav {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            header {
                height: 90px;
                padding: 10px 5%;
            }

            .logo img {
                height: 70px;
            }

            .logo-text h1 {
                font-size: 1.5rem;
            }

            .menu {
                top: 90px;
                height: calc(100vh - 90px);
            }

            .header-content h1 {
                font-size: 2.2rem;
            }

            .header-content p {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
                padding: 60px 5%;
            }
            
            .cta-btns {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .about-nav a {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            
            .stat-number {
                font-size: 2.3rem;
            }
            
            .stat-label {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .header {
                height: 80px;
                padding: 10px 5%;
            }
            
            .logo img {
                height: 60px;
            }
            
            .logo-text h1 {
                font-size: 1.3rem;
            }
            
            .logo-text span {
                font-size: 0.8rem;
            }
            
            .about-header {
                min-height: 85vh;
                padding-top: 60px;
                margin-top: -80px;
            }
            
            .header-content h1 {
                font-size: 1.8rem;
            }
            
            .header-content {
                padding: 30px 15px;
            }
            
            .section-title {
                font-size: 1.7rem;
                margin-bottom: 40px;
            }
            
            .section-title::after {
                bottom: -15px;
                width: 70px;
                height: 4px;
            }
            
            .mission-card h2, .vision-card h2 {
                font-size: 1.7rem;
            }
            
            .value-card h3 {
                font-size: 1.4rem;
            }
            
            .timeline-content h3 {
                font-size: 1.3rem;
            }
            
            .timeline-content {
                padding: 20px;
            }
            
            .timeline-content::before {
                width: 16px;
                height: 16px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::before {
                right: -30px;
            }
            
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -30px;
            }
            
            .timeline-year {
                font-size: 1rem;
                padding: 6px 14px;
            }
            
            .timeline-item:nth-child(odd) .timeline-year {
                right: -70px;
            }
            
            .timeline-item:nth-child(even) .timeline-year {
                left: -70px;
            }
            
            .member-img {
                height: 220px;
            }
            
            .cta-content h2 {
                font-size: 1.8rem;
            }
        }

        .animate {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



         .footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .footer-brand img {
            height: 60px;
        }
        
        .footer-brand h3 {
            font-size: 1.8rem;
            color: white;
            margin: 0;
        }


