@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #06b6d4, #3b82f6);
    border-radius: 20px;
}

/* Container */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Padding */
.section-padding {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(
        90deg,
        #06b6d4,
        #3b82f6,
        #8b5cf6
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Background */
.hero-bg {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
        rgba(6, 182, 212, 0.15),
        transparent 35%),

        radial-gradient(circle at bottom right,
        rgba(59, 130, 246, 0.15),
        transparent 35%);
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.03) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.03) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
    pointer-events: none;
}

/* Hero */
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.8;
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.7rem 1.3rem;

    border-radius: 999px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(12px);

    font-size: 0.9rem;
    font-weight: 600;
}

/* Glass Effect */
.glass {
    background: rgba(15, 23, 42, 0.7);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.95rem 2rem;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #06b6d4,
        #3b82f6
    );

    color: white;
    font-weight: 600;

    transition: all 0.3s ease;

    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(6,182,212,0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.95rem 2rem;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.05);

    color: white;
    font-weight: 600;

    transition: all 0.3s ease;

    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);

    transform: translateY(-4px);
}

/* Navbar */
.nav-link {
    color: #cbd5e1;
    font-weight: 500;

    transition: all 0.3s ease;

    text-decoration: none;
}

.nav-link:hover {
    color: #22d3ee;
}

.mobile-link {
    color: #e2e8f0;

    padding: 0.9rem 1rem;

    border-radius: 12px;

    background: rgba(255,255,255,0.03);

    transition: all 0.3s ease;

    text-decoration: none;
}

.mobile-link:hover {
    background: rgba(255,255,255,0.08);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

.section-header p {
    max-width: 700px;
    margin: 1.5rem auto 0;

    color: #94a3b8;
    font-size: 1.1rem;
}

/* Cards */
.service-card,
.stat-card,
.feature-mini-card {
    background: rgba(15, 23, 42, 0.75);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(15px);

    border-radius: 28px;

    padding: 2rem;

    transition: all 0.4s ease;
}

.service-card:hover,
.stat-card:hover,
.feature-mini-card:hover {
    transform: translateY(-10px);

    border-color: rgba(34,211,238,0.4);

    box-shadow:
        0 25px 45px rgba(6,182,212,0.12);
}

/* Mobile Cards */
@media (max-width: 768px) {

    .service-card,
    .stat-card,
    .feature-mini-card {

        padding: 1.75rem;
        border-radius: 24px;
    }
}

/* Card Typography */
.service-card h3,
.stat-card h3,
.feature-mini-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p,
.feature-mini-card p {
    margin-top: 1rem;
    color: #94a3b8;
}

/* Icons */
.service-icon {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    font-size: 2rem;

    background:
        linear-gradient(
            135deg,
            rgba(6,182,212,0.15),
            rgba(59,130,246,0.15)
        );

    color: #22d3ee;

    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}

/* Counter */
.counter {
    font-size: 3rem;
    font-weight: 800;

    color: #22d3ee;
}

@media (max-width: 768px) {

    .counter {
        font-size: 2.2rem;
    }
}

/* Inputs */
input,
textarea,
select {
    color: white;
}

input::placeholder,
textarea::placeholder {
    color: #64748b;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow:
        0 0 0 3px rgba(34,211,238,0.2);
}

/* Footer */
footer {
    background: rgba(2,6,23,0.9);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes floating {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

/* Mobile Optimization */
@media (max-width: 640px) {

    body {
        font-size: 15px;
    }

    .hero-title {
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .service-card h3,
    .stat-card h3,
    .feature-mini-card h3 {
        font-size: 1.25rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent Horizontal Scroll */
body,
html {
    overflow-x: hidden;
}


/* ==========================================
   RESPONSIVE NAVBAR
========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.0rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

/* Logo */

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    width: auto;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Desktop Menu */

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Active Link */

.nav-link.active {
    color: #22d3ee;
}

/* Mobile Button */

.menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.75rem;
    cursor: pointer;
}

/* Mobile Menu */

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
}

.mobile-menu.active {
    display: flex;
}

/* Tablet */

@media (max-width: 1024px) {

    .desktop-menu {
        gap: 1rem;
    }

    .logo {
        height: 60px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .navbar-content {
        min-height: 70px;
    }

    .desktop-menu {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .logo {
        height: 50px;
        max-width: 180px;
    }

    .mobile-link {
        display: block;
        width: 100%;
    }
}

/* Small Mobile */

@media (max-width: 480px) {

    .logo {
        height: 42px;
        max-width: 150px;
    }

    .container-custom {
        padding: 0 0rem;
    }
}

/* ==========================================
   FOOTER
========================================== */

.footer {
    background: rgba(2, 6, 23, 0.95);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #22d3ee;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: #22d3ee;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    color: white;
    text-decoration: none;

    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(
        135deg,
        #06b6d4,
        #3b82f6
    );

    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 2rem;

    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: #64748b;
}

.footer-policy {
    display: flex;
    gap: 1.5rem;
}

.footer-policy a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: #22d3ee;
}

/* Tablet */

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-policy {
        flex-direction: column;
        gap: 0.8rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

.leadership-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    background: rgba(34,211,238,.1);
    color: #22d3ee;
    padding: 10px 20px;
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-top: 2rem;
    line-height: 1.1;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg,#06b6d4,#3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    margin-top: 2rem;
    color: #94a3b8;
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.2);
    padding: 1rem 2rem;
    border-radius: 999px;
}

.hero-grid,
.team-grid,
.values-grid,
.stats-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: repeat(2,1fr);
}

.feature-card,
.value-card,
.stat-card {
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
}

.ceo-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    padding: 3rem;
    border-radius: 30px;
}

.ceo-image img,
.leader-card img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.ceo-name {
    font-size: 3rem;
    font-weight: 800;
}

.ceo-role,
.leader-role {
    color: #22d3ee;
    margin-top: .5rem;
}

.ceo-quote {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid #22d3ee;
    color: #94a3b8;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-grid,
.values-grid,
.stats-grid {
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
}

.leader-card {
    background: rgba(255,255,255,.05);
    border-radius: 30px;
    overflow: hidden;
    transition: .3s;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-content {
    padding: 2rem;
}

.values-section,
.cta-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
}

.section-header p {
    color: #94a3b8;
    margin-top: 1rem;
}

@media (max-width: 992px) {

    .hero-content,
    .ceo-card {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .ceo-name {
        font-size: 2.2rem;
    }
}