.my-class {
    padding: 50px 0;
}

        .team-header {
            text-align: center;
            margin-bottom: 3rem;
            color: white;
        }

        .team-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .team-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .team-card:hover::before {
            transform: scaleX(1);
        }

        .team-content {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .team-avatar {
            flex-shrink: 0;
            width: 200px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .team-avatar::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
            z-index: -1;
            animation: rotate 4s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .team-avatar::after {
            opacity: 1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-card:hover .team-avatar img {
            transform: scale(1.1);
        }

        .team-info {
            flex: 1;
            min-width: 0;
        }

        .team-role {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 12px;
            border-left: 4px solid #667eea;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 8px;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-details h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.3rem;
        }

        .contact-details h5 a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details h5 a:hover {
            color: #764ba2;
        }

        .contact-details span {
            color: #718096;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .phone-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .phone-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .phone-label1 {
            font-size: 0.85rem;
            color: #718096;
            font-weight: 500;
            min-width: 50px;
        }

        .phone-number1 {
            font-weight: 600;
            color: #667eea;
        }

        .phone-number1 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .phone-number1 a:hover {
            color: #764ba2;
        }

        /* Bootstrap responsive adjustments */
        @media (max-width: 768px) {
            .team-header h1 {
                font-size: 2.5rem;
            }
            
            .team-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .team-content {
                flex-direction: column;
                text-align: center;
            }

            .team-avatar {
                align-self: center;
                width: 120px;
            }

            .contact-item {
                flex-direction: column;
                text-align: left;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem 0;
            }

            .team-header h1 {
                font-size: 2rem;
            }

            .team-card {
                padding: 1rem;
            }

            .team-name {
                font-size: 1.3rem;
            }
        }






.techwix-service-section-05 {
    background: #fff; /* standard gray */
    /* or lighter gray: #d3d3d3 */
    /* or darker gray: #333333 */
    color: #ffffff;
    line-height: 1.6;
    padding: 50px 0px;
}

        /* Header Section */
        .header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
            border-radius: 50%;
            opacity: 0.1;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.1; }
            50% { transform: translateX(-50%) scale(1.2); opacity: 0.2; }
        }

        .header h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            background: linear-gradient(45deg, #11ddf5, #231f20cf, #00113dd9);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 5s ease infinite;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .header h2 {
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: #000000;
            font-weight: 600;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .header p {
            color: #8892b0;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        /* Card Styles */
        .team-card {
            background: linear-gradient(145deg, rgb(171 151 111 / 19%), rgb(219 219 219 / 0%)); 
            border-radius: 25px;
            padding: 2rem;
            position: relative;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .team-card:hover::before {
            transform: translateX(100%);
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0,17,61,0.3);
            box-shadow: 
                0 25px 50px rgba(0,0,0,0.3),
                0 0 30px rgba(255,107,107,0.2);
        }

        /* Card Header */
        .card-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .avatar-container {
            position: relative;
        }

        .avatar {

            border-radius: 20px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4) border-box;
            transition: all 0.3s ease;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 17px;
        }

        .team-card:hover .avatar {
            transform: scale(1.1) rotate(3deg);
            box-shadow: 0 10px 30px rgb(0 17 61 / 61%);
        }

        .member-info h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 0.5rem;
        }

        .role-badge {
            display: inline-block;
            background: #00113d;
            padding: 0.4rem 0.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Contact Information */
        .contact-info {
            space-y: 1rem;
        }

        .info-row {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.2rem;
            padding: 1rem;
            background: rgba(255,255,255,0.03);
            border-radius: 15px;
            border-left: 3px solid #00113d;
            transition: all 0.3s ease;
        }

        .info-row:hover {
            background: rgba(255,255,255,0.06);
            transform: translateX(5px);
        }

        .info-icon1 {
            width: 40px;
            height: 40px;
            background: #00113d;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .info-content h4 {
            color: #00113d;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
        }

        .info-content p {
            color: #000000;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .info-content a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: #4ecdc4;
        }

        .phone-numbers {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .phone-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .phone-label {
            background: rgba(100, 255, 218, 0.1);
            color: #000000;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            min-width: 60px;
            text-align: center;
        }

        .phone-number {
            color: #ccd6f6;
            font-weight: 600;
        }

        /* Decorative Elements */
        .team-card::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover::after {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {


            .header {
                margin-bottom: 3rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .team-card {
                padding: 1.5rem;
            }

            .card-header {
                flex-direction: column;
                text-align: center;
            }



            .info-row {
                flex-direction: column;
                gap: 0.8rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .team-card {
                padding: 1rem;
            }

            .header::before {
                width: 150px;
                height: 150px;
            }

            .phone-item {
                justify-content: center;
            }
        }

        /* Loading Animation */
        .team-card {
            animation: slideInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .team-card:nth-child(1) { animation-delay: 0.1s; }
        .team-card:nth-child(2) { animation-delay: 0.2s; }
        .team-card:nth-child(3) { animation-delay: 0.3s; }
        .team-card:nth-child(4) { animation-delay: 0.4s; }
        .team-card:nth-child(5) { animation-delay: 0.5s; }
        .team-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        
        
        
        
        
