/* Design Tokens */

:root {
    --primary: #6366f1;
    --secondary: #ec4899;
    --accent: #14b8a6;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(26, 26, 36, 0.6);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --radius: 1rem;
    --spacing: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #cbd5e1;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--text-light);
    text-decoration: none;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    border-radius: var(--radius);
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -250px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -200px;
    left: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -50px);
    }
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2rem;
    color: #818cf8;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    animation: cardFloat 6s infinite ease-in-out;
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.card-4 {
    top: 30%;
    right: 30%;
    animation-delay: 3s;
}

.card-5 {
    bottom: 35%;
    left: 5%;
    animation-delay: 4s;
}

.card-6 {
    top: 65%;
    right: 5%;
    animation-delay: 5s;
}

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius);
}

.card-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #818cf8;
}

/* Sections */

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2rem;
    color: #818cf8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #cbd5e1;
}

/* Services */

.services {
    background: #13131a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2rem;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-card.featured {
    background: linear-gradient( 135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #818cf8;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* About */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper {
    height: 500px;
    background: var(--gradient);
    border-radius: var(--radius);
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-text {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.about-description {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.skills-grid {
    margin-top: 2rem;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 0.5rem;
}

/* Portfolio */

.portfolio {
    background: #13131a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-8px);
}

.portfolio-image {
    height: 250px;
    background: var(--gradient);
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-category {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-description {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.portfolio-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #818cf8;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Testimonials */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2rem;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
}

.author-position {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Contact */

.contact {
    background: #13131a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-value {
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: 0.3s;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--text-light);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-input {
    resize: vertical;
}

.btn-full {
    width: 100%;
}

/* Footer */

.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-description {
    color: #cbd5e1;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: #cbd5e1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-list a:hover {
    color: #818cf8;
    transform: translateX(3px);
    text-decoration: none;
}

.footer-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background: linear-gradient( 90deg, transparent 0%, rgba(99, 102, 241, 0.3) 50%, transparent 100%);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #818cf8;
    text-decoration: none;
}

.footer-separator {
    color: #475569;
    font-size: 0.75rem;
}

/* Responsive Design - Mobile First Approach */

/* Large Tablets and Small Desktops */

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */

@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-image {
        display: none;
    }
    .hero {
        padding: 5rem 0 3rem;
    }
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .image-wrapper {
        height: 400px;
    }
}

/* Mobile Devices */

@media (max-width: 768px) {
    /* Enhanced Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-link {
        font-size: 1.25rem;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
        width: 100%;
    }
    .nav-link::after {
        display: none;
    }
    .cta-button {
        display: none;
    }
    /* Animated Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        background: transparent;
        padding: 0.5rem;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    /* Hero Section Mobile */
    .hero {
        padding: 4rem 0 2rem;
        min-height: auto;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stat-item {
        padding: 1.25rem;
        background: rgba(99, 102, 241, 0.05);
        border-radius: var(--radius);
        border: 1px solid rgba(99, 102, 241, 0.15);
    }
    /* Sections Mobile */
    section {
        padding: 3rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .section-description {
        font-size: 1rem;
    }
    /* Services Mobile */
    .services-grid {
        gap: 1.5rem;
    }
    .service-card {
        padding: 1.5rem;
    }
    .service-title {
        font-size: 1.25rem;
    }
    .service-icon {
        font-size: 2.5rem;
    }
    /* About Mobile */
    .image-wrapper {
        height: 300px;
    }
    .experience-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
    .badge-number {
        font-size: 2.5rem;
    }
    /* Portfolio Mobile */
    .portfolio-grid {
        gap: 1.5rem;
    }
    .portfolio-image {
        height: 200px;
    }
    /* Testimonials Mobile */
    .testimonials-grid {
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    /* Contact Mobile */
    .contact-content {
        gap: 2rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    .contact-details {
        margin-bottom: 2rem;
    }
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-social {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
}

/* Small Mobile Devices */

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .navbar {
        padding: 0.75rem 0;
    }
    .logo {
        font-size: 1.25rem;
    }
    .logo-icon {
        font-size: 1.5rem;
    }
    .hero {
        padding: 3rem 0 2rem;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .badge,
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    .hero-stats {
        gap: 0.75rem;
    }
    .stat-item {
        padding: 1rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    section {
        padding: 2.5rem 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-description {
        font-size: 0.95rem;
    }
    .service-card,
    .testimonial-card,
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    .service-icon {
        font-size: 2.25rem;
    }
    .service-title {
        font-size: 1.125rem;
    }
    .service-description,
    .portfolio-description,
    .testimonial-text,
    .about-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .service-features li {
        font-size: 0.9rem;
    }
    .portfolio-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .metric-value {
        font-size: 1.25rem;
    }
    .form-input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    .social-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .social-link {
        width: 45px;
        height: 45px;
    }
    .image-wrapper {
        height: 250px;
    }
    .experience-badge {
        padding: 1rem;
    }
    .badge-number {
        font-size: 2rem;
    }
    .badge-text {
        font-size: 0.75rem;
    }
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-description {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */

@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.35rem;
    }
    .service-card,
    .testimonial-card {
        padding: 1rem;
    }

}
/* ===== FINAL Mobile Fix for About Image ===== */

.about-image{
  width:100%;
  display:flex;
  justify-content:center;
}

.image-wrapper{
  width:100%;
  max-width:420px;
  height:auto !important;
  position:relative;
  border-radius:20px;
  overflow:hidden;
}

.about-img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  border-radius:20px;
}

/* Badge Fix */
.experience-badge{
  position:absolute;
  bottom:12px;
  right:12px;
  padding:10px 14px;
  border-radius:12px;
}

/* Mobile Responsive */
@media(max-width:768px){
  .image-wrapper{
    max-width:320px;
  }

  .experience-badge{
    padding:8px 12px;
  }

  .badge-number{
    font-size:18px;
  }

  .badge-text{
    font-size:11px;
  }
    /* ===== Premium Experience Badge ===== */

.exp-badge{
  background: linear-gradient(135deg, #2b0a3d, #5b117a, #b832f0);
  color: #000000;
  border-radius: 16px;
  padding: 14px 18px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 10px 25px rgba(184,50,240,.45);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

.exp-badge h3{
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.exp-badge span{
  font-size: 13px;
  opacity: .9;
}
    /* Mobile responsive badge fix */
@media (max-width: 768px) {
  .badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    font-size: 12px;
    padding: 6px 12px;
    line-height: 1.4;
    margin-top: 55px;
  }

  .hero-text {
    padding-top: 20px;
  }
}









