 /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        } */

        /* body {
            background-color: #f8f8f8;
            color: #333;
            line-height: 1.6;
        } */

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

        /* header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        } */

        /* nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #b38b59;
        } */

        .hero {
            height: 70vh;
            position: relative;
            display: flex;
            align-items: center;
            /* margin-top: 80px; */
            background-image: url("../assets/images/other/about-us-bg.webp");
            background-size: cover;
            background-position: center;
            color: white;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        h1 {
            font-size: 42px;
            font-weight: 500;
            color: white;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .about-section {
            padding: 80px 0;
            background-color: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .about-image {
            overflow: hidden;
            height: 400px;
            border-radius: 16px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }

        h2 {
            font-size: 32px;
            font-weight: 500;
            color: #333;
            margin-bottom: 10px;
        }

        .values-section {
            padding: 80px 0;
            /* background-color: #f8f8f8; */
            /* background: linear-gradient(45deg, rgb(255, 176, 29), rgb(199, 109, 0)); */
            background: linear-gradient(137deg, rgb(0 111 77), rgb(255 144 10));
            /* background-size: 50px 50px; */
            
            /* Creating a grid effect */
            /* background-image: 
                linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px); */
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .value-card {
            background-color: white;
            padding: 30px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: #b38b59;
        }

        h3 {
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .team-section {
            padding: 80px 0;
            background-color: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .team-card {
            text-align: center;
        }

        .team-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
        }

        .team-name {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .team-role {
            color: #777;
            margin-bottom: 15px;
        }

        /* footer {
            background-color: #333;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-info h4 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #aaa;
        } */

        @media (max-width: 768px) {
            .about-grid, .values-grid, .team-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero {
                height: auto;
                padding: 100px 0;
            }

            h1 {
                font-size: 32px;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.4s;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                margin: 16px 0;
                display: block;
            }
        }