* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: linear-gradient(135deg,
            #020617 0%,
            #0f172a 50%,
            #1e293b 100%);
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}



body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 0%,
            rgba(34, 197, 94, 0.08) 0%,
            transparent 50%),
        radial-gradient(ellipse 60% 60% at 100% 100%,
            rgba(6, 182, 212, 0.06) 0%,
            transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-gap {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-gap {
        padding: 60px 0;
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
}

.text-gradient {
    background: linear-gradient(135deg,
            #22c55e 0%,
            #06b6d4 50%,
            #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 1rem;
    gap: 10px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.6);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(51, 65, 85, 0.7);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, 0.7);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.95);
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg,
            #22c55e 0%,
            #06b6d4 50%,
            #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

/* ==================== HERO SECTION ==================== */
/* .hero {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
} */

.hero {

    position: relative;

    overflow: hidden;

    padding:
        140px 0 80px;

    background:
        linear-gradient(135deg,
            rgba(2, 6, 23, 0.603),
            rgba(3, 11, 32, 0.61)),

        url('/images/portfolio/hero-bg.png') center center/cover no-repeat;

    background-attachment: fixed;
}

.hero::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    background:
        radial-gradient(circle,
            rgba(34, 197, 94, 0.10),
            transparent 70%);

    top: -200px;

    left: -200px;

    z-index: 1;
}

.hero::after {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    background:
        radial-gradient(circle,
            rgba(59, 130, 246, 0.10),
            transparent 70%);

    bottom: -250px;

    right: -200px;

    z-index: 1;
}

.hero .container {

    position: relative;

    z-index: 2;
}

/* .hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(34, 197, 94, 0.15) 0%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(6, 182, 212, 0.1) 0%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
} */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 24px;
    color: #f8fafc;
    font-weight: 900;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg,
            #22c55e 0%,
            #06b6d4 50%,
            #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(30deg);
    }
}

.hero-content>p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #cbd5e1;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}


.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hero-stats-row {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -40px;
}

@media (max-width: 1024px) {
    .hero-stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}


.stat-card {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.1) 0%,
            rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.05) 0%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.15) 0%,
            rgba(6, 182, 212, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #22c55e;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-icon {
    color: #06b6d4;
    transform: scale(1.25) rotate(-5deg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.1) 0%,
            rgba(6, 182, 212, 0.08) 50%,
            rgba(59, 130, 246, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 150px;
    animation: float 6s ease-in-out infinite;
    box-shadow:
        0 25px 50px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(34, 197, 94, 0.1) 50%,
            transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ==================== SERVICES SECTION ==================== */
.services {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(34, 197, 94, 0.03) 50%,
            transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.section-header .label i {
    font-size: 1rem;
    opacity: 1;
}

.section-header:hover .label {
    opacity: 1;
    transform: translateX(4px);
}

.section-header h2 {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.services-header-image {
    /*max-width: 900px;*/
    margin: 34px auto 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.2);
    background:
        rgba(255, 255, 255, 0.05);
    box-shadow:
        0 25px 50px rgba(34, 197, 94, 0.15),
        0 24px 60px rgba(2, 6, 23, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.services-header-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(34, 197, 94, 0.1) 50%,
            transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    z-index: 1;
    pointer-events: none;
}

.services-header-image img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s ease;
}

.services-header-image:hover img {
    transform: scale(1.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg,
            rgba(30, 41, 59, 0.5) 0%,
            rgba(15, 23, 42, 0.3) 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #22c55e 0%,
            #06b6d4 50%,
            #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(34, 197, 94, 0.2) 0%,
            transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
}

.service-card:hover {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.1) 0%,
            rgba(6, 182, 212, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(34, 197, 94, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.3) 0%,
            rgba(6, 182, 212, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #22c55e;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.service-card:hover .service-icon {
    color: #06b6d4;
    transform: scale(1.2) rotate(-15deg);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.4) 0%,
            rgba(6, 182, 212, 0.3) 100%);
}

.service-card h3 {
    margin-bottom: 12px;
    color: #f8fafc;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(34, 197, 94, 0.02) 50%,
            transparent 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.portfolio-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.15) 0%,
            rgba(6, 182, 212, 0.1) 50%,
            rgba(59, 130, 246, 0.05) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: #22c55e;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(34, 197, 94, 0.1) 50%,
            transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image::before {
    transform: translateX(100%);
}

.portfolio-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #f8fafc;
}

.portfolio-info p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.portfolio-tag {
    display: inline-flex;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.portfolio-card:hover .portfolio-tag {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
}

/* ==================== WHY CHOOSE US ==================== */
.why-us {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(34, 197, 94, 0.03) 50%,
            transparent 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Tablet */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.25) 0%,
            rgba(6, 182, 212, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #22c55e;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.12);
}

.why-item:hover .why-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.25);
    color: #06b6d4;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.3) 0%,
            rgba(34, 197, 94, 0.2) 100%);
}

