﻿

:root {
    --navy: #0f172a;
    --blue: #2563eb;
    --purple: #7c3aed;
    --cyan: #06b6d4;
    --orange: #f97316;
    --pink: #ec4899;
    --text: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
}

/* Full Hero */
.hero-full {
    background: #0a2a4a;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
}

    .hero-full::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,rgba(6,182,212,0.15),transparent);
        border-radius: 50%;
        animation: pulse 8s ease-in-out infinite;
    }

@keyframes pulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-full::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,rgba(249,115,22,0.12),transparent);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(6,182,212,0.15);
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 28px;
    color: #22d3ee;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.hero-heading {
    font-family: 'Inter',serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-gradient {
    background: linear-gradient(135deg,#22d3ee,#2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-hero-primary {
    padding: 20px 48px;
    background: linear-gradient(135deg,#f97316,#ec4899);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 24px rgba(249,115,22,0.35);
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 36px rgba(249,115,22,0.45);
    }

.btn-hero-ghost {
    padding: 18px 44px;
    background: transparent;
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.25);
    transition: 0.3s;
}

    .btn-hero-ghost:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.1);
    }

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-stat-box {
    background: rgba(15,35,55,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

    .hero-stat-box:hover {
        background: rgba(20,40,60,0.9);
        transform: translateY(-6px);
    }

.stat-value {
    font-family: 'Inter',serif;
    font-size: 3rem;
    font-weight: 900;
    color: #22d3ee;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    line-height: 1.5;
}

/* What is Section */
.what-is-section {
    padding: 100px 40px;
    background: #fff;
}

.what-is-container {
    max-width: 1300px;
    margin: 0 auto;
}

.what-is-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.what-is-title {
    font-family: 'Inter',serif;
    font-size: 40px;
    font-weight: 700;
    color: #0a3a5a;
    margin-bottom: 20px;
}

.what-is-subtitle {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    padding:40px;
}

.what-is-text p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.what-is-visual {
    background: linear-gradient(135deg,#0a3a5a,#1e5a7a);
    border-radius: 24px;
    padding: 80px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-circles {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(139,92,246,0.1);
    border: 2px solid rgba(139,92,246,0.3);
}

.circle-2 {
    width: 220px;
    height: 220px;
    background: rgba(139,92,246,0.15);
    border: 2px solid rgba(139,92,246,0.4);
}

.circle-3 {
    width: 140px;
    height: 140px;
    background: #fbbf24;
    box-shadow: 0 0 40px rgba(251,191,36,0.6);
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.triangle-top {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid #fbbf24;
}

.triangle-bottom {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid #fbbf24;
}

.dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(251,191,36,0.8);
}

.dot-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.dot-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-4 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.dot-5 {
    top: 30%;
    right: 30%;
}

.dot-6 {
    bottom: 30%;
    left: 30%;
}

/* Services Grid */
.services-wrapper {
    max-width: 1400px;
    margin: 0px auto 100px;
    padding: 0 40px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg,#fef3c7,#fde68a);
    color: #92400e;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-heading {
    font-family: 'Inter',serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.service-box {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 30px 36px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

    .service-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg,#06b6d4,#2563eb,#7c3aed);
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.4s;
    }

    .service-box:hover::after {
        transform: scaleX(1);
    }

    .service-box:hover {
        border-color: #06b6d4;
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Approach Section */
.approach-section {
    background: linear-gradient(135deg,#f8fafc,#e2e8f0);
    padding: 40px 40px;
    margin: 80px 0;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
    margin-top: 60px;
}

.approach-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    display: flex;
    gap: 24px;
    transition: 0.3s;
}

    .approach-card:hover {
        transform: translateX(8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

.approach-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg,#06b6d4,#2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter',serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(6,182,212,0.3);
}

.approach-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.approach-content p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    text-align: justify;
}

/* Why Choose Section */
.why-choose {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
    text-align: center;
}

.why-left {
    max-width: 900px;
    margin: 0 auto;
}

    .why-left h2 {
        font-family: 'Inter',serif;
        font-size: 35px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .why-left p {
        font-size: 17px;
        color: var(--text);
        line-height: 1.8;
        margin-bottom: 32px;
    }

/* FAQ Section */
.faq-section {
    /*padding: 100px 40px;*/
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-family: 'Inter',serif;
    font-size: 40px;
    font-weight: 700;
    color: #0a3a5a;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 17px;
    color: var(--text-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

    .faq-item:first-child {
        border-top: 1px solid var(--border);
    }

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
}

    .faq-question-btn:hover {
        color: #06b6d4;
    }

.faq-q-text {
    font-size: 17px;
    font-weight: 600;
    color: #0a3a5a;
    flex: 1;
}

.faq-question-btn:hover .faq-q-text {
    color: #06b6d4;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-toggle-icon svg {
    width: 20px;
    height: 20px;
    fill: #0a3a5a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    padding: 0 0 28px 0;
}

/* CTA Section */
.cta-fullwidth {
    background: linear-gradient(135deg,#0f172a,#1e293b);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-fullwidth::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(6,182,212,0.15),transparent);
        border-radius: 50%;
    }

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

    .cta-box h2 {
        font-family: 'Inter',serif;
        font-size: 40px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .cta-box p {
        font-size: 19px;
        color: rgba(255,255,255,0.85);
        margin-bottom: 40px;
        line-height: 1.7;
    }

/* Responsive */
@media(max-width:1024px) {
    .hero-stats-row {
        grid-template-columns: repeat(2,1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

    .what-is-content {
        grid-template-columns: 1fr;
    }

    .what-is-visual {
        min-height: 350px;
        padding: 60px;
    }
}

@media(max-width:768px) {
    .hero-heading {
        font-size: 2.6rem;
    }

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

    .hero-full {
        /*padding: 80px 32px 160px;*/
    }

    .section-heading {
        font-size: 2.4rem;
    }

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

    .what-is-title {
        font-size: 2.2rem;
    }

    .what-is-visual {
        padding: 40px;
    }

    .visual-circles {
        width: 250px;
        height: 250px;
    }

    .circle-1 {
        width: 250px;
        height: 250px;
    }

    .circle-2 {
        width: 180px;
        height: 180px;
    }

    .circle-3 {
        width: 110px;
        height: 110px;
    }
}
