:root {
    --primary: #0A2540;
    --accent: #3EC6FF;
    --light: #ffffff;
    --text: #333;
    --radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #f8f9fa;
}

body.nav-open {
    overflow: hidden;
}


/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.site-header {
    background: var(--light);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}


/* Header layout */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    /* was 80px */
}

.site-header.shrink {
    height: 70px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.site-header.shrink .container {
    height: 70px;
}


/* Logo */
.logo {
    display: inline-block;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Make "Art" feel special */
.logo-text span {
    color: var(--accent);
    font-weight: 600;
}

.logo:hover {
    transform: scale(1.02);
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 34px;
    width: auto;
    margin-right: 10px;
    transition: transform 0.4s ease;
}

.logo-text {
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.logo a,
.logo a:visited,
.logo a:active,
.logo a:focus {
    color: var(--primary);
    text-decoration: none;
}

.logo-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #1fa2ff);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover .logo-text::after {
    width: 100%;
}

.logo a:focus {
    outline: none;
}

.logo a:focus-visible {
    box-shadow: 0 0 0 3px rgba(62, 198, 255, 0.35);
    border-radius: 6px;
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }

    .logo-img {
        height: 40px;
        /* Slightly bigger for mobile */
        margin-right: 0;
    }
}


/* Navigation */
.main-nav {
    display: flex;
    gap: 36px;
    /* was 30px */
    align-items: center;
}


.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
}


/* Underline animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

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

/* CTA Button */
.nav-cta {
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0A2540, #0d3b66);
    color: #fff !important;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.25);
    transition: all 6.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.35);
    background: linear-gradient(135deg, #3EC6FF, #1fa2ff);
}

.nav-cta::after {
    display: none;
}

/* =====================
   Mobile Navigation
===================== */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.4s ease;
}


/* Mobile view */
@media (max-width: 768px) {

    .main-nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .main-nav a {
        padding: 16px 20px;
        width: 100%;
    }

    .main-nav.open {
        max-height: 400px;
    }

    .nav-toggle {
        display: block;
    }

    /* CTA spacing fix */
    .nav-cta {
        margin: 12px 20px 20px;
        text-align: center;
    }
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}



/* =====================
   Footer
===================== */

.site-footer {
    background: #0A2540;
    color: #dbe7f3;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

/* Brand */
.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand span {
    color: var(--accent);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 44px;
    /* slightly bigger for footer presence */
    width: auto;
    object-fit: contain;

    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.07));
}

.footer-brand h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.4px;
    line-height: 1.2;
}

/* Links */
.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links a,
.footer-links span {
    display: block;
    font-size: 14px;
    color: #dbe7f3;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Hover effect */
.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
    opacity: 1;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 16px 0;
    font-size: 13px;
    opacity: 0.75;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links {
        margin-top: 20px;
    }
}

/* =====================
   404 Page
===================== */

.error-page {
    min-height: calc(100vh - 160px);
    /* header + footer space */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            #f8f9fa 0%,
            #eef4fb 100%);
    padding: 40px 20px;
}

.error-content {
    text-align: center;
    max-width: 520px;
}

.error-content h1 {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.error-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Home button */
.btn-home {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0A2540, #0d3b66);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.25);
    transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(10, 37, 64, 0.35);
    background: linear-gradient(135deg, #3EC6FF, #1fa2ff);
}

/* Focus state (accessibility) */
.btn-home:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(62, 198, 255, 0.4),
        0 16px 35px rgba(10, 37, 64, 0.35);
}


/* =====================
   Hero Section
===================== */

.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f4f8fd 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left content */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 18px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 34px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0A2540, #0d3b66);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.25);
    transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(10, 37, 64, 0.35);
    background: linear-gradient(135deg, #3EC6FF, #1fa2ff);
}

.btn-secondary {
    padding: 14px 30px;
    border-radius: 999px;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

/* Right visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-shape {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at top,
            #3EC6FF,
            #0A2540);
    opacity: 0.9;
    filter: blur(0.2px);

    /* changes on 04-02-26: darshit rakhasiya */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* changes on 04-02-26: darshit rakhasiya */
.hero-shape::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 60%);
    pointer-events: none;
}

/* changes on 04-02-26: darshit rakhasiya */
.hero-shape img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-shape {
        width: 260px;
        height: 260px;
        margin-top: 40px;
    }
}

/* =====================
   Services Section
===================== */

.services-section {
    padding: 90px 0;
    background: #ffffff;
}

/* Section header */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Accent line */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #1fa2ff);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::before {
    width: 100%;
}

/* Creative services subtle distinction */
.service-card.creative h3 {
    color: #1fa2ff;
}

/* CTA */
.services-cta {
    text-align: center;
    margin-top: 50px;
}


/* =====================
   Why Choose Us
===================== */

.why-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg,
            #f4f8fd 0%,
            #ffffff 100%);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
}

/* Left content */
.why-us-left h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.why-us-left p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

/* Right cards */
.why-us-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    padding: 26px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

/* Accent dot */
.why-card::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 22px;
    right: 22px;
    opacity: 0.8;
}