.why-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #f8fafc;
}

.why-content p {
    font-size: 0.95rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(34, 197, 94, 0.02) 50%,
            transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg,
            rgba(30, 41, 59, 0.5) 0%,
            rgba(15, 23, 42, 0.3) 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
            rgba(34, 197, 94, 0.15) 0%,
            transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.08) 0%,
            rgba(6, 182, 212, 0.04) 100%);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(34, 197, 94, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    margin-bottom: 24px;
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.8;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(34, 197, 94, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);
}

.testimonial-author-info h4 {
    margin-bottom: 4px;
    color: #f8fafc;
    font-size: 0.95rem;
}

.testimonial-author-info p {
    font-size: 0.85rem;
    color: #22c55e;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.08) 0%,
            rgba(6, 182, 212, 0.04) 50%,
            rgba(59, 130, 246, 0.02) 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form h2 {
    margin-bottom: 10px;
}

.contact-form>p {
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    color: #e2e8f0;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-section h2 {
    margin-bottom: 10px;
}

.contact-info-section>p {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.3) 0%,
            rgba(6, 182, 212, 0.2) 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #22c55e;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.15) rotate(-5deg);
    color: #06b6d4;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.contact-info-content h4 {
    margin-bottom: 8px;
    color: #f8fafc;
}

.contact-info-content p {
    font-size: 0.95rem;
}

.contact-info-content a {
    color: #22c55e;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: #06b6d4;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

/* Map Styles */
#address-map {
    height: 550px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow:
        0 15px 40px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#address-map:hover {
    box-shadow:
        0 25px 50px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Leaflet controls styling */
.leaflet-control-layers {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.leaflet-control-layers-toggle {
    background: linear-gradient(135deg,
            #22c55e 0%,
            #16a34a 100%) !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
}

.leaflet-control-layers label {
    color: #cbd5e1 !important;
    font-family: "Inter", sans-serif !important;
}

.leaflet-control-zoom {
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.leaflet-control-zoom a {
    background: rgba(34, 197, 94, 0.2) !important;
    color: #22c55e !important;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2) !important;
    font-weight: bold !important;
}

.leaflet-control-zoom a:hover {
    background: rgba(34, 197, 94, 0.4) !important;
    color: #06b6d4 !important;
}

.leaflet-popup-content {
    background: rgba(15, 23, 42, 0.95) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    padding: 16px !important;
}

.leaflet-popup-tip {
    background: rgba(15, 23, 42, 0.95) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

@media (max-width: 768px) {
    #address-map {
        height: 420px;
        margin-top: 24px;
    }
}

/* ==================== FOOTER ==================== */
footer {
    background: rgba(2, 6, 23, 0.6);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #f8fafc;
    font-size: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #22c55e;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backdrop-filter: blur(8px);
}

.floating-btn::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 0.35) 0%,
            transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    transform: translate3d(0, 0, 0);
}

.floating-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.02) 45%,
            rgba(0, 0, 0, 0.08) 100%);
    opacity: 0.65;
    pointer-events: none;
}

