

        .section-title {
            margin-bottom: 60px;
        }

        .section-title h2 {
            color: #053668;
            font-weight: 800;
            font-size: 32px;
        }

        .section-title span {
            color: #f05e16;
        }

        /* Expert Card Styling */
        .expert-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border: 1px solid #edf2f7;
            height: 100%;
        }

        .expert-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #f05e16;
        }

        /* Gol Image Container */
        .img-box {
            width: 150px;
            height: 150px;
            margin: 0 auto 25px;
            position: relative;
        }

        .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%; /* Image ko gol karne ke liye */
            border: 5px solid #f8fbff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: 0.4s;
        }

        .expert-card:hover .img-box img {
            border-color: #f05e16;
        }

        /* Text Content */
        .expert-name {
            color: #053668;
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 5px;
        }

        .expert-designation {
            color: #f05e16;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: block;
        }

        .expert-desc {
            color: #64748b;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            padding: 0 10px;
        }

        /* Contact Style */
        .expert-call {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f05e16;
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: 0.3s;
        }

        .expert-call:hover {
            background: #053668;
            color: #fff;
            transform: scale(1.05);
        }

        .expert-call i {
            font-size: 12px;
        }
