/* Custom CSS for HireGHLDeveloper */
:root {
    /* Color Variables */
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #eaf1fe;
    --accent: #10b981;
    --accent-hover: #059669;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --border: #e5e7eb;
    --primary-light: #eef2ff;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5, #7c3aed);
    --gradient-hero: linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4);
    --gradient-secondary: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Typography */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.4;
}

.font-heading {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* Custom Components */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-hero {
    background: var(--gradient-hero);
}

.text-primary-custom {
    color: var(--primary);
}

.text-accent-custom {
    color: var(--accent);
}

.bg-primary-custom {
    background-color: var(--primary);
}

.bg-accent-custom {
    background-color: var(--accent);
}

.bg-secondary-custom {
    background-color: var(--secondary);
}

/* Custom Buttons */
.btn-cta {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 0.875rem 2rem !important;
    transition: all 0.2s ease !important;
}

    .btn-cta:hover {
        background-color: var(--accent-hover) !important;
        border-color: var(--accent-hover) !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: var(--shadow-lg) !important;
    }

.btn-hero {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
}

    .btn-hero:hover {
        color: white;
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
}

    .btn-outline-primary-custom:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
    }

.btn-primary {
    background: var(--gradient-primary);
    border: 2px solid var(--primary);
}

    .btn-primary:hover {
        color: var(--primary);
        background: transparent;
    }
/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

    .hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

/* Section Spacing */
.section-padding {
    padding: 5rem 0;
}

.container-padding {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 5rem 0;
}

/* Cards */
.card-custom {
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background: white;
}

    .card-custom:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

/* Navigation */
.navbar-brand-custom {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-link-custom {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s ease;
}

    .nav-link-custom:hover {
        color: var(--primary);
    }

/* Footer */
.footer-custom {
    background-color: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: white;
    }

/* Stats */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

/* Service Icons */
.service-icon, .solution-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.2s ease;
}

    .service-icon:hover {
        transform: scale(1.1);
    }

/* Portfolio Items */
.portfolio-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

    .portfolio-item:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-8px);
    }

.portfolio-image {
    height: 240px;
    position: relative;
}

    .portfolio-image img {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
        object-position: center;
    }

.hero-section .project-img img {
    border-radius: 12px;
}
/* Form Styles */
.form-control-custom {
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    transition: border-color 0.2s ease;
}

    .form-control-custom:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Badge styles */
.badge-custom {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
}

/* Social icons */
.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateY(-2px);
    }

.hero-section .badge-custom {
    display: inline-block;
}

.hero-section .hero-content {
    text-align: left;
}

.statics-section {
    background: var(--gradient-primary);
    color: white;
}

    .statics-section .stat-number {
        color: white;
    }

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav li {
    margin-right: 1rem;
}

.btn-group-lg > .btn, .btn-lg {
    --bs-btn-padding-y: 0.75rem;
    font-size: 18px;
}

.btn-cta {
    padding: 0.75rem 1.5rem;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 6px 12px;
    border-radius: 8px;
}

.service-icon img {
    width: 45px;
}

.testimonial-card i {
    margin: 0 2px;
}

.industries-items .service-icon .h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.contact-details .icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Hero Section */
.hero-gradient {
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.funnel-benifits .service-icon i {
    color: #ffffff;
    font-size: 20px;
}

.process-sec .step-wrap .icon {
    background: var(--gradient-primary);
}

.badge-primary-light {
    background: var(--primary-light);
    color: var(--primary);
}

.developer-card .devloper-image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: flex;
    margin-bottom: 20px;
}
/*-- Portfolio page --*/
.project-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    .project-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 50%);
    }

.section-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
}

.challenge-icon {
    background-color: rgba(239, 68, 68, 0.1);
    font-size: 26px;
}

.solution-icon {
    color: #fff;
}

.results-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: #198754;
    font-size: 26px;
}

.challenge-card {
    background: rgba(248, 249, 250, 0.5);
    border-radius: 16px;
    padding: 48px;
    margin: 48px 0;
}

.challenge-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    height:100%;
}

.challenge-dot {
    width: 12px;
    height: 12px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.solution-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

    .solution-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.result-card {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .result-card p {
        font-size: 18px;
        line-height: 1.4;
        margin: 0;
    }

    .result-card:hover {
        transform: translateY(-4px);
    }

.star-rating {
    color: #fbbf24;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.tech-badge {
    background-color: #f8f9fa;
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin: 4px;
    display: inline-block;
    font-weight: 400;
}

.project-meta {
    color: var(--text-secondary);
}

.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-meta-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.project-meta-value {
    font-weight: 600;
    color: var(--text-primary);
}

.section-spacing {
    margin: 80px 0;
}

.display-5 {
    font-size: 2.5rem;
}

@media (min-width: 1200px) {
    .display-2 {
        font-size: 3.5rem;
    }

    .display-3 {
        font-size: 3.5rem;
    }

    .display-4 {
        font-size: 3rem;
        line-height: 1.1;
    }
}

@media (max-width: 1199px) {
    .navbar-nav li {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .hero-section .hero-content {
        text-align: center;
    }

    .hero-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 768px) {

    .challenge-card {
        padding: 24px;
        margin: 24px 0;
    }

    .testimonial-section {
        padding: 24px;
        margin: 40px 0;
    }

    .section-spacing {
        margin: 40px 0;
    }
}


/*Testimonial Marquee:*/
.testimonial-marquee {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 45s linear infinite;
    width: max-content;
}

.testimonial-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    min-width: 280px;
    max-width: 320px;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

@media (max-width: 576px) {
    .testimonial-card {
        min-width: 240px;
        padding: 15px;
    }
}

.portfolio-description {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    max-height: 4.5em; 
}

    .portfolio-description.expanded {
        -webkit-line-clamp: unset;
        max-height: none;
            margin-bottom: 1rem; 
    }
.footer-icon {
    color: #ffffff;
    text-decoration: none;
    margin: 0;
}