/* ============================================
   PROFESSIONAL QUOTE FORM - ENTERPRISE GRADE
   ============================================ */
:root {
    --primary-color: #FD5115;
    --primary-dark: #e04810;
    --secondary-color: #030415;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e9ecef;
    --success-color: #25D366;
    --info-color: #0088cc;
    --background-light: #f8f9fa;
}
 
/****************get quotes**********/
/* Enterprise CTA Styles */
.cta-area {
    background: linear-gradient(135deg, #030415 0%, #0a0e2e 50%, #1a1f4d 100%);
    position: relative;
    overflow: hidden;
}

.cta-area::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 81, 21, 0.15), transparent);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.cta-area::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: pulse 6s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-text h1,h3 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-text h1 span {
    background: linear-gradient(135deg, #FD5115, #ff6633);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Options */
.cta-contact-options {
    position: relative;
    z-index: 2;
}

.cta-contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.cta-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.cta-contact-btn i {
    font-size: 32px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
}

.whatsapp-btn:hover i {
    transform: scale(1.2) rotate(15deg);
}

.call-btn:hover {
    background: linear-gradient(135deg, #FD5115, #ff6633);
    border-color: #FD5115;
}

.call-btn:hover i {
    animation: ring 1s ease-in-out;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.email-btn:hover {
    background: linear-gradient(135deg, #0088cc, #0066cc);
    border-color: #0088cc;
}

.email-btn:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-btn-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    display: block;
    margin-bottom: 3px;
}

.cta-btn-value {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

/* Main CTA Action */
.cta-main-action {
    position: relative;
    z-index: 2;
}

.theme-btn-lg {
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(253, 81, 21, 0.4);
    animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 15px 40px rgba(253, 81, 21, 0.4); }
    50% { box-shadow: 0 20px 50px rgba(253, 81, 21, 0.6); }
}

.theme-btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(253, 81, 21, 0.6);
}

.cta-trust-text {
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-trust-text i {
    color: #FD5115;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-text h1 {
        font-size: 34px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-contact-btn {
        padding: 15px 20px;
    }
    
    .cta-contact-btn i {
        font-size: 28px;
    }
    
    .cta-btn-value {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .cta-area {
        padding: 60px 0;
    }
    
    .cta-text h1 {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 15px;
    }
    
    .cta-contact-options .col-md-4 {
        margin-bottom: 15px;
    }
    
    .cta-contact-btn {
        justify-content: center;
    }
    
    .cta-btn-content {
        align-items: center;
        text-align: center;
    }
    
    .theme-btn-lg {
        padding: 18px 40px;
        font-size: 16px;
        width: 100%;
    }
    
    .cta-trust-text {
        font-size: 12px;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .cta-text h1 {
        font-size: 24px;
    }
    
    .cta-contact-btn i {
        font-size: 24px;
    }
    
    .cta-btn-label {
        font-size: 11px;
    }
    
    .cta-btn-value {
        font-size: 13px;
    }
}

/*********************team section***************/

/* Main Section with Gradient Background */
        .glass-team-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, #fef3f0 0%, #ffffff 50%, #f0f7ff 100%);
            overflow: hidden;
        }

        /* Floating Gradient Orbs */
        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            pointer-events: none;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, rgba(253, 81, 21, 0.3), rgba(253, 81, 21, 0.1));
            top: -200px;
            right: -100px;
            animation: float-1 15s ease-in-out infinite;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(3, 4, 21, 0.15), rgba(3, 4, 21, 0.05));
            bottom: -150px;
            left: -100px;
            animation: float-2 18s ease-in-out infinite;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, rgba(253, 81, 21, 0.2), transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: float-3 20s ease-in-out infinite;
        }

        @keyframes float-1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 50px) scale(1.1); }
        }

        @keyframes float-2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-50px, -50px) scale(1.15); }
        }

        @keyframes float-3 {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
        }

        /* Header Section */
        .glass-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 10;
        }

        .glass-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(253, 81, 21, 0.2);
            border-radius: 50px;
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 8px 32px rgba(253, 81, 21, 0.1);
            margin-bottom: 24px;
        }

        .glass-badge i {
            font-size: 16px;
        }

        .glass-title {
            font-size: 52px;
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .glass-title .highlight {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .glass-subtitle {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.8;
            max-width: 680px;
            margin: 0 auto;
        }

        /* Glassmorphism Team Cards */
        .glass-card {
            position: relative;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            margin-bottom: 30px;
            height: 100%;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.5) 0%, 
                rgba(255, 255, 255, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .glass-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(253, 81, 21, 0.2),
                        0 0 0 1px rgba(253, 81, 21, 0.2) inset;
            border-color: rgba(253, 81, 21, 0.3);
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        /* CEO Featured Card */
        .glass-card.ceo-card {
            background: rgba(255, 255, 255, 0.85);
            border: 2px solid rgba(253, 81, 21, 0.3);
        }

        .glass-card.ceo-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                #FFD700 0%, 
                var(--primary-color) 50%, 
                #FFD700 100%);
        }

        .crown-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
        }

        .crown-icon i {
            color: white;
            font-size: 20px;
        }

        /* Image Section */
        .glass-image {
            position: relative;
            height: 340px;
            overflow: hidden;
        }

        .glass-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .glass-card:hover .glass-image img {
            transform: scale(1.1);
        }

        .glass-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, 
                rgba(255, 255, 255, 0.9), 
                transparent);
        }

        /* Card Content */
        .glass-content {
            padding: 30px 26px;
            position: relative;
            z-index: 2;
        }

        .role-label {
            display: inline-block;
            padding: 8px 18px;
            background: rgba(253, 81, 21, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(253, 81, 21, 0.2);
            border-radius: 50px;
            color: var(--primary-color);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 16px;
        }

        .role-label.ceo-label {
            background: rgba(255, 215, 0, 0.15);
            border-color: rgba(255, 215, 0, 0.3);
            color: #d97706;
        }

        .member-title {
            font-size: 26px;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .glass-card:hover .member-title {
            color: var(--primary-color);
        }

        .member-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 22px;
            min-height: 42px;
        }

        /* Stats Section */
        .stats-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            padding: 20px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            margin-bottom: 22px;
        }

        .stat-box {
            text-align: center;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            padding: 12px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            background: rgba(253, 81, 21, 0.08);
            transform: translateY(-2px);
        }

        .stat-num {
            display: block;
            font-size: 28px;
            font-weight: 900;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-text {
            font-size: 11px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 600;
        }

        /* Social Icons */
        .social-row {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(253, 81, 21, 0.3);
            border-color: var(--primary-color);
        }

        /* Bottom Stats Section */
        .glass-stats-bottom {
            margin-top: 70px;
            position: relative;
            z-index: 10;
        }

        .stats-glass-box {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 2px solid rgba(253, 81, 21, 0.15);
            border-radius: 28px;
            padding: 60px 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
            position: relative;
            overflow: hidden;
        }

        .stats-glass-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(253, 81, 21, 0.05), 
                transparent);
            animation: shimmer 6s linear infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .company-stat {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .icon-glass-circle {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(253, 81, 21, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .icon-glass-circle i {
            font-size: 32px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .company-stat:hover .icon-glass-circle {
            background: var(--primary-color);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 32px rgba(253, 81, 21, 0.3);
            border-color: var(--primary-color);
        }

        .company-stat:hover .icon-glass-circle i {
            color: white;
            transform: scale(1.1);
        }

        .big-stat-num {
            font-size: 44px;
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 8px;
            line-height: 1;
        }

        .big-stat-text {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .glass-title {
                font-size: 42px;
            }

            .glass-image {
                height: 300px;
            }
        }

        @media (max-width: 767px) {
            .glass-team-section {
                padding: 70px 0;
            }

            .glass-title {
                font-size: 34px;
            }

            .glass-subtitle {
                font-size: 16px;
            }

            .glass-image {
                height: 360px;
            }

            .stats-glass-box {
                padding: 45px 25px;
            }

            .big-stat-num {
                font-size: 36px;
            }
        }

        @media (max-width: 575px) {
            .glass-title {
                font-size: 28px;
            }

            .member-title {
                font-size: 22px;
            }

            .glass-stats-bottom {
                margin-top: 50px;
            }
        }
		
/***********portfolio*****************/
/* Portfolio Section */
        .portfolio-glass-section {
            position: relative;
            padding: 100px 0 100px;
            background: linear-gradient(135deg, #fff5f2 0%, #ffffff 50%, #f2f8ff 100%);
            overflow: hidden;
        }

        /* Animated Background Elements */
        .bg-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.35;
            pointer-events: none;
        }

        .orb-portfolio-1 {
            width: 550px;
            height: 550px;
            background: linear-gradient(135deg, rgba(253, 81, 21, 0.25), rgba(253, 81, 21, 0.08));
            top: -250px;
            left: -150px;
            animation: float-orb-1 18s ease-in-out infinite;
        }

        .orb-portfolio-2 {
            width: 450px;
            height: 450px;
            background: linear-gradient(135deg, rgba(3, 4, 21, 0.12), rgba(3, 4, 21, 0.04));
            bottom: -200px;
            right: -100px;
            animation: float-orb-2 22s ease-in-out infinite;
        }

        @keyframes float-orb-1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(60px, 60px) scale(1.15); }
        }

        @keyframes float-orb-2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-60px, -60px) scale(1.2); }
        }

        /* Header Section */
        .portfolio-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 10;
        }

        .portfolio-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(253, 81, 21, 0.2);
            border-radius: 50px;
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 8px 32px rgba(253, 81, 21, 0.1);
            margin-bottom: 24px;
        }

        .portfolio-badge i {
            font-size: 16px;
        }

        .portfolio-title {
            font-size: 52px;
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .portfolio-title .highlight-text {
            color: var(--primary-color);
        }

        .portfolio-description {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* Filter Tabs */
        .portfolio-filters {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
            position: relative;
            z-index: 10;
        }

        .filter-btn {
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: 50px;
            color: var(--text-dark);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .filter-btn:hover {
            background: rgba(253, 81, 21, 0.1);
            border-color: rgba(253, 81, 21, 0.3);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            box-shadow: 0 6px 25px rgba(253, 81, 21, 0.3);
        }

        /* Portfolio Grid */
        .portfolio-grid {
            position: relative;
            z-index: 10;
        }

        /* Glass Portfolio Card */
        .portfolio-glass-card {
            position: relative;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            margin-bottom: 30px;
            height: 100%;
        }

        .portfolio-glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(253, 81, 21, 0.1) 0%, 
                transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .portfolio-glass-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(253, 81, 21, 0.2),
                        0 0 0 2px rgba(253, 81, 21, 0.2) inset;
            border-color: rgba(253, 81, 21, 0.3);
        }

        .portfolio-glass-card:hover::before {
            opacity: 1;
        }

        /* Featured Badge */
        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 8px 18px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 50px;
            color: white;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        /* Image Container */
        .portfolio-image-wrapper {
            position: relative;
            height: 320px;
            overflow: hidden;
            cursor: pointer;
        }

        .portfolio-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .portfolio-glass-card:hover .portfolio-image-wrapper img {
            transform: scale(1.15);
        }

        /* Overlay */
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top,
                rgba(3, 4, 21, 0.95) 0%,
                rgba(3, 4, 21, 0.7) 50%,
                transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 30px;
        }

        .portfolio-glass-card:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-actions {
            display: flex;
            gap: 12px;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .portfolio-glass-card:hover .portfolio-actions {
            transform: translateY(0);
        }

        .action-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 18px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .action-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(253, 81, 21, 0.4);
        }

        /* Portfolio Content */
        .portfolio-content {
            padding: 28px 24px;
            position: relative;
        }

        .portfolio-category {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(253, 81, 21, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(253, 81, 21, 0.2);
            border-radius: 50px;
            color: var(--primary-color);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        .portfolio-category i {
            font-size: 12px;
        }

        .portfolio-project-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .portfolio-glass-card:hover .portfolio-project-title {
            color: var(--primary-color);
        }

        .portfolio-project-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 42px;
        }

        /* Tech Stack */
        .tech-stack {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .tech-tag {
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: rgba(253, 81, 21, 0.1);
            border-color: rgba(253, 81, 21, 0.3);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Project Stats */
        .project-stats {
            display: flex;
            gap: 20px;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .stat-item-portfolio {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-light);
        }

        .stat-item-portfolio i {
            color: var(--primary-color);
            font-size: 14px;
        }

        .stat-item-portfolio strong {
            color: var(--text-dark);
            font-weight: 700;
        }

        /* Bottom CTA Section */
        .portfolio-cta-section {
            margin-top: 70px;
            position: relative;
            z-index: 10;
        }

        .cta-glass-box {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 2px solid rgba(253, 81, 21, 0.2);
            border-radius: 28px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .cta-glass-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                transparent,
                rgba(253, 81, 21, 0.05),
                transparent);
            animation: shimmer-cta 6s linear infinite;
        }

        @keyframes shimmer-cta {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 36px;
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 16px;
        }

        .cta-description {
            font-size: 17px;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--primary-color);
            color: white;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(253, 81, 21, 0.3);
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(253, 81, 21, 0.4);
            color: white;
        }

        .cta-button i {
            transition: transform 0.3s ease;
        }

        .cta-button:hover i {
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .portfolio-title {
                font-size: 42px;
            }

            .portfolio-image-wrapper {
                height: 280px;
            }
        }

        @media (max-width: 767px) {
            .portfolio-glass-section {
                padding: 33px 0 112px;
            }

            .portfolio-title {
                font-size: 34px;
            }

            .portfolio-description {
                font-size: 16px;
            }

            .portfolio-image-wrapper {
                height: 300px;
            }

            .cta-glass-box {
                padding: 45px 25px;
            }

            .cta-title {
                font-size: 28px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 13px;
            }
        }

        @media (max-width: 575px) {
            .portfolio-title {
                font-size: 28px;
            }

            .portfolio-filters {
                gap: 8px;
            }

            .tech-stack {
                gap: 6px;
            }

            .project-stats {
                flex-direction: column;
                gap: 10px;
            }
        }
		
		/**************services section************/
		/* Unique prefix for all classes to avoid Bootstrap conflicts */
        .es-services-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 125px 0px 150px;
            position: relative;
            overflow: hidden;
        }

        .es-services-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .es-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .es-header {
            text-align: center;
            margin-bottom: 70px;
            animation: es-fadeInDown 0.8s ease;
        }

        .es-subtitle {
            color: #FF6B35;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .es-subtitle::before,
        .es-subtitle::after {
            content: '';
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FF6B35);
        }

        .es-subtitle::after {
            background: linear-gradient(90deg, #FF6B35, transparent);
        }

        .es-main-title {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .es-main-title .es-highlight {
            color: #FF6B35;
            position: relative;
            display: inline-block;
        }

        .es-description {
            font-size: 18px;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .es-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .es-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            animation: es-fadeInUp 0.8s ease forwards;
            opacity: 0;
            box-shadow: 
                0 8px 32px 0 rgba(31, 38, 135, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        }

        .es-card:nth-child(1) { animation-delay: 0.1s; }
        .es-card:nth-child(2) { animation-delay: 0.2s; }
        .es-card:nth-child(3) { animation-delay: 0.3s; }
        .es-card:nth-child(4) { animation-delay: 0.4s; }
        .es-card:nth-child(5) { animation-delay: 0.5s; }

        .es-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.7s ease;
        }

        .es-card:hover::before {
            left: 100%;
        }

        .es-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 25px 60px rgba(255, 107, 53, 0.25),
                0 8px 32px 0 rgba(31, 38, 135, 0.2),
                inset 0 0 0 1px rgba(255, 107, 53, 0.3);
            background: rgba(255, 255, 255, 0.85);
        }

        .es-icon-box {
            width: 90px;
            height: 90px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
            transition: all 0.5s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 
                0 8px 32px 0 rgba(31, 38, 135, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.5);
        }

        .es-card:nth-child(1) .es-icon-box {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 140, 90, 0.9) 100%);
        }

        .es-card:nth-child(2) .es-icon-box {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(107, 168, 245, 0.9) 100%);
        }

        .es-card:nth-child(3) .es-icon-box {
            background: linear-gradient(135deg, rgba(123, 104, 238, 0.9) 0%, rgba(155, 133, 245, 0.9) 100%);
        }

        .es-card:nth-child(4) .es-icon-box {
            background: linear-gradient(135deg, rgba(80, 200, 120, 0.9) 0%, rgba(112, 216, 146, 0.9) 100%);
        }

        .es-card:nth-child(5) .es-icon-box {
            background: linear-gradient(135deg, rgba(255, 159, 64, 0.9) 0%, rgba(255, 183, 107, 0.9) 100%);
        }

        .es-card:hover .es-icon-box {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 
                0 15px 40px rgba(0, 0, 0, 0.3),
                inset 0 2px 15px rgba(255, 255, 255, 0.6);
        }

        .es-icon {
            width: 45px;
            height: 45px;
            color: white;
            stroke-width: 2;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .es-number {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 80px;
            font-weight: 700;
            color: rgba(255, 107, 53, 0.06);
            line-height: 1;
            transition: all 0.5s ease;
        }

        .es-card:hover .es-number {
            color: rgba(255, 107, 53, 0.12);
            transform: scale(1.2);
        }

        .es-card-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .es-card:hover .es-card-title {
            color: #FF6B35;
        }

        .es-card-desc {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        .es-features {
            list-style: none;
            margin-bottom: 35px;
            padding: 0;
        }

        .es-features .es-feature-item {
            padding: 12px 0;
            color: #444;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .es-features .es-feature-item:last-child {
            border-bottom: none;
        }

        .es-features .es-feature-item:hover {
            padding-left: 10px;
            color: #FF6B35;
        }

        .es-check-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B35, #ff8c5a);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        }

        .es-features .es-feature-item:hover .es-check-icon {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
        }

        .es-checkmark {
            width: 12px;
            height: 12px;
            color: white;
            stroke-width: 3;
        }

        .es-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(45, 45, 68, 0.95) 100%);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .es-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(255, 140, 90, 0.95) 100%);
            transition: left 0.4s ease;
            z-index: 0;
        }

        .es-cta-btn:hover::before {
            left: 0;
        }

        .es-cta-btn span,
        .es-cta-btn svg {
            position: relative;
            z-index: 1;
        }

        .es-cta-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            border-color: rgba(255, 107, 53, 0.5);
        }

        .es-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .es-cta-btn:hover .es-arrow {
            transform: translateX(5px);
        }

        .es-stats {
            display: flex;
            gap: 30px;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 2px solid rgba(0, 0, 0, 0.05);
        }

        .es-stat {
            flex: 1;
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .es-stat:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .es-stat-num {
            font-size: 28px;
            font-weight: 700;
            color: #FF6B35;
            display: block;
            margin-bottom: 5px;
        }

        .es-stat-label {
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes es-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes es-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .es-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .es-main-title {
                font-size: 36px;
            }

            .es-card {
                padding: 40px 30px;
            }

            .es-stats {
                flex-direction: column;
                gap: 15px;
            }
        }
		 