/* ==========================================================
   HOME PAGE – VERSION 2
   ========================================================== */

/* ---------------------------
   HERO
--------------------------- */

.hero-v2 {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        #003b73 100%
    );
    color: #fff;
}

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

.hero-v2 h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-v2 p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-card {
    background: #fff;
    color: var(--color-text);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.hero-card h4 {
    margin-bottom: 16px;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-card li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* ---------------------------
   SECTION TITLES
--------------------------- */

.section-title {
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--color-muted);
}

/* ---------------------------
   SERVICES
--------------------------- */

.services-v2 .service-box {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 5px solid var(--color-accent);
}

.services-v2 .service-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.services-v2 h3 {
    margin-bottom: 12px;
}

/* ---------------------------
   INDUSTRIES
--------------------------- */

.industries .industry {
    background: #fff;
    padding: 22px;
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.industries .industry:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ---------------------------
   WHY US
--------------------------- */

.why-v2 p {
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 700;
}

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

.stat {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat strong {
    display: block;
    font-size: 38px;
    color: var(--color-primary);
}

.stat span {
    font-weight: 500;
    color: var(--color-muted);
}

/* ---------------------------
   PROCESS
--------------------------- */

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.process-step span {
    font-size: 40px;
    font-weight: 700;
    color: rgba(0,80,157,0.15);
    position: absolute;
    top: 20px;
    right: 20px;
}

.process-step h4 {
    margin-bottom: 10px;
}

/* ---------------------------
   TESTIMONIALS
--------------------------- */

.testimonial {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-style: italic;
}

.testimonial strong {
    display: block;
    margin-top: 16px;
    font-style: normal;
    color: var(--color-primary);
}

/* ---------------------------
   CTA
--------------------------- */

.cta-v2 {
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        var(--color-accent),
        #17b6c0
    );
    text-align: center;
}

.cta-v2 h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #003c40;
}

.cta-v2 p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #003c40;
}

/* ---------------------------
   RESPONSIVE
--------------------------- */

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

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

    .banner-cover-img {
    max-width: 300px;
    text-align: center;
    margin-inline: auto;
}
}

@media (max-width: 575px) {
    .hero-v2 h1 {
        font-size: 36px;
    }

    .cta-v2 h2 {
        font-size: 30px;
    }
}


/* ================================
   PREMIUM HERO
================================ */

.hero-premium {
    position: relative;
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(44,210,221,0.25),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #001c3d,
            var(--color-primary)
        );
    overflow: hidden;
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--color-accent);
}

.hero-premium h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero-premium p {
    font-size: 18px;
    max-width: 560px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
}

.hero-premium-actions {
    display: flex;
    gap: 18px;
}

.hero-premium-visual {
    display: flex;
    justify-content: center;
}

/* Glass card */
.glass-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 36px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.glass-card h4 {
    margin-bottom: 18px;
    font-size: 22px;
    color: #fff;
}

.glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.glass-card li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 16px;
}

.glass-card strong {
    color: var(--color-accent);
}

.hero-accent-line {
    position: absolute;
    top: 0;
    left: -30%;
    width: 60%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-accent),
        transparent
    );
    animation: accent-slide 6s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes accent-slide {
    0% {
        left: -30%;
    }
    50% {
        left: 70%;
    }
    100% {
        left: -30%;
    }
}


.hero-metrics {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.hero-metrics strong {
    display: block;
    font-size: 34px;
    color: var(--color-accent);
}

.hero-metrics span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.banner-cover-img {
    position: relative
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    position: relative;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.section-heading p {
    font-size: 17px;
    color: var(--color-muted);
}

/* Decorative underline */
.section-heading::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-primary)
    );
    margin: 30px auto 0;
    border-radius: 4px;
}

.section-heading.no-decore:after {
    display: none;
}

.section-heading.no-decore {    
    margin-top: 40px;
}
/* Dark backgrounds support */
.bg-primary .section-heading h2,
.bg-primary .section-heading p,
.bg-primary .section-eyebrow {
    color: #fff;
}

.bg-primary .section-heading::after {
    background: linear-gradient(
        90deg,
        #fff,
        var(--color-accent)
    );
}

/* ================================
   WHY CHOOSE US – PREMIUM
================================ */

.why-premium {
    background: var(--color-light);
}

