/* Page-specific styles for portfolio (index.html).
   Shared tokens/layout (reset, variables, nav/footer base) are in `common.css`. */

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

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

nav .cta-btn {
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent);
}

nav .cta-btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: 
        radial-gradient(circle at 20% 50%, var(--accent) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #4a5fc1 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -1px;
}

.hero-text .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--accent);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-booking {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #10b981;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-booking:hover {
    background: linear-gradient(135deg, #059669, #047857);
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.image-bg {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--accent), #4a5fc1);
    border-radius: 50%;
    transform: rotate(5deg);
    opacity: 0.2;
    z-index: 1;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    object-position: center;
}

/* Tech Stack Badges */
.tech-badges {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 20;
}

.tech-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tech-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.tech-badge:nth-child(3) {
    animation-delay: 1s;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Blog Section */
.blog {
    padding: 4rem 2rem;
    background: white;
}

.blog-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-image-contain {
    height: auto;
    background: #0a1628;
}

.blog-image-contain img {
    object-fit: contain;
    height: auto;
    padding: 0.5rem;
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content-card {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-content-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 1rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 20rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 107, 53, 0.05);
    z-index: 0;
}

.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.testimonial-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--border);
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.author-company {
    display: inline-block;
    color: #0d9488;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.author-company:hover {
    color: #0f766e;
    text-decoration: underline;
}

.testimonial-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #0a66c2;
    color: white;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.testimonial-linkedin:hover {
    background: #004182;
    transform: scale(1.05);
}

.testimonial-linkedin svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.95rem;
}

.linkedin-icon {
    color: #0077b5;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.linkedin-icon:hover {
    transform: scale(1.2);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-label {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #4a5fc1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

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

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #4a5fc1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

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

.package-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.package-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.75rem;
}

.package-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.package-tagline {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1rem;
    font-style: italic;
}

.package-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.package-includes {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.package-includes li {
    padding: 0.4rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.package-includes li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

.package-cta {
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    display: block;
}

/* Technical Capabilities */
.tech-capabilities {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1a1f3a 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.tech-capabilities::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(74, 95, 193, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.tech-capabilities-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.35rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.tech-tag:hover {
    border-color: var(--accent);
    color: white;
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

/* Case Studies Section */
.case-studies {
    padding: 3rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.case-studies-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.case-study-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

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

.case-study-card:nth-child(1)::before {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.case-study-card:nth-child(2)::before {
    background: linear-gradient(90deg, #059669, #34d399);
}

.case-study-card:nth-child(3)::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.case-study-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.industry-badge.telecom {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.industry-badge.fintech {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.industry-badge.enterprise {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.case-study-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-study-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.case-study-results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-radius: 12px;
    border-left: 3px solid #10b981;
}

.case-study-results span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.case-study-results span::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    margin-right: 0.25rem;
    font-size: 1rem;
}

.case-study-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.tech-pill {
    background: rgba(255, 107, 53, 0.08);
    color: var(--accent);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s;
}

.tech-pill:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Booking CTA Box (Contact Section) */
.booking-cta-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #a7f3d0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-cta-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.booking-cta-box .btn-booking {
    margin-bottom: 0.75rem;
}

.booking-cta-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Experience Section */
.experience {
    padding: 4rem 2rem;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(74, 95, 193, 0.1) 0%, transparent 50%);
}

.experience-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience .section-label {
    color: var(--accent-light);
}

.experience .section-title,
.experience .section-description {
    color: white;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), #4a5fc1);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateX(10px);
}

.timeline-period {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-company {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.timeline-dot {
    position: absolute;
    left: 18px;
    top: 2rem;
    transform: translateX(0);
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    border: 5px solid var(--primary);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Work Sans', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Footer */
footer {
    margin-top: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.3rem;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        margin-top: 72px;
        min-height: auto;
        padding: 1.5rem 0 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem 1.25rem 1.5rem;
        padding-top: 1rem;
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        padding: 0.625rem 0.375rem;
        border-radius: 8px;
    }

    .stat-number {
        font-size: 1.5rem;
        display: block;
    }

    .stat-label {
        font-size: 0.6875rem;
        margin-top: 0.25rem;
        display: block;
        line-height: 1.2;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.625rem;
        margin-top: 0.25rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .image-wrapper {
        max-width: 160px;
        width: 160px;
        height: 160px;
        min-width: 160px;
        min-height: 160px;
        border-radius: 50%;
        overflow: hidden;
    }

    .profile-image {
        object-position: center 32%;
    }

    .tech-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        transform: none;
        gap: 0.5rem;
    }

    .tech-badge {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .btn-booking {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .services {
        padding: 2.5rem 1.25rem 3rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .tech-capabilities {
        margin-top: 2.5rem;
        padding: 2rem 1.25rem;
    }

    .tech-tags {
        gap: 0.5rem;
    }

    .tech-tag {
        padding: 0.45rem 0.875rem;
        font-size: 0.8rem;
    }

    .case-studies {
        padding: 2.5rem 1.25rem 3rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .case-study-card {
        padding: 1.5rem;
    }

    .case-study-results {
        flex-direction: column;
        gap: 0.375rem;
    }

    .booking-cta-box {
        padding: 1.5rem;
    }

    .experience {
        padding: 2.5rem 1.25rem 3rem;
    }

    .testimonials {
        padding: 2.5rem 1.25rem 3rem;
    }

    .contact {
        padding: 2.5rem 1.25rem 3rem;
    }

    .section-header {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .section-label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-card-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonials::before {
        font-size: 8rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 56px;
        padding-bottom: 1.5rem;
    }

    .timeline-dot {
        left: 3px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
        min-height: 48px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }
}

