/* Testimonial Author Image Custom Height */
.testimonial-author-image {
    width: 70px;
    /* height: 110px; */
    /* background: linear-gradient(135deg, #2563eb, #3b82f6); */
    border-radius: 30px 30px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    margin: 0 auto;
    box-shadow: 0 4px 18px rgba(37,99,235,0.13);
}
/* HERO SECTION MODERN LAYOUT */
.hero {
    background: #f7fafd;
    padding: 60px 0 40px 0;
}
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-left {
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 600px;
}
.hero-right {
    flex: 1 1 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-badge {
    display: inline-block;
    background: #eaf1ff;
    color: #2563eb;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    padding: 6px 18px;
    margin-bottom: 22px;
    letter-spacing: 0.01em;
    margin-top: 1rem;
}
.hero-badge i {
    margin-right: 6px;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #18181b;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #232323;
    margin-bottom: 32px;
    max-width: 90%;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 40px;
}
.btn.btn-primary {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
    transition: background 0.2s;
}
.btn.btn-primary:hover {
    background: #1741a6;
}
.btn.btn-secondary {
    background: #fff;
    color: #2563eb;
    border: 1.5px solid #e0e7ef;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37,99,235,0.04);
    transition: border 0.2s, background 0.2s;
}
.btn.btn-secondary:hover {
    background: #f1f5fd;
    border-color: #b6c6e3;
    color: #000;
}
.btn i {
    margin-left: 8px;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.stat-block {
    text-align: left;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2px;
}
.stat-label {
    font-size: 1.05rem;
    color: #52525b;
}
.hero-image {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    object-fit: cover;
}
@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
    .hero-right {
        width: 100%;
        justify-content: flex-start;
    }
    .hero-image {
        max-width: 100%;
    }
}
/* ===== CSS Reset and Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-brand .logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active Navigation Link */
.nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: #2563eb;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 1.5rem; /* Reduced from 4rem */
}

.section-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    padding: 60px 0; /* Reduced from 100px */
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* ===== Services Section ===== */
.services {
    /* padding: 100px 0; */
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px; /* Slightly punchier radius */
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07); /* About card shadow base */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* About card transition */
    border: 1.5px solid #e0e7ef; /* About card border */
    position: relative;
    overflow: hidden; /* For the slide effect */
}

/* The About-style slide line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15); /* About card hover shadow */
    border-color: rgba(37, 99, 235, 0.3); /* About card hover border */
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* ===== Team Section ===== */
.team {
    padding: 60px 0; /* Reduced from 100px */
    background: #f8fafc;
}

.team-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0; /* Add padding for shadow visibility */
}

.team-track {
    display: flex; /* Makes cards sit side-by-side */
    transition: transform 0.5s ease-in-out; /* Smooth sliding */
    width: 100%;
}

.team-card {
    min-width: 100%;
    background: white;
    padding: 0;
    border-radius: 150px 20px 20px 150px;
    box-shadow: none; /* Removed shadow to fix left corner artifact */
    display: flex;
    align-items: center;
    text-align: left;
    height: 350px;
    position: relative;
    margin-right: 0;
    border: 1.5px solid #e0e7ef; /* About style border */
    overflow: hidden; /* Needed for the line */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* About-style top line for Team */
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 5;
}