.why-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Hover */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {

    .why-us-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-us-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .why-us-right {
        grid-template-columns: 1fr;
    }

    .why-card::before {
        display: none;
    }
}

/* =====================
   Technology Stack (Image Cards)
===================== */

.tech-section {
    padding: 100px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f4f8fd 100%);
}



/* Grid layout */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* 🔥 THIS fixes your issue */
    gap: 32px;
    margin-top: 60px;
}




/* Card */
.tech-card {
    width: 160px;
    /* 🔥 REQUIRED */
    height: 120px;

    background: #ffffff;
    border-radius: 18px;
    padding: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);

    position: relative;
    overflow: hidden;
}


/* Logo image */
.tech-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.85;

    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover effect */
.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.tech-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Optional subtle top glow */
.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #1fa2ff);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-card:hover::before {
    width: 100%;
}

/* =====================
   Mobile Optimization
===================== */

@media (max-width: 768px) {
    .tech-section {
        padding: 60px 0;
    }

    .tech-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .tech-card {
        width: calc(50% - 10px);
        /* 2 per row */
        height: 100px;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .tech-card img {
        max-width: 90px;
        max-height: 48px;
    }
}



/* =====================
   About Page
===================== */

/* Hero */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f4f8fd 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 16px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content */
.about-content {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
}

/* Text */
.about-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Cards */
.about-points {
    display: grid;
    gap: 24px;
}

.about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.about-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* CTA */
.about-cta {
    padding: 90px 0;
    background: linear-gradient(135deg,
            #0A2540,
            #0d3b66);
    color: #ffffff;
    text-align: center;
}

.about-cta h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 28px;
}

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-text p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero h1 {
        font-size: 34px;
    }
}


/* =====================
   Contact Page
===================== */

/* Hero */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f4f8fd 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.contact-hero p {
    font-size: 16px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}

/* Info */
.contact-info h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.contact-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-item span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item a {
    font-size: 15px;
    color: #1fa2ff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Form */
.contact-form {
    background: #ffffff;
    padding: 36px 34px;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(62, 198, 255, 0.25);
}

/* Button already styled via .btn-primary */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .contact-form {
        padding: 30px 26px;
    }
}


/* Primary CTA Button (shared style) */
.btn-primary {
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0A2540, #0d3b66);
    color: #fff;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.25);
    transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.35);
    background: linear-gradient(135deg, #3EC6FF, #1fa2ff);
}

/* Focus (accessibility) */
.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(62, 198, 255, 0.4),
        0 12px 30px rgba(10, 37, 64, 0.35);
}



/* =====================
   Services Page
===================== */

/* Hero */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f4f8fd 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.services-hero p {
    font-size: 16px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section */
.services-page-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-page-section.creative-bg {
    background: #f8f9fa;
}

/* Grid */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.service-page-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-page-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-page-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.service-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

/* CTA */
.services-cta {
    padding: 90px 0;
    background: linear-gradient(135deg,
            #0A2540,
            #0d3b66);
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 28px;
}


@media (max-width: 900px) {

    .services-hero h1 {
        font-size: 34px;
    }

    .services-page-section {
        padding: 80px 0;
    }

}


/* =====================
   Portfolio Page
===================== */

/* Hero */
.portfolio-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f4f8fd 100%);
    text-align: center;
}

