﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Solutek Dark Palette */
    --primary: #ff4d1c;
    /* Vibrant Orange */
    --primary-dark: #e6390f;
    --navy-dark: #0a0d14;
    /* Deep Background */
    --navy-medium: #121821;
    /* Card/Section Background */
    --navy-light: #1c2431;

    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-muted: #64748b;

    --white: #ffffff;
    --black: #000000;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --border-glass: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    /* Global White Background */
    color: var(--navy-dark);
    /* Global Dark Text */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 28, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    /* Visible on white */
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header Styles */
.top-bar {
    background-color: var(--navy-dark);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 30px;
}

.top-info span i {
    color: var(--primary);
    margin-right: 8px;
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a:hover {
    color: var(--primary);
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 13, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--primary);
    font-weight: 800;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    margin-left: -2px;
    /* Slight alignment adjustment */
}

.logo .logo-tagline {
    font-size: 0.55rem;
    /* Very small */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    margin-top: 0;
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 80px 0 140px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    position: relative;
}

.hero-content {
    flex: 0 0 550px;
    z-index: 5;
    position: relative;
    padding: 0;
    margin: 0;
}

.hero-tagline {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 40px;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-expert {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.expert-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.expert-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.expert-text span {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Geometric Mask Hero */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 100%;
    z-index: 1;
}

.mask-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.mask-x {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 0% 100%);
    position: absolute;
    right: 0;
    z-index: 1;
}

.mask-secondary {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    right: 20%;
    top: 20%;
    z-index: 0;
    opacity: 0.8;
}

/* Stats Section */
.stats-bar {
    background-color: var(--primary);
    padding: 60px 0;
    position: relative;
    margin-top: -80px;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(255, 77, 28, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Service Cards (White in Solutek) */
.services-section {
    padding: 120px 0;
    background-color: #f8fafc;
    /* Light grey for contrast */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--navy-dark);
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #fff1ed;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-muted);
}

.card-img-bottom {
    margin-top: 30px;
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

/* Methodology Section */
.methodology-section {
    padding: 120px 0;
    background-color: var(--white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.method-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.method-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 77, 28, 0.1);
    margin-bottom: 20px;
}

.method-card h3 {
    color: var(--navy-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer (Dark) */
/* Footer (White) */
footer {
    background-color: var(--white);
    padding: 100px 0 40px;
    color: var(--navy-dark);
    /* Dark text */
    border-top: 1px solid #f1f5f9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--navy-dark);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-btns,
    .hero-expert {
        justify-content: center;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .stats-bar {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   NEW HOMEPAGE STYLES (2026 Rebuild - White/Dark Alternating)
   ========================================= */

/* 0. GLOBAL RESET & BODY */
body {
    background-color: var(--white);
    color: var(--navy-dark);
}

/* 1. HEADER (ADJUSTMENT FOR WHITE THEME) */
header {
    background-color: rgba(255, 255, 255, 0.95);
    /* White Header */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: var(--navy-dark);
}

.nav-link:hover {
    color: var(--primary);
}

.logo span {
    color: var(--primary);
}

/* 2. HERO SECTION (WHITE) */
.hero-new {
    background-color: var(--white);
    padding: 180px 0 100px;
    /* Reduced bottom padding, no float overlap */
    position: relative;
    text-align: center;
    border-bottom: none;
    /* Removed curve for cleaner alternating lines */
    z-index: 1;
}

/* Hero Content */
.hero-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    /* Align text to left */
}

.hero-text-side {
    z-index: 5;
}

.hero-new h5 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.hero-new h1 {
    color: var(--navy-dark);
    font-size: 4rem;
    /* Adjusted for split layout */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-new h1 span {
    color: var(--primary);
}

.hero-new p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 90%;
    /* Limit width for readability */
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    /* Left align buttons */
    gap: 20px;
}

/* Hero Visual Side */
.hero-visual-side {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-simple {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Buttons */
.hero-new .btn-outline {
    color: var(--navy-dark);
    border-color: var(--navy-dark);
}

.hero-new .btn-outline:hover {
    background-color: var(--navy-dark);
    color: var(--white);
}

/* 3. SERVICES SECTION (DARK) */
.services-floating {
    background-color: var(--navy-dark);
    padding: 100px 0;
    margin-top: 0;
    /* No negative margin */
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    /* Slight skew top */
}

.floating-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.floating-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    max-width: 600px;
}

.floating-header .section-tag {
    color: var(--primary);
}

/* Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card-new {
    background-color: var(--white);
    /* White Card */
    padding: 40px 30px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid var(--primary);
}

.svc-num {
    color: #e2e8f0;
    /* Visible Light Grey on White */
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.svc-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card-new h3 {
    color: var(--navy-dark);
    /* Dark Text */
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card-new p {
    color: var(--text-muted);
    /* Muted Dark Text */
    margin-bottom: 25px;
    flex-grow: 1;
}

.svc-link {
    color: var(--navy-dark);
    /* Dark Link */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-link:hover {
    color: var(--primary);
    gap: 15px;
}

/* 4. ABOUT SECTION (WHITE) */
.section-dark-curved {
    background-color: var(--white);
    padding: 120px 0;
    color: var(--navy-dark);
    clip-path: none;
}

.section-dark-curved h2 {
    color: var(--navy-dark);
    font-size: 3rem;
    margin-bottom: 30px;
}

.section-dark-curved p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.check-list li {
    color: var(--navy-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list i {
    color: var(--primary);
    background: rgba(255, 77, 28, 0.1);
    padding: 8px;
    border-radius: 50%;
}

/* Double Oval Image Layout */
.about-collage {
    position: relative;
    height: 500px;
    /* Specific height for positioning */
    display: flex;
    justify-content: center;
    align-items: center;
}

.oval-container-1,
.oval-container-2 {
    position: absolute;
    width: 220px;
    height: 380px;
    border-radius: 150px;
    /* Heavy pill shape */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
    z-index: 2;
}

.oval-container-1 {
    left: 20px;
    top: 20px;
    transform: rotate(-3deg);
}

.oval-container-2 {
    right: 20px;
    bottom: 20px;
    transform: rotate(3deg);
    z-index: 3;
}

.oval-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-badge-center {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 50px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(255, 77, 28, 0.4);
    border: 4px solid var(--white);
}

.exp-badge-center h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.exp-badge-center span {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Decorative Orbits */
.orbit-line-1 {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px solid rgba(255, 77, 28, 0.3);
    top: 5%;
    left: 5%;
    z-index: 1;
    animation: rotateOrbit 20s linear infinite;
}

.orbit-line-2 {
    position: absolute;
    width: 110%;
    height: 80%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    border: 1px dashed rgba(10, 13, 20, 0.1);
    /* Dark grey dashed */
    top: 10%;
    left: -5%;
    z-index: 0;
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 5. STATS SECTION (DARK) */
.stats-new {
    background-color: var(--navy-dark);
    padding: 80px 0;
    margin-top: 0;
}

.stats-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.stat-n-item h4 {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-n-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero-grid-split,
    .about-grid-new {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-new p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual-side {
        margin-top: 40px;
    }

    .hero-new h1 {
        font-size: 3rem;
    }

    .floating-header {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================================

    /* =========================================
   INTERNAL PAGE UTILITIES
   ========================================= */

/* Use these for consistent alternating sections */
.section-white {
    background-color: var(--white);
    color: var(--navy-dark);
    padding: 100px 0;
}

.section-dark {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 100px 0;
}

/* Internal Page Hero (White) */
.page-hero {
    background-color: var(--white);
    padding: 180px 0 80px;
    /* Top padding clears fixed/absolute header if needed */
    text-align: center;
}

.page-hero h1 {
    color: var(--navy-dark);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Internal Page Header (Dark Variant if needed) */
/* .page-hero-dark { ... } */

/* Card Styles for Internal Pages */
.card-white {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-dark {
    background: var(--navy-light);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   GLOBAL TYPOGRAPHY & SPACING FIXES
   ========================================= */
.section-white,
.section-dark {
    padding: 100px 0;
    /* Generous padding */
}

.about-grid-new {
    gap: 100px;
    /* Better separation between text and image */
}

h2 {
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

p {
    line-height: 1.9;
    margin-bottom: 30px;
}

.section-tag {
    margin-bottom: 25px;
    display: inline-block;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .about-grid-new {
        gap: 60px;
    }

    .section-white,
    .section-dark {
        padding: 80px 0;
    }
}