.why-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

/* Image */
.why-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}

/* Cards */
.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.why-card {
    background: #fff;
    padding: 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Inline stats */
.why-stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.why-stats-inline strong {
    display: block;
    font-size: 32px;
    color: var(--color-primary);
}

.why-stats-inline span {
    font-size: 14px;
    color: var(--color-muted);
}

/* ================================
   TEAM SECTION – HOME
================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-photo {
    display: none;
}

/* Card */
.team-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* Photo */
.team-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Info */
.team-info {
    padding: 26px;
    position: relative;
}

.team-info h4 {
    margin-bottom: 6px;
    font-size: 20px;
}

.team-role {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.team-info p {
    font-size: 15px;
    color: var(--color-muted);
}

/* LinkedIn */
.team-linkedin {
    position: absolute;
    top: 26px;
    right: 26px;
    color: var(--color-muted);
    transition: color 0.3s ease;
}

.team-linkedin:hover {
    color: var(--color-primary);
}

/* ================================
   CTA – PREMIUM
================================ */

.cta-premium {
    /* background: var(--color-light); */
}

/* CTA Box */
.cta-box {
    position: relative;
    background:
        radial-gradient(
            circle at top right,
            rgba(44,210,221,0.25),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            var(--color-primary),
            #002a55
        );
    border-radius: 24px;
    padding: 90px 80px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* Glow effect */
.cta-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        transparent,
        var(--color-accent)
    );
    opacity: 0.25;
    filter: blur(30px);
}

/* Content */
.cta-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.cta-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.cta-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 34px;
    color: rgba(255,255,255,0.9);
}

/* Actions */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
}

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

/* Trust points */
.cta-trust {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* Subtle motion */
.cta-box {
    animation: ctaFloat 8s ease-in-out infinite;
}

@keyframes ctaFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* ================================
   TESTIMONIALS – PREMIUM
================================ */

.testimonials-premium {
    background: var(--color-light);
    border-top: 3px solid var(--color-accent);
}

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

/* Intro */
.testimonials-intro h2 {
    margin-bottom: 16px;
}

.testimonials-intro p {
    font-size: 17px;
    color: var(--color-muted);
}

/* Cards */
.testimonials-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.testimonial-card {
    background: #fff;
    padding: 34px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 20px;
    right: 26px;
    font-size: 60px;
    line-height: 1;
    color: rgba(0,80,157,0.08);
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 26px;
    color: var(--color-text);
}

/* Meta */
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-meta img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-meta strong {
    display: block;
    font-size: 15px;
}

.testimonial-meta span {
    font-size: 13px;
    color: var(--color-muted);
}

/* ================================
   SERVICES PAGE
================================ */

/* Overview */
.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Services list */
.service-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 120px;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

/* Content */
.service-content {
    position: relative;
}

.service-count {
    font-size: 72px;
    font-weight: 700;
    color: rgba(0,80,157,0.08);
    position: absolute;
    top: -20px;
    left: 0;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16.5px;
    max-width: 520px;
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

/* Visual */
.service-visual img,
.service-placeholder {
    width: 100%;
    height: 360px;
    border-radius: 18px;
    object-fit: cover;
    background: #e5e7eb;
}

/* Responsive */
@media (max-width: 991px) {
    .services-overview-grid,
    .service-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row {
        margin-bottom: 80px;
    }

    .service-row:last-child {
        margin-bottom: 0;
    }

    .service-count {
        font-size: 56px;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .cta-box {
        padding: 70px 40px;
    }

    .cta-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .cta-actions,
    .cta-trust {
        flex-direction: column;
        gap: 14px;
    }
}


/* Responsive */
@media (max-width: 767px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .hero-premium-actions {
        flex-direction: column;
    }
    .grid-4 {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Responsive */
@media (max-width: 991px) {
    .why-premium-grid {
        grid-template-columns: 1fr;
    }

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

    .why-stats-inline {
        flex-direction: column;
        gap: 20px;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .hero-premium-grid {
        grid-template-columns: 1fr;
    }

    .hero-premium {
        padding: 70px 0;
    }
}

@media (max-width: 575px) {
    .hero-premium h1 {
        font-size: 38px;
    }
      .section-heading h2 {
        font-size: 30px;
    }
}