.portfolio-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.portfolio-hero p {
    font-size: 16px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section */
.portfolio-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.portfolio-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

/* Image placeholder */
.portfolio-image {
    height: 180px;
    background: linear-gradient(135deg,
            #e8f0fb,
            #f4f8fd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content */
.portfolio-content {
    padding: 22px 20px;
}

.portfolio-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.portfolio-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* CTA */
.portfolio-cta {
    padding: 90px 0;
    background: linear-gradient(135deg,
            #0A2540,
            #0d3b66);
    text-align: center;
    color: #ffffff;
}

.portfolio-cta h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.portfolio-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 28px;
}


@media (max-width: 900px) {

    .portfolio-hero h1 {
        font-size: 34px;
    }

    .portfolio-section {
        padding: 80px 0;
    }

}


.work-with-us-section {
    padding: 5px;
    background: linear-gradient(135deg,
            #0A2540,
            #0d3b66);
    border-radius: 13px;
    margin: 30px;
}

.work-with-us-card {
    background: linear-gradient(135deg, #0A2540, #0d3b66);
    border: 5px solid white;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    position: relative;
    /* important */
    overflow: hidden;
}



.work-with-left {
    width: 50%;
    overflow: hidden;
}

.work-with-right {
    width: 50%;
    color: white;
    margin-top: auto;
    margin-bottom: auto;
    z-index:2;
}

.work-with-right h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.work-with-right p {
    font-size: 20px;
    margin-bottom: 30px;
}

.work-with-right a {
    border: 2px solid white;
    border-radius: 999px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.work-with-right a:hover {
    color: #0A2540;
    transition: 0.3s;
    background: white;
}

#arrow-right {
    padding-left: 20px;
}

.work-with-right a:hover #arrow-right {
    padding-left: 30px;
    transition: 0.3s;
}




/*-----------*/

.tech-hero.scattered {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 250px;
    margin: auto;
}

/* Base icon */
.tech-icon {
    position: absolute;
    font-size: 45px;
    color: #9ccfff;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
}

/* All float */
.float {
    animation: float 5s ease-in-out infinite;
}

/* Scattered positions (designed randomness) */
.f1 {
    top: 10%;
    left: 12%;
}

.f2 {
    top: 22%;
    left: 38%;
}

.f3 {
    top: 15%;
    right: 30%;
}

.f4 {
    top: 48%;
    left: 8%;
}

.f5 {
    top: 42%;
    left: 50%;
}

.f6 {
    top: 55%;
    right: 10%;
}

.f7 {
    bottom: 18%;
    left: 22%;
}

.f8 {
    bottom: 12%;
    left: 45%;
}

.f9 {
    bottom: 20%;
    right: 22%;
}

.f10 {
    top: 30%;
    right: 70%;
}

/* Different animation delays so they feel independent */
.f1 {
    animation-delay: 0s;
}

.f2 {
    animation-delay: .4s;
}

.f3 {
    animation-delay: 0.8s;
}

.f4 {
    animation-delay: 1.2s;
}

.f5 {
    animation-delay: 1.6s;
}

.f6 {
    animation-delay: 2s;
}

.f7 {
    animation-delay: 2.4s;
}

.f8 {
    animation-delay: 2.8s;
}

.f9 {
    animation-delay: 3.2s;
}

.f10 {
    animation-delay: 3.6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width:1024px){

    .work-with-left{
        display:none;
    }

    .work-with-right{
        width:100%;
        text-align:center;
    }

    .work-with-us-card{
        justify-content:center;
        padding:30px;
    }

}

@media (max-width:768px){

    .work-with-left{
        display:none;
    }

    .work-with-right{
        width:100%;
        text-align:center;
    }

    .work-with-right h3{
        font-size:24px;
    }

    .work-with-right p{
        font-size:16px;
    }

    .work-with-right a{
        display:inline-flex;
        align-items:center;
        justify-content:center;
    }

}


/* =====================
   Cool Testimonials Carousel
===================== */

.home-testimonials {
    padding: 110px 0;
    background: #f8f9fa;
}

.testimonial-slider {
    position: relative;
    max-width: 100%;
    margin-top: 60px;
    overflow: hidden;
}

/* Track */
.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    align-items: center;
}

/* Card */
.testimonial-card {
    min-width: 320px;
    background: #fff;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    text-align: center;

    transform: scale(0.85);
    opacity: 0.6;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Focused card */
.testimonial-card.active {
    transform: scale(1);
    opacity: 1;
}

/* Text */
.testimonial-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.testimonial-card strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
}

.testimonial-card span {
    font-size: 13px;
    color: #777;
}

/* Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 5;
}

.testimonial-arrow:hover {
    background: var(--accent);
    color: #fff;
}

.testimonial-arrow.left {
    left: 10px;
}

.testimonial-arrow.right {
    right: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-track {
        gap: 20px;
    }

    .testimonial-card {
        min-width: 260px;
    }
}

.alert-danger-career {
    color: red;
    font-family: 'Segoe UI';
    list-style: none;
}

.alert-danger-career li {
    list-style: none;
}


.case-study-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f4f8fd 100%);
    text-align: center;
}

.case-study-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.case-study-hero p {
    font-size: 16px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* GRID SECTION */
.case-study-grid {
    padding: 60px 0;
}

.case-study-grid .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD STYLE */
.case-card {
    display: block;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.case-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.case-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.case-card span {
    font-weight: 600;
    color: #007bff;
}

/* Tablet */
@media (max-width: 992px) {
    .case-study-grid .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .case-study-grid .grid {
        grid-template-columns: 1fr;
    }

    .case-study-hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .case-study-hero {
        padding: 100px 0 60px;
    }

    .case-study-hero h1 {
        font-size: 30px;
    }

    .case-study-hero p {
        font-size: 15px;
    }
}




/*==================================
========STATIC CASE STUDY CSS=======
===================================*/

.case-hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
    text-align: center;
}

.case-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}

.case-hero p {
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.case-tags span {
    display: inline-block;
    padding: 8px 18px;
    margin: 5px;
    border-radius: 30px;
    background: #e9f2ff;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.case-section {
    padding: 50px 0;
}

.case-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.case-section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--primary);
    display: block;
    margin-top: 12px;
}

.case-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.case-section ul {
    margin-top: 20px;
    padding-left: 18px;
}

.case-section ul li {
    margin-bottom: 10px;
    color: #555;
}

.light-bg {
    background: #f9fbff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.feature-card {
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.tech-card {
    padding: 10px 20px;
    border-radius: 25px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.result-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.result-grid div {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.result-grid h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.result-grid p {
    font-size: 15px;
    color: #666;
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .result-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .case-hero h1 {
        font-size: 32px;
    }

    .case-section {
        padding: 80px 0;
    }
}