:root {
    --primary-bg: #654321;
    /* Dark Brown */
    --secondary-bg: #7B3F00;
    /* Chocolate Brown */
    --accent-color: #D2B48C;
    /* Light Brown/Tan */
    --text-white: #FFFFFF;
    --text-gray: #E0E0E0;
    --text-dark: #333333;
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-main: 'Inter', sans-serif;
    --btn-bg: #8B4513;
    /* Saddle Brown */
    --btn-hover: #A52A2A;
    /* Basic Brown */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography Utilities */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

/* Header */
.header {
    background-color: #fff;
    color: var(--text-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-bg);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--btn-bg);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-bg);
    transform: translateY(-2px);
    transition: 0.2s;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #FFD54F;
}

.btn-yellow:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
    color: var(--primary-bg);
}

.btn-outline {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-bg);
}

.mobile-menu-btn {
    display: none;
    background: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
}

/* Hero Section */
.hero {
    /* padding: 100px 0; */
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.5s ease, letter-spacing 0.5s ease;
}

.hero-title:hover {
    transform: skew(-5deg) rotate(-2deg) translateY(-5px);
    letter-spacing: 1px;
}


/* @keyframes tiltMove {
    0% {
        transform: skew(0deg) rotate(0deg);
    }
    50% {
        transform: skew(-4deg) rotate(-2deg);
    }
    100% {
        transform: skew(0deg) rotate(0deg);
    }
        animation: tiltMove 4s ease-in-out infinite;
} */

.highlight-yellow {
    color: var(--accent-yellow);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 213, 79, 0.5);
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 50px;
    margin-top: 10px;
}

.bar {
    width: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

/* General Section Styles */
.section-padding {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--secondary-bg);
}

.bg-purple-gradient {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    box-shadow: 0 0 0 rgba(255, 213, 79, 0); /* default no shadow */
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 213, 79, 0.5);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-yellow);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-tagline {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-list {
    list-style: none;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-list li {
    margin-bottom: 10px;
}

/* Split Layout (Why Asksol) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.leadership-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--accent-yellow);
    transition: all 0.4s ease;      /* smooth animation */
    transform: translateY(0px);     /* initial position */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* no shadow initially */
}

.leadership-content:hover {
    transform: translateY(-10px); /* lift up */
    box-shadow: 0 15px 35px rgba(255, 213, 79, 0.25); /* yellow glow shadow */
    background: rgba(255, 255, 255, 0.08); /* slight bright effect */
    border-left: 4px solid #FFD54F; /* stronger yellow on hover */
}

.leader-profile h4 {
    font-size: 1.3rem;
    margin-top: 15px;
}

.leader-profile .role {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--accent-yellow);
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
}

/* Footer */
.footer {
    background-color: #3C2B1D;
    padding: 60px 0 20px;
    color: var(--text-gray);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .split-layout,
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-wrapper {
        justify-content: center;
        margin-top: 50px;
    }

    .floating-card {
        left: 20px;
    }

    .leadership-content {
        margin-top: 40px;
        text-align: left;
    }

    .contact-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {

    .nav-list,
    .header .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}