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

:root {
    --primary-purple: #6B46C1;
    --secondary-purple: #8B5CF6;
    --light-purple: #A78BFA;
    --dark-purple: #4C1D95;
    --gradient-start: #6B46C1;
    --gradient-end: #9333EA;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --bg-light: #F9FAFB;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.proprietor {
    color: var(--light-purple);
    font-size: 0.85rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--light-purple);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 50%, var(--light-purple) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-motto {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin: 2rem 0;
    color: var(--light-purple);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--light-purple);
    color: var(--white);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.2);
    border-color: var(--primary-purple);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background: var(--white);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-placeholder:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-purple);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 2.5rem;
    border-radius: 15px;
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    line-height: 1.7;
    opacity: 0.95;
}

.contact-text a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-purple);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--light-purple);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 4rem 0;
    color: var(--white);
    text-align: center;
}

.about-hero .section-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.about-content {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.about-text h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-services {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-services h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(147, 51, 234, 0.1));
    transform: translateX(5px);
}

.service-item i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.service-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Organizational Chart */
.organigram-section {
    margin: 4rem 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.organigram-section h2 {
    text-align: center;
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.organigram-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: 650px;
    margin: 0 auto;
    padding: 2rem;
}

.org-box {
    position: absolute;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.org-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
    z-index: 20;
}

.org-box-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.org-box-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.org-box-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.org-box-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0.3rem 0;
    line-height: 1.4;
}

/* Connecting Lines */
.org-line {
    position: absolute;
    background: var(--primary-purple);
    z-index: 1;
}

.org-vertical-line {
    position: absolute;
    background: var(--primary-purple);
    width: 3px;
    z-index: 1;
}

.org-line-top-to-middle {
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    height: 140px;
}

.org-line-center-to-bottom {
    top: 420px;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
}

.org-connector {
    position: absolute;
    background: var(--primary-purple);
    height: 3px;
    z-index: 1;
}

.org-connector-middle {
    top: 260px;
    left: 50px;
    right: 50px;
    width: calc(100% - 100px);
}

.org-connector-bottom {
    bottom: 140px;
    left: 100px;
    right: 100px;
    width: calc(100% - 200px);
}

/* Lines from middle connector up to middle boxes */
.org-line-up-left,
.org-line-up-center,
.org-line-up-right {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 50px;
}

/* Lines from middle boxes down to bottom connector */
.org-line-down-left,
.org-line-down-center,
.org-line-down-right {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 70px;
}

/* Lines from bottom connector up to bottom boxes */
.org-line-bottom-left,
.org-line-bottom-center,
.org-line-bottom-right {
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 70px;
}

/* Top box - Proprietor (centered at top) */
.org-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
}

/* Middle row boxes */
.org-left {
    top: 320px;
    left: 50px;
}

.org-center {
    top: 320px;
    left: 50%;
    transform: translateX(-50%);
}

.org-right {
    top: 320px;
    right: 50px;
}

/* Bottom row boxes */
.org-bottom-left {
    bottom: 40px;
    left: 100px;
}

.org-bottom-center {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.org-bottom-right {
    bottom: 40px;
    right: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-motto {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .carousel-track {
        gap: 2rem;
    }

    .client-logo {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding: 2rem 0;
    }

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

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