.floating-btn i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-btn:hover i {
    transform: translateY(-1px) scale(1.06);
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.whatsapp-btn {
    background: radial-gradient(circle at 30% 25%, #25d366 0%, #16a34a 35%, #128a3a 100%);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.12) rotate(6deg);
    box-shadow: 0 25px 60px rgba(34, 197, 94, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn i {
    background: linear-gradient(180deg, #ffffff 0%, #d1fae5 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
}

.call-btn {
    background: radial-gradient(circle at 30% 25%, #60a5fa 0%, #2563eb 35%, #1d4ed8 100%);
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px) scale(1.12) rotate(-6deg);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.call-btn:hover::before {
    opacity: 1;
}

.call-btn i {
    background: linear-gradient(180deg, #ffffff 0%, #dbeafe 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
}


@media (max-width: 640px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

   .section-header h2 {
        font-size: 1.8rem;
    }

    .services-header-image img {
        height: 220px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section-gap {
        padding: 50px 0;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-stats {
        gap: 16px;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        gap: 24px;
    }

    .contact-grid {
        gap: 40px;
    }
}

 .hero-image-box {
            width: 100%;
            max-width: 580px;
            height: 520px;
            border-radius: 30px;
            overflow: hidden;
            position: relative;

            background:
                rgba(255, 255, 255, 0.05);

            border:
                1px solid rgba(255, 255, 255, 0.08);

            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .hero-image-box img {

            width: 100%;
            height: 100%;
            object-fit: cover;

            transition: 0.5s ease;
        }

        .hero-image-box:hover img {

            transform: scale(1.05);
        }

            .portfolio-image {
            width: 100%;
            /* height: 200px; */
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.4s ease;
        }

        .portfolio-card:hover .portfolio-image img {

            transform: scale(1.08);
        }
        
        /* ==================== HIRE DEVELOPERS ==================== */

.hire-developers {

    background:
        linear-gradient(135deg,
            #071b34,
            #0a2d55);

    position: relative;
}

.developers-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 60px;
}

/* CARD */

.developer-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    transition: 0.4s ease;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    flex-direction: column;

    padding: 0;

    text-align: left;
}

.developer-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE */

.developer-card img {

    width: 100%;

    height: 240px;

    object-fit: cover;

    display: block;

    border-radius: 24px 24px 0 0;

    transition: 0.5s ease;
}

.developer-card:hover img {

    transform: scale(1.05);
}

/* CONTENT */

.developer-card h3 {

    font-size: 28px;

    margin:
        25px 25px 15px;

    color: #16162d;

    font-weight: 700;
}

.developer-card p {

    color: #666;

    line-height: 1.8;

    padding:
        0 25px 30px;

    margin: 0;
}

/* ==================== FOOTER ==================== */

.footer {

    background:
        linear-gradient(135deg,
            #071326,
            #0a1f3c);

    padding:
        90px 0 30px;

    color: #fff;

    position: relative;

    overflow: hidden;
}

.footer::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(34, 197, 94, 0.08),
            transparent 35%);
}

/* GRID */

.footer-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 50px;

    position: relative;

    z-index: 2;
}

/* BOX */

.footer-box h3 {

    font-size: 24px;

    margin-bottom: 25px;

    color: #fff;

    font-weight: 700;
}

.footer-box p {

    color: rgba(255, 255, 255, 0.7);

    line-height: 1.9;
}

/* LOGO */

.footer-logo img {

    width: 220px;

    margin-bottom: 25px;
}

/* LINKS */

.footer-box ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-box ul li {

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.75);
}

.footer-box ul li a {

    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-box ul li a:hover {

    color: #22c55e;

    padding-left: 5px;
}

/* CONTACT */

.footer-contact li {

    display: flex;

    gap: 12px;

    align-items: flex-start;
}

.footer-contact i {

    color: #22c55e;

    margin-top: 5px;
}

/* SOCIAL */

.footer-social {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.footer-social a {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 18px;

    transition: 0.4s ease;
}

/* FACEBOOK */

.footer-social a:nth-child(1):hover {

    background: #1877f2;

    transform:
        translateY(-5px);
}

/* WHATSAPP */

.footer-social a:nth-child(2):hover {

    background: #25d366;

    transform:
        translateY(-5px);
}

/* INSTAGRAM */

.footer-social a:nth-child(3):hover {

    background:
        linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);

    transform:
        translateY(-5px);
}

/* LINKEDIN */

.footer-social a:nth-child(4):hover {

    background: #0a66c2;

    transform:
        translateY(-5px);
}

/* BOTTOM */

.footer-bottom {

    margin-top: 70px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-bottom p {

    color: rgba(255, 255, 255, 0.7);

    margin: 0;
}

.footer-policy {

    display: flex;

    gap: 20px;
}

.footer-policy a {

    color: #22c55e;

    text-decoration: none;
}

/* MOBILE */

@media(max-width:768px) {

    .footer {

        padding:
            70px 0 30px;
    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;
    }

    .footer-logo img {

        width: 180px;
    }
}

/* ==================== INDUSTRIES ==================== */

.industries {

    background:
        linear-gradient(135deg,
            #071326,
            #0a1f3c);

    position: relative;

    overflow: hidden;
}

.industry-desc {

    max-width: 900px;

    margin:
        20px auto 0;

    color:
        rgba(255, 255, 255, 0.7);

    line-height: 1.9;

    text-align: center;
}

/* GRID */

.industry-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    margin-top: 70px;
}

/* CARD */

.industry-card {

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);

    border-radius: 28px;

    padding: 0px;

    text-align: center;

    transition: 0.4s ease;

    position: relative;

    overflow: hidden;
}

.industry-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(34, 197, 94, 0.08),
            transparent);

    opacity: 0;

    transition: 0.4s ease;
}

.industry-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25);

    border-color:
        rgba(34, 197, 94, 0.4);
}

.industry-card:hover::before {

    opacity: 1;
}

/* ICON */

.industry-icon {

    width: 100%;

    height: 240px;

    margin: 0;

    border-radius:
        28px 28px 0 0;

    overflow: hidden;

    background: transparent;
}

/* IMAGE */

.industry-icon img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s ease;
}

/* HOVER EFFECT */

.industry-card:hover .industry-icon img {

    transform: scale(1.05);
}

/* TITLE */

.industry-card h3 {

    color: #fff;

    font-size: 28px;

    line-height: 1.5;

    font-weight: 700;

    padding:
        30px 25px 40px;

    margin: 0;
}

/* MOBILE */

@media(max-width:768px) {

    .industry-card {

        padding: 35px 25px;
    }

    .industry-card h3 {

        font-size: 22px;
    }
}

/* TABLET */

@media(max-width:992px) {

    .industry-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

/* MOBILE */

@media(max-width:768px) {

    .industry-grid {

        grid-template-columns:
            1fr;
    }
}

/* ==================== PROCESS SECTION ==================== */

.process-section {

    background:
        linear-gradient(135deg,
            #061326,
            #071d38);

    position: relative;

    overflow: hidden;
}

/* SUBTITLE */

.process-subtitle {

    max-width: 900px;

    margin:
        20px auto 0;

    text-align: center;

    color:
        rgba(255, 255, 255, 0.7);

    line-height: 1.9;
}

/* WRAPPER */

.process-wrapper {

    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    gap: 60px;

    align-items: center;

    margin-top: 80px;
}

/* LEFT */

.process-steps {

    display: flex;

    flex-direction: column;

    gap: 35px;
}

/* STEP */

.process-step {

    display: flex;

    gap: 25px;

    align-items: flex-start;

    position: relative;
}

/* ICON */

.step-icon {

    width: 70px;

    height: 70px;

    min-width: 70px;

    border-radius: 50%;

    background:
        rgba(34, 197, 94, 0.08);

    border:
        1px solid rgba(34, 197, 94, 0.35);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #22c55e;

    font-size: 26px;
}

/* NUMBER */

.step-number {

    width: 60px;

    height: 60px;

    min-width: 60px;

    border-radius: 16px;

    border:
        1px solid rgba(34, 197, 94, 0.25);

    background:
        rgba(255, 255, 255, 0.04);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #22c55e;

    font-size: 24px;

    font-weight: 700;
}

/* CONTENT */

.step-content h3 {

    color: #fff;

    font-size: 30px;

    margin-bottom: 10px;
}

.step-content p {

    color:
        rgba(255, 255, 255, 0.7);

    line-height: 1.8;
}

/* IMAGE */

.process-image {

    position: relative;
}

.process-image img {

    width: 100%;

    border-radius: 32px;

    object-fit: cover;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3);
}

/* FEATURES */

.process-features {

    margin-top: 80px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

/* FEATURE BOX */

.feature-box {

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    padding: 30px;

    display: flex;

    gap: 20px;

    align-items: flex-start;

    transition: 0.4s ease;
}

.feature-box:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(34, 197, 94, 0.4);
}

/* FEATURE ICON */

.feature-box i {

    font-size: 32px;

    color: #22c55e;
}

/* FEATURE TEXT */

.feature-box h4 {

    color: #fff;

    margin-bottom: 8px;

    font-size: 22px;
}

.feature-box p {

    color:
        rgba(255, 255, 255, 0.7);

    line-height: 1.7;
}

/* MOBILE */

@media(max-width:992px) {

    .process-wrapper {

        grid-template-columns: 1fr;
    }

    .process-features {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .process-features {

        grid-template-columns: 1fr;
    }

    .process-step {

        flex-direction: column;
    }

    .step-content h3 {

        font-size: 24px;
    }
}

/* ==================== DIGITAL JOURNEY ==================== */

.digital-journey {

    background:
        linear-gradient(135deg,
            #071326,
            #0a1f3c);

    position: relative;

    overflow: hidden;

    padding:
        100px 0;
}

/* CONTENT */

.journey-content {

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

    position: relative;

    z-index: 2;
}

/* HEADING */

.journey-content h2 {

    font-size: 58px;

    line-height: 1.3;

    color: #fff;

    margin-bottom: 35px;

    font-weight: 800;
}

/* TEXT */

.journey-content p {

    font-size: 22px;

    line-height: 2;

    color:
        rgba(255, 255, 255, 0.72);

    max-width: 1100px;

    margin: 0 auto;
}

/* STRONG */

.journey-content strong {

    color: #22c55e;

    font-weight: 700;
}

/* BACKGROUND GLOW */

.digital-journey::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    background:
        radial-gradient(circle,
            rgba(34, 197, 94, 0.12),
            transparent 70%);

    top: -150px;

    left: -100px;
}

.digital-journey::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background:
        radial-gradient(circle,
            rgba(59, 130, 246, 0.10),
            transparent 70%);

    bottom: -180px;

    right: -120px;
}

/* MOBILE */

@media(max-width:992px) {

    .journey-content h2 {

        font-size: 44px;
    }

    .journey-content p {

        font-size: 19px;
    }
}

@media(max-width:768px) {

    .digital-journey {

        padding:
            70px 0;
    }

    .journey-content h2 {

        font-size: 34px;
    }

    .journey-content p {

        font-size: 17px;

        line-height: 1.9;
    }
}

/* ==================== ABOUT BANNER ==================== */

.about-banner {

    position: relative;

    padding:
        120px 0;

    background:
        url('/images/portfolio/about-banner.png') center center/cover no-repeat;

    background-attachment: fixed;

    overflow: hidden;
}

/* OVERLAY */

.about-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(6, 19, 38, 0.582),
            rgba(7, 29, 56, 0.568));
}

/* CONTENT */

.about-banner-content {

    position: relative;

    z-index: 2;

    text-align: center;
}

.about-banner-content h1 {

    font-size: 68px;

    color: #fff;

    margin-bottom: 18px;

    font-weight: 800;
}

/* BREADCRUMB */

.about-breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    color:
        rgba(255, 255, 255, 0.72);
}

