 /* Clean Minimal Team Cards */
        .clean-team-section {
            padding: 40px 20px 80px;
            background: #f8fafc;
            position: relative;
        }

        .clean-team-section .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .clean-team-section .section-header p {
            color: #64748b;
            font-size: 1.1rem;
        }

        .clean-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 40px auto 0;
        }

        .clean-team-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 0;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            position: relative;
            margin-top: 20px;
            border: 1px solid rgba(0, 0, 0, 0.02);
            overflow: hidden;
        }

        .clean-team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        }

        .clean-member-img {
            width: 100%;
            height: 300px;
            margin: 0;
            background: #ffffff;
            padding: 0;
            box-shadow: none;
            position: relative;
            z-index: 2;
            overflow: hidden;
            border-radius: 0;
        }

        .clean-team-card:hover .clean-member-img img {
            transform: scale(1.05);
        }

        .clean-member-img img {
            width: 100%;
            height: 100%;
            border-radius: 0;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        /* Custom photo framing */
        .clean-team-card:nth-child(1) .clean-member-img img {
            object-position: center center;
        }

        .clean-team-card:nth-child(2) .clean-member-img img {
            object-position: top center;
        }

        .clean-team-card:nth-child(3) .clean-member-img img {
            object-position: center 20%;

        }

        .clean-member-info {
            position: relative;
            z-index: 1;
            padding: 20px;
        }

        .clean-member-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 5px;
        }

        .clean-member-role {
            font-size: 0.9rem;
            color: #0284c7;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: inline-block;
            padding: 4px 12px;
            background: rgba(2, 132, 199, 0.1);
            border-radius: 20px;
        }

        .clean-team-card:nth-child(2) .clean-member-role {
            color: #e11d48;
            background: rgba(225, 29, 72, 0.1);
        }

        .clean-team-card:nth-child(3) .clean-member-role {
            color: #16a34a;
            background: rgba(22, 163, 74, 0.1);
        }

        .clean-member-bio {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .clean-member-contact {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #334155;
            font-size: 0.95rem;
            margin-bottom: 15px;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .clean-member-contact:hover {
            color: #0ea5e9;
        }

        .clean-member-contact i {
            color: #94a3b8;
        }

        .clean-socials {
            display: flex;
            gap: 10px;
            justify-content: center;
            border-top: 1px solid rgba(14, 165, 233, 0.3);
            /* Theme color */
            padding-top: 20px;
        }

        .clean-social-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f8fafc;
            color: #64748b;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }

        .clean-social-btn:hover {
            background: #0ea5e9;
            color: #fff;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .clean-team-section {
                padding: 60px 15px;
            }

            .clean-team-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        .header-main {
            padding: 5px 0 !important;
        }

        /* Premium Hero Slider CSS */
        .hero {
            position: relative;
            aspect-ratio: 16 / 9;
            height: auto;
            max-height: 80vh;
            min-height: 350px;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            background-color: #000;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
            overflow: hidden;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .hero-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1);
            transition: transform 8s linear;
        }

        .hero-slide-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
        }

        .hero-slide.active .hero-slide-bg {
            transform: scale(1.1);
            /* Ken Burns effect */
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px 20px;
            display: flex;
            align-items: flex-end;
            height: 100%;
        }

        .hero-glass-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 10px 15px;
            text-align: left;
            width: fit-content;
            max-width: 90%;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
            transform: translateY(30px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
        }

        .hero-slide.active .hero-glass-box {
            transform: translateY(0);
            opacity: 1;
        }

        .hero-glass-box h1 {
            color: #fff;
            font-size: 15px;
            font-weight: 200;
            line-height: 1.2;
            margin: 0;
            text-transform: capitalize;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-glass-box h1 span {
            color: var(--primary-color, #e0a800);
        }

        .hero-glass-box p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-btn-primary {
            background: var(--primary-color, #e0a800);
            color: #fff;
            border: 2px solid var(--primary-color, #e0a800);
            box-shadow: 0 4px 15px rgba(224, 168, 0, 0.4);
        }

        .hero-btn-primary:hover {
            background: transparent;
            color: var(--primary-color, #e0a800);
            transform: translateY(-2px);
        }

        .hero-btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .hero-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            transform: translateY(-2px);
        }

        /* Slider Controls */
        .hero-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            z-index: 3;
            display: flex;
            align-items: center;
            padding: 0 40px;
            pointer-events: none;
        }

        .hero-nav {
            display: flex;
            width: 100%;
            justify-content: space-between;
        }

        .hero-nav-btn {
            width: 44px;
            height: 44px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
        }

        .hero-nav-btn:hover {
            background: var(--primary-color, #e0a800);
            border-color: var(--primary-color, #e0a800);
        }



        @media (max-width: 768px) {
            .hero {
                aspect-ratio: 4 / 3;
                height: auto;
                min-height: 250px;
            }

            .hero-content-wrapper {
                padding-bottom: 30px;
            }


            .hero-controls {
                padding: 0 10px;
            }

            .hero-slide-bg::after {
                background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
            }
        }

        /* Premium Services Card Redesign */
        .services {
            background: #f8fafc;
        }

        .services-grid {
            gap: 2.5rem;
        }

        .service-card {
            background: #ffffff !important;
            border-radius: 16px !important;
            padding: 0 !important;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            text-align: left !important;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
            border-color: rgba(255, 107, 53, 0.2);
        }

        .service-icon {
            width: 100%;
            height: 300px;
            margin: 0 !important;
            overflow: hidden;
            position: relative;
            border-radius: 0 !important;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.1) 100%);
            pointer-events: none;
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-icon img {
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1e293b !important;
            margin: 25px 25px 10px !important;
            line-height: 1.3;
        }

        .service-card p {
            font-size: 0.95rem;
            color: #64748b !important;
            line-height: 1.6;
            margin: 0 25px 25px !important;
            flex-grow: 1;
        }

        .service-card .btn-primary {
            margin: 0 25px 25px !important;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color, #ff6b35), var(--accent-color, #f77f00)) !important;
            color: white !important;
            border-radius: 8px !important;
            padding: 12px 24px !important;
            font-weight: 600;
            font-size: 0.95rem;
            border: none !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2) !important;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--accent-color, #f77f00), var(--primary-color, #ff6b35));
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .service-card .btn-primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
        }

        .service-card .btn-primary:hover::before {
            opacity: 1;
        }

        /* Premium Category Card Redesign */
        .categories-grid {
            gap: 2rem;
        }

        .category-card {
            background: #ffffff !important;
            padding: 35px 25px !important;
            border-radius: 16px !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03) !important;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .category-card:hover {
            transform: translateY(-8px) scale(1.02) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
            border-color: rgba(255, 107, 53, 0.15);
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 107, 53, 0.08) !important;
            border-radius: 24px !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px !important;
            transition: all 0.4s ease;
            color: #ff6b35 !important;
        }

        .category-icon i {
            font-size: 2.2rem !important;
            transition: transform 0.4s ease;
            color: #ff6b35 !important;
        }

        .category-card:hover .category-icon {
            background: #ff6b35 !important;
            color: #ffffff !important;
            transform: translateY(-5px);
            border-radius: 50% !important;
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

        .category-card:hover .category-icon i {
            transform: scale(1.1);
            color: #ffffff !important;
        }

        .category-card h3 {
            color: #1e293b !important;
            font-size: 1.25rem !important;
            font-weight: 700 !important;
            margin-bottom: 8px !important;
        }

        .category-card p {
            color: #64748b !important;
            font-size: 0.95rem !important;
            margin: 0 !important;
        }
        .category-link{
              text-decoration:none;
              display:block;
             color:inherit;
        
        }