  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: white;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: #1877F2;
            color: white;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
        }
        
        .btn:hover {
            background-color: #0e6ae0;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(24, 119, 242, 0.4);
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            margin: 0 auto;
            width: 95%;
            position: relative;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .logo {
            margin-bottom: 15px;
        }
        
        .logo img {
            height: 45px;
        }
        
        .nav-menu {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .nav-menu a {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #1877F2;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            color: #333;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0 80px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/section-4.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
            margin-top: 20px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 50px 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        /* Footer Styles */
        footer {
            background-color: #e9ebee;
            padding: 70px 0 30px;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            margin-bottom: 30px;
        }
        
        .footer-logo img {
            height: 45px;
            margin-bottom: 15px;
        }
        
        .footer-logo p {
            max-width: 400px;
            margin: 0 auto;
            color: #555;
        }
        
        .footer-links h3, .branch-info h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #1877F2;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-links h3:after, .branch-info h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #1877F2;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .footer-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            display: block;
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: #1877F2;
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .branch-info {
            background: white;
            padding: 30px 25px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            text-align: left;
        }
        
        .branch-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        
        .branch-info address {
            font-style: normal;
            margin-bottom: 18px;
            line-height: 1.5;
        }
        
        .branch-info p {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
        }
        
        .branch-info i {
            color: #1877F2;
            width: 20px;
        }
        
        .map-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            color: #1877F2;
            font-weight: 500;
            padding: 8px 16px;
            background: rgba(24, 119, 242, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .map-link:hover {
            background: rgba(24, 119, 242, 0.2);
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #dcdde1;
            font-size: 0.9rem;
            color: #777;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .branch-info {
                text-align: center;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .branch-info p {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                gap: 15px;
                display: none;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-content {
                padding: 30px 20px;
            }
            
            .footer-links ul {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .footer-links ul li a {
                padding: 8px 10px;
            }
        }

           .about-us-001 {
            background-color: #e9ebee;
            padding: 80px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .about-container-001 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-title-001 {
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }
        
        .about-title-001 h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #1877F2;
        }
        
        .about-title-001 p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cards-wrapper-001 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .card-001 {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .card-001:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .card-image-001 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid #1877F2;
            box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
        }
        
        .card-logo-001 {
            height: 80px;
            margin-bottom: 20px;
            border-radius: 10px;
        }
        
        .card-primary-001 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1877F2;
        }
        
        .card-secondary-001 {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }
        
        /* Slideshow Styles */
        .slideshow-container-001 {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 0 auto;
            max-width: 800px;
        }
        
        .slideshow-title-001 {
            text-align: center;
            margin-bottom: 25px;
            color: #1877F2;
            font-size: 1.8rem;
        }
        
        .slideshow-001 {
            display: flex;
            animation: slide-001 20s linear infinite;
            padding: 10px 0;
        }
        
        .slide-item-001 {
            flex: 0 0 auto;
            width: 200px;
            height: 150px;
            margin: 0 15px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .slide-item-001:hover {
            transform: scale(1.05);
        }
        
        .slide-img-001 {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @keyframes slide-001 {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .cards-wrapper-001 {
                grid-template-columns: 1fr;
            }
            
            .slide-item-001 {
                width: 150px;
                height: 120px;
            }
        }


        /* Our Active Clients and Results */
        .section-002 {
            width: 100%;
            max-width: 1200px;
            text-align: center;
            padding: 30px 20px;
        }

        .section-title-002 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            font-weight: 600;
        }

        .section-title-002::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #1877F2;
            border-radius: 2px;
        }

        .clients-container-002 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            justify-content: center;
        }

        .client-card-002 {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .client-card-002:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(24, 119, 242, 0.15);
        }

        .image-container-002 {
            width: 100%;
            /* Fixed 9:16 aspect ratio container */
            height: 0;
            padding-bottom: 177.78%; /* 16/9 = 1.7778 * 100% */
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .client-image-002 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .client-card-002:hover .client-image-002 {
            transform: scale(1.05);
        }

        .primary-text-002 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1877F2;
            margin-bottom: 8px;
        }

        .secondary-text-002 {
            font-size: 1rem;
            color: #666;
            line-height: 1.5;
        }

        .card-content-002 {
            padding: 10px 5px;
            text-align: center;
            width: 100%;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .clients-container-002 {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .section-title-002 {
                font-size: 2rem;
            }
            
            .primary-text-002 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .clients-container-002 {
                grid-template-columns: 1fr;
            }
            
            .section-title-002 {
                font-size: 1.8rem;
            }
        }