.about-breadcrumb a {

    color: #22c55e;

    text-decoration: none;

    transition: 0.3s ease;
}

.about-breadcrumb a:hover {

    color: #fff;
}

/* ==================== WHO WE ARE ==================== */

.who-we-are {

    background: #fff;
}

/* GRID */

.who-grid {

    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* MINI TITLE */

.section-mini-title {

    display: inline-block;

    color: #22c55e;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

/* HEADING */

.who-content h2 {

    font-size: 52px;

    line-height: 1.25;

    color: #111827;

    margin-bottom: 28px;

    font-weight: 800;
}

/* TEXT */

.who-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #4b5563;

    margin-bottom: 20px;
}

/* FEATURES */

.who-features {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    margin-top: 35px;
}

/* FEATURE */

.who-feature {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    color: #111827;
}

.who-feature i {

    color: #22c55e;

    font-size: 18px;
}

/* IMAGE */

.who-image img {

    width: 100%;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);

    object-fit: cover;
}

/* MOBILE */

@media(max-width:992px) {

    .who-grid {

        grid-template-columns: 1fr;
    }

    .who-content h2 {

        font-size: 40px;
    }
}

@media(max-width:576px) {

    .about-banner-content h1 {

        font-size: 42px;
    }

    .who-content h2 {

        font-size: 32px;
    }

    .who-features {

        grid-template-columns: 1fr;
    }
}