.team-card:hover {
    transform: translateY(-5px); /* Gentle lift */
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-image {
    width: 350px;
    height: 350px;
    flex-shrink: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.team-image img {
    width: 280px !important; /* Force override inline styles if needed */
    height: 280px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    background: white;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    border-color: #2563eb;
    transform: scale(1.05);
}

.team-info {
    padding: 2rem 3rem 2rem 1rem;
    flex-grow: 1;
}

.team-name {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 0.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.team-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.team-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.team-prev-btn, .team-next-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: #2563eb;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Soft shadow */
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-prev-btn:hover, .team-next-btn:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.team-dots {
    display: flex;
    gap: 0.8rem;
}

.team-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-dot.active {
    background: #2563eb;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

/* ===== Modern Team Card Grid Layout ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.team-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.03) 0%, rgba(0, 242, 254, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-card-modern:hover::before {
    opacity: 1;
}

.team-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.3);
}

.team-card-inner {
    position: relative;
    z-index: 1;
}

.team-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
}

.team-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 50%, #e0e7ff 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    filter: blur(12px);
}

.team-profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.team-card-modern:hover .team-profile-img {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(79, 172, 254, 0.3);
}

.team-member-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.team-member-role {
    font-size: 0.875rem;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.team-member-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.team-skills-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.skill-badge {
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Skill Badge Color Variants */
.skill-blue {
    background: #dbeafe;
    color: #1e40af;
}

.skill-blue:hover {
    background: #3b82f6;
    color: white;
}

.skill-orange {
    background: #fed7aa;
    color: #c2410c;
}

.skill-orange:hover {
    background: #f97316;
    color: white;
}

.skill-green {
    background: #d1fae5;
    color: #065f46;
}

.skill-green:hover {
    background: #10b981;
    color: white;
}

.skill-purple {
    background: #e9d5ff;
    color: #6b21a8;
}

.skill-purple:hover {
    background: #a855f7;
    color: white;
}

.skill-pink {
    background: #fce7f3;
    color: #9f1239;
}

.skill-pink:hover {
    background: #ec4899;
    color: white;
}

.skill-gray {
    background: #e5e7eb;
    color: #374151;
}

.skill-gray:hover {
    background: #6b7280;
    color: white;
}

.skill-green-dark {
    background: #d1fae5;
    color: #047857;
}

.skill-green-dark:hover {
    background: #059669;
    color: white;
}

.skill-blue-dark {
    background: #dbeafe;
    color: #1e3a8a;
}

.skill-blue-dark:hover {
    background: #2563eb;
    color: white;
}

.skill-teal {
    background: #ccfbf1;
    color: #115e59;
}

.skill-teal:hover {
    background: #14b8a6;
    color: white;
}

.skill-red {
    background: #fee2e2;
    color: #991b1b;
}

.skill-red:hover {
    background: #ef4444;
    color: white;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 60px 0; /* Reduced from 100px */
    background: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    /* overflow: hidden; Removed to prevent clipping of hover effects */
    padding: 20px; /* Added padding to allow space for hover lift/shadow */
}

.testimonial-card {
    display: none;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0; /* Default visible border */
}

.testimonial-card:hover {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.quote-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-name {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.author-role {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: #2563eb;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.6s ease;
}

.dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* ===== Contact Section ===== */
.contact {
    padding: 60px 0; /* Reduced from 100px */
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
    border-color: #e5e7eb;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    margin: 0;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.6s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #f9fafb;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    /* Team Card Mobile Layout */
    .team-slider {
        padding: 10px;
    }

    .team-card {
        flex-direction: column; /* Stack image and text vertically */
        height: auto !important; /* Force auto height */
        min-height: 500px; /* Ensure minimum height for content */
        text-align: center; /* Center align text */
        border-radius: 20px; /* Standard card radius */
        padding-bottom: 2rem;
        overflow: visible; /* Prevent clipping */
    }

    .team-image {
        width: 100%; /* Full width container */
        height: auto; /* Auto height */
        margin-bottom: 1.5rem;
        background: transparent;
    }

    .team-image img {
        width: 150px !important; /* Smaller image size */
        height: 150px !important;
        margin-top: 2rem;
    }

    .team-info {
        padding: 0 1.5rem;
    }

    .team-skills {
        justify-content: center;
    }

    .team-controls {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
/* ===== MULTI-COLOR THEME IMPLEMENTATION ===== */
}
/* ===== MULTI-COLOR THEME IMPLEMENTATION ===== */

/* --- Service Cards : Rainbow Effect --- */

/* 1. Web Development (Blue - Default) */
.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.service-card:nth-child(1)::before { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.service-card:nth-child(1):hover { border-color: rgba(37, 99, 235, 0.5); }
.service-card:nth-child(1) .service-features li::before { color: #2563eb; }

/* 2. Mobile App (Target: Purple/Violet) */
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.service-card:nth-child(2):hover { border-color: rgba(124, 58, 237, 0.5); }
.service-card:nth-child(2) .service-features li::before { color: #7c3aed; }

/* 3. Cloud Solutions (Target: Cyan/Teal) */
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #0891b2, #22d3ee); }
.service-card:nth-child(3):hover { border-color: rgba(8, 145, 178, 0.5); }
.service-card:nth-child(3) .service-features li::before { color: #0891b2; }

/* 4. UI/UX Design (Target: Rose/Pink) */
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #e11d48, #fb7185); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, #e11d48, #fb7185); }
.service-card:nth-child(4):hover { border-color: rgba(225, 29, 72, 0.5); }
.service-card:nth-child(4) .service-features li::before { color: #e11d48; }

/* 5. Consulting (Target: Amber/Orange) */
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #d97706, #fbbf24); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, #d97706, #fbbf24); }
.service-card:nth-child(5):hover { border-color: rgba(217, 119, 6, 0.5); }
.service-card:nth-child(5) .service-features li::before { color: #d97706; }

/* 6. Enterprise (Target: Emerald/Green) */
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #059669, #34d399); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, #059669, #34d399); }
.service-card:nth-child(6):hover { border-color: rgba(5, 150, 105, 0.5); }
.service-card:nth-child(6) .service-features li::before { color: #059669; }


/* --- About Cards Variety --- */

/* Mission (Stay Blue) */
.about-card:nth-child(1) .about-card-icon { color: #2563eb; background: #eff6ff; }
.about-card:nth-child(1):hover .about-card-icon { background: #2563eb; }
.about-card:nth-child(1)::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }

/* Vision (Purple) */
.about-card:nth-child(2) .about-card-icon { color: #9333ea; background: #f3e8ff; }
.about-card:nth-child(2):hover { border-color: rgba(147, 51, 234, 0.3); }
.about-card:nth-child(2):hover .about-card-icon { background: #9333ea; }
.about-card:nth-child(2)::before { background: linear-gradient(90deg, #9333ea, #c084fc); }


/* --- Team Skill Tags Variety --- */

.skill-tag:nth-child(1) { color: #0369a1; background: #e0f2fe; }
.skill-tag:nth-child(1):hover { background: #0284c7; color: white; }

.skill-tag:nth-child(2) { color: #7c2d12; background: #ffedd5; }
.skill-tag:nth-child(2):hover { background: #ea580c; color: white; }

.skill-tag:nth-child(3) { color: #15803d; background: #dcfce7; }
.skill-tag:nth-child(3):hover { background: #16a34a; color: white; }

/* --- Contact Icons Variety --- */
.contact-item:nth-child(2) .contact-icon { background: linear-gradient(135deg, #059669, #34d399); } /* Phone - Green */
.contact-item:nth-child(3) .contact-icon { background: linear-gradient(135deg, #7c3aed, #a78bfa); } /* Phone - Purple */
.contact-item:nth-child(4) .contact-icon { background: linear-gradient(135deg, #e11d48, #fb7185); } /* Email - Red */

/* About Cards & Features (Refactored from Inline Styles) */
.about-cards-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
    padding: 2.5rem 2rem;
    flex: 1 1 320px;
    max-width: 420px;
    min-width: 260px;
    text-align: center;
    border: 1.5px solid #e0e7ef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card-icon {
    background: #eaf1ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, color 0.3s;
    font-size: 2rem;
    color: #2563eb;
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: #2563eb;
}

.about-card:hover .about-card-icon i {
    color: #fff !important;
    transition: color 0.3s;
}

.about-features-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: default;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.about-feature:hover {
    transform: translateX(5px) scale(1.02);
    background: #effdf5;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.1);
}

/* Enhanced Hover Effects for Common Elements */

/* 1. Buttons with Shine Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

/* 2. Service Cards - Enhanced */
.service-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* 3. Hero Section Image Floating */
.hero-image {
    animation: floating 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ===== Responsive Team Section (Tablet & Mobile) ===== */
@media (max-width: 991px) {
    .team-card {
        flex-direction: column !important;
        height: auto !important;
        min-height: auto;
        border-radius: 20px !important; /* Overrides pill shape */
        padding: 3rem 1.5rem !important;
        text-align: center !important;
        overflow: visible !important;
    }

    .team-image {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .team-image img {
        width: 180px !important;
        height: 180px !important;
        border-width: 6px !important;
        margin: 0 !important;
    }

    .team-info {
        padding: 0 !important;
        width: 100%;
    }

    .team-name {
        font-size: 1.8rem;
    }

    .team-skills {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .team-controls {
        margin-top: 2rem;
    }
}

/* 4. Footer Links Hover */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    padding-left: 8px;
    color: white;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s;
    color: #2563eb;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* 5. Inputs Focus Ring */
.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
    transform: translateY(-1px);
}