/*
 Theme Name: JIC OnePage
 Theme URI: https://japanindia-consulting.jp
 Author: Tanu
 Description: Single-page custom theme for Japan India Consulting.
 Version: 2.0
*/

/* ---------- Reset & Base ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;          /* dark text */
    background: #ffffff;     /* white background */
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---------- Header / Nav ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.site-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.06em;
    color: #111827;
}

.site-logo span {
    color: #20bff5;         /* cyan strip from logo */
}

.main-nav a {
    margin-left: 22px;
    font-size: 14px;
    color: #111827;
    opacity: 0.82;
}

.main-nav a:hover {
    opacity: 1;
}

/* Call Now pill */

.nav-cta {
    margin-left: 26px;
    padding: 9px 22px;
    border-radius: 999px;
    border: none;
    /* cyan -> deep blue, matching logo strip */
    background: linear-gradient(135deg, #20bff5, #0f75d4);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 14px 30px rgba(15, 118, 212, 0.35);
    cursor: pointer;
    transition: all 0.18s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(15, 118, 212, 0.45);
}


.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45);
}

/* =========================
   JIC HERO – LIGHT + GRID + WAVE
   ========================= */

.hero-jic {
    position: relative;
    padding: 120px 0 150px;
    overflow: hidden;

    /* soft light background, top-left brighter */
    background:
        radial-gradient(circle at 0% 0%, #e0f7ff 0, #f3f7ff 38%, #ffffff 100%);
    color: #0f172a;
}

/* translucent grid overlay (like BizBud) */
.hero-jic::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* two perpendicular gradients to form squares */
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.22) 1px, transparent 1px);
    background-size: 70px 70px;   /* slightly tighter grid */
    opacity: 0.6;
    /* normal blend so it actually shows */
    mix-blend-mode: normal;
}


/* peaky gradient wave at bottom */
.hero-jic::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -220px;        /* move it lower so wave is higher/peakier */
    height: 340px;

    /* blue / cyan wave (no violet) */
    background:
        radial-gradient(circle at 15% 0, #20bff5 0, rgba(32, 191, 245, 0.15) 45%, transparent 70%),
        radial-gradient(circle at 60% 0, #0ea5e9 0, rgba(14, 165, 233, 0.18) 50%, transparent 72%),
        radial-gradient(circle at 100% 10%, #0f75d4 0, rgba(15, 117, 212, 0.2) 45%, transparent 70%);

    opacity: 0.98;

    /* taller, sharper curve -> more “peaky” */
    border-top-left-radius: 55% 150%;
    border-top-right-radius: 55% 150%;

    /* slight skew to mimic BizBud wave shape */
    transform-origin: top center;
    transform: translateY(30px) skewY(-6deg);
}


/* hero content container */
.hero-jic-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;      /* sit above ::before & ::after */
    z-index: 1;
}

.hero-jic-copy {
    max-width: 640px;
}

.hero-jic-kicker {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #20bff5;          /* cyan from logo strip */
    margin-bottom: 12px;
}

.hero-jic-title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 16px;
    color: #0b1120;          /* very dark navy text */
}

.hero-jic-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    max-width: 560px;
}

.hero-jic-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* hero buttons (using brand cyan + purple) */
.btn-jic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
}

.btn-jic-primary {
    background: linear-gradient(135deg, #20bff5, #0f75d4);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 118, 212, 0.35);
}

.btn-jic-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(15, 118, 212, 0.45);
}


.btn-jic-outline {
    border-color: #cbd5f5;
    color: #111827;
    background: #ffffff;
}
.btn-jic-outline:hover {
    background: #eef2ff;
}

/* responsive tweaks */
@media (max-width: 960px) {
    .hero-jic {
        padding: 100px 0 135px;
    }
    .hero-jic-title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .hero-jic {
        padding: 90px 0 120px;
    }
    .hero-jic-title {
        font-size: 32px;
    }
    .hero-jic-subtitle {
        font-size: 15px;
    }
}

/* ---------- Responsive ---------- */

@media (min-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    }
}

@media (max-width: 960px) {
    .main-nav {
        display: none; /* we can add a mobile menu later */
    }

    .hero {
        padding: 100px 0 120px;
    }

    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 90px 0 110px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }
}
/* services */

/* =========================
   SERVICES – GRID CARDS
   ========================= */

.services-jic {
    padding: 80px 0 90px;
    background: linear-gradient(to bottom, #f7fbff 0, #ffffff 40%);
}

.services-jic-inner {
    position: relative;
}

.services-jic-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.services-kicker {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #20bff5;
    margin: 0 0 8px;
}

.services-title {
    font-size: 28px;
    margin: 0 0 10px;
    color: #0b1120;
}

.services-subtitle {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
}

/* Card grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* Individual card */

.service-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 20px 20px 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: all 0.18s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
                rgba(32, 191, 245, 0.08) 0,
                transparent 55%);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    border-color: rgba(32, 191, 245, 0.55);
}

.service-card:hover::before {
    opacity: 1;
}

/* Icon circle */

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e0f6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(32, 191, 245, 0.35);
    position: relative;
    z-index: 1;
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: #0284c7;      /* deeper cyan */
}

/* Titles & text */

.service-card-title {
    font-size: 17px;
    margin: 0 0 6px;
    color: #0b1120;
    position: relative;
    z-index: 1;
}

.service-card-text {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #64748b;
    position: relative;
    z-index: 1;
}

.service-card-list li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.service-card-list li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #20bff5;
}

/* Responsive */

@media (max-width: 960px) {
    .services-jic {
        padding: 64px 0 72px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-title {
        font-size: 24px;
    }
}
/* =========================
   ABOUT SECTION (JIC)
   ========================= */

.about-jic {
    padding: 96px 0 80px;
    background: #f9fbff;
}

.about-jic-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
    gap: 56px;
    align-items: center;
}

/* LEFT: IMAGE / COLLAGE */

.about-visual {
    position: relative;
}

.about-image-frame {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.20);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.about-image-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.about-chip {
    position: absolute;
    left: 10%;
    bottom: -20px;
    transform: translateY(0);
    background: #020617;
    border-radius: 999px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e5f6ff;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.4);
}

.about-chip-label {
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

/* RIGHT: COPY */

.about-copy {
    max-width: 640px;
}

.about-kicker {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #20bff5;
    margin: 0 0 10px;
}

.about-title {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #0b1120;
}

.about-text {
    font-size: 15px;
    color: #4b5563;
    margin: 0 0 10px;
}

.about-list {
    margin: 4px 0 10px 18px;
    padding: 0;
    font-size: 14px;
    color: #4b5563;
}

.about-list li {
    margin-bottom: 4px;
}

/* Collapsible more text */

.about-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.about-more.is-open {
    max-height: 1000px; /* plenty for full text */
}

.about-btn {
    margin-top: 14px;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    background: #0b1120;
    color: #f9fafb;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

.about-btn:hover {
    background: #020617;
}

.about-btn-arrow {
    font-size: 15px;
}

/* Stats */

.about-stats {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-stat-number {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}

.about-stat-plus {
    font-size: 22px;
    font-weight: 600;
    color: #20bff5;
    margin-left: 2px;
}

.about-stat-label {
    margin: 4px 0 0;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */

@media (max-width: 960px) {
    .about-jic-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-chip {
        left: 8%;
        bottom: -18px;
    }
}

@media (max-width: 640px) {
    .about-jic {
        padding: 72px 0 70px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}