/* ==================== CORE STRENGTHS ==================== */

.core-strengths {

    background:
        linear-gradient(
            135deg,
            #061326,
            #071d38
        );
}

/* DESCRIPTION */

.section-description {

    max-width: 850px;

    margin:
        20px auto 0;

    color:
        rgba(255,255,255,0.72);

    line-height: 1.9;

    font-size: 18px;
}

/* GRID */

.strength-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

    margin-top: 70px;
}

/* IMAGE */

.strength-image img {

    width: 100%;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.3);
}

/* CONTENT */

.strength-content {

    display: flex;

    flex-direction: column;

    gap: 24px;
}

/* ITEM */

.strength-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding:
        22px 26px;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    color: #fff;

    font-size: 19px;

    font-weight: 600;

    transition: 0.4s ease;

    backdrop-filter: blur(10px);
}

.strength-item:hover {

    transform:
        translateX(10px);

    border-color:
        rgba(34,197,94,0.4);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.2);
}

/* ICON */

.strength-item i {

    color: #22c55e;

    font-size: 24px;
}

/* BOTTOM */

.strength-bottom-text {

    margin-top: 60px;

    text-align: center;
}

.strength-bottom-text p {

    max-width: 1000px;

    margin: auto;

    font-size: 18px;

    line-height: 1.9;

    color:
        rgba(255,255,255,0.72);
}

/* MOBILE */

@media(max-width:992px) {

    .strength-grid {

        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {

    .strength-item {

        font-size: 16px;

        padding:
            18px 20px;
    }
}