/* Root Variables – dense, modern */
:root {
    --primary-color: #0f172a;
    --secondary-color: #2563eb;
    --accent-color: #1d4ed8;
    --text-color: #1e293b;
    --text-light: #64748b;
    --background: #ffffff;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Manrope', sans-serif;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.06);
    --shadow-md: 0 4px 12px rgb(0 0 0 / 0.08), 0 2px 4px rgb(0 0 0 / 0.04);
    --shadow-lg: 0 12px 28px rgb(0 0 0 / 0.1), 0 4px 8px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 24px 48px rgb(0 0 0 / 0.12);
    --border-color: rgba(226, 232, 240, 0.95);
    --muted-bg: #f1f5f9;
    --light-blue-bg: #e6f2ff;
    --light-blue-bg-strong: #dbeafe;
    --card-border: rgba(219, 234, 254, 0.8);
    --card-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
    --content-width: 1160px;
    --section-padding: clamp(1.75rem, 4vw, 3rem);
    --body-font-size: clamp(0.9rem, 0.25vw + 0.8rem, 1rem);
    --small-font-size: clamp(0.8rem, 0.2vw + 0.7rem, 0.9rem);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
    font-size: clamp(14px, 0.6vw + 11px, 17px);
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--body-font-size);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Typography – tighter, crisp */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: var(--body-font-size);
    line-height: 1.65;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

/* Layout Utilities */
.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-padding {
    padding: var(--section-padding);
}

section {
    position: relative;
}

.requires-auth {
    display: none;
}

.requires-auth.visible {
    display: block;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: var(--small-font-size);
    letter-spacing: 0.04em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    gap: 0.45rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3b82f6 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.8rem;
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

/* Glassmorphism Header */
header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

header.scrolled {
    height: 64px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.2vw + 1rem, 1.7rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.logo .highlight {
    margin-left: 0.2rem;
}

#navbar ul {
    display: flex;
    gap: 1.5rem;
}

#navbar a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: var(--small-font-size);
    position: relative;
    padding: 0.5rem 0;
}

#navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

#navbar a:hover::after,
#navbar a.active::after {
    width: 100%;
}

.navbar-mobile-brand {
    display: none;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
}

/* Modern Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 1.25rem;
    background: linear-gradient(135deg, rgba(230, 242, 255, 0.92) 0%, rgba(219, 234, 254, 0.9) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--primary-color);
    margin-top: -64px;
    padding-top: 64px;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(221, 162, 52, 0.15), transparent 45%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 0.9rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    line-height: 1.2;
}

.hero-content p {
    color: var(--accent-color);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    margin-bottom: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

/* Services Section with Glass Cards */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.section-header p {
    font-size: clamp(0.9rem, 0.25vw + 0.85rem, 1.05rem);
    color: var(--text-light);
    margin-bottom: 0;
}

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

.service-card {
    background: var(--white);
    padding: 1.5rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
    background: var(--white);
    border-color: var(--secondary-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.25));
    border: 1px solid rgba(37, 99, 235, 0.18);
    margin-bottom: 0.75rem;
}

.service-card .service-icon i {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.25rem);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    font-size: var(--small-font-size);
    margin-bottom: 0;
    line-height: 1.6;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    background: var(--white);
    padding: 1.85rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-text h2 {
    margin-bottom: 0.6rem;
}

.about-text p {
    margin-bottom: 0.75rem;
    text-align: justify;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    z-index: -1;
}

.about-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Contact Section */
.contact-hero {
    text-align: center;
    margin-bottom: 1.75rem;
}

.contact-hero h2 {
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    margin-bottom: 0.4rem;
}

.contact-accent {
    color: #2563eb;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-card p {
    margin-bottom: 0;
    color: var(--text-light);
}

.contact-card a {
    color: inherit;
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(37, 99, 235, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.2rem;
    align-items: stretch;
}

.map-card,
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.map-card {
    min-height: 380px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
}

.form-card {
    padding: 1.5rem 1.6rem;
}

.form-card h3 {
    margin-bottom: 0.75rem;
}

.form-card .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.contact-link {
    text-align: center;
    margin-top: 1rem;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 162, 52, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.contact-info>* {
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    background: rgba(59, 130, 246, 0.12);
    padding: 10px;
    border-radius: 50%;
}

.info-item span {
    font-size: 0.95rem;
    color: #334155;
}

.info-item a {
    color: #334155;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--secondary-color);
}

.contact-form {
    padding: 1.75rem 1.5rem;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    background: #f8fafc;
    transition: var(--transition);
    line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(221, 162, 52, 0.1);
}

/* Footer */
footer {
    background: #e6f2ff;
    color: var(--primary-color);
    padding: 1.5rem 0 0.75rem;
    margin-top: 1.5rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem;
    width: min(480px, 100%);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}

.modal-content p {
    margin-bottom: 1.25rem;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-hint {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.modal-content .form-group label {
    font-weight: 600;
}

.modal-content input {
    background: #f1f5f9;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.modal-content input:focus {
    background: var(--white);
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

@media (max-width: 640px) {
    .modal-content {
        padding: 2.25rem 1.75rem;
    }

    .modal-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }
}

.auth-locked {
    display: none;
}

.auth-locked.visible {
    display: block;
}

.profile-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    max-width: 720px;
    margin: 0 auto;
}

.form-hint {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    margin-bottom: 0;
}

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

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.15rem;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-kpis {
    display: grid;
    gap: 0.4rem;
    margin-top: 1.25rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.project-kpis i {
    color: var(--secondary-color);
    margin-right: 0.4rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.team-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(221, 162, 52, 0.2), rgba(15, 23, 42, 0.06));
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.9rem;
    overflow: hidden;
    border: 2px solid rgba(221, 162, 52, 0.3);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    letter-spacing: 0.5px;
    margin-left: auto;
    margin-right: auto;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card .profile-details {
    display: block;
}

.team-card .profile-locked-hint {
    display: none;
}

.login-status {
    display: none !important;
}

.login-status i {
    display: none;
}

.login-status.active {
    display: none !important;
}

.profile-trigger {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(14, 116, 144, 0.12));
    color: #0f172a;
    padding: 0.4rem 0.9rem 0.4rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    font-weight: 600;
    font-size: var(--small-font-size);
    transition: var(--transition);
}

.profile-trigger i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: var(--white);
    font-size: 0.9rem;
}

.profile-trigger.visible {
    display: inline-flex;
}

.profile-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}


.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card h3 {
    font-size: clamp(1.1rem, 0.7vw + 1rem, 1.35rem);
    margin-bottom: 0.35rem;
}

.team-card .profile-details p {
    margin-bottom: 0.65rem;
    color: var(--text-light);
    line-height: 1.5;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
    row-gap: 0.4rem;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(221, 162, 52, 0.18), transparent 55%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card > * {
    position: relative;
    z-index: 1;
}

 

/* Events */
.events-grid {
    display: grid;
    gap: 1.5rem;
}

.event-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

/* Partners */
.partners-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partners-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0.25rem;
    width: 100%;
}

.partners-track::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.slider-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: var(--shadow-sm);
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    text-align: center;
    scroll-snap-align: start;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: #0f172a;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .partners-slider {
        gap: 0.5rem;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
    }

    .partners-track {
        grid-auto-columns: minmax(180px, 1fr);
    }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.testimonial-card h4 {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--primary-color);
}

/* Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.comparison-card.highlight {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.comparison-card ul {
    margin-top: 1rem;
    display: grid;
    gap: 0.6rem;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
}

.comparison-card i {
    color: var(--secondary-color);
}

.comparison-card .fa-times-circle {
    color: #ef4444;
}

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

.event-date {
    background: var(--light-blue-bg-strong);
    color: var(--primary-color);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 78px;
    height: fit-content;
    border: 1px solid var(--card-border);
}

.event-date span {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.event-date strong {
    display: block;
    font-size: 1.5rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

/* Pills & tag cloud */
.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #e0f2fe;
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Timeline */
.timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.timeline-year {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    min-width: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.footer-col h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

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

.footer-col a {
    color: #334155;
    font-size: var(--small-font-size);
}

.footer-col a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 0.65rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    transition: var(--transition);
    color: var(--primary-color);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 0.6rem;
    text-align: center;
    color: #475569;
    font-size: var(--small-font-size);
}

.footer-bottom p {
    margin: 0;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .map-card iframe {
        min-height: 300px;
    }

    .about-image::after {
        display: none;
    }
    
    #hero {
        padding: 0 1rem;
        min-height: 88vh;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }

    .section-padding {
        padding: 3.5rem 0;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }

    h1 {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 0.9rem;
    }
    
    .service-card {
        padding: 1.25rem 1.1rem;
    }
    
    .section-header {
        margin-bottom: 1.25rem;
    }
    
    .about-container {
        gap: 1.35rem;
    }
    
    .about-text {
        padding: 1.5rem 1.4rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.4rem 1.1rem;
    }
    
    .page-header {
        padding: 2.75rem 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --body-font-size: 1rem;
        --small-font-size: 0.95rem;
    }

    body {
        font-weight: 500;
    }

    p {
        font-size: 1rem;
    }

    .section-header p {
        font-size: 1.05rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --body-font-size: 1.05rem;
        --small-font-size: 1rem;
    }

    header,
    header.scrolled {
        height: 60px;
    }

    html {
        scroll-padding-top: 60px;
    }

    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }

    .logo .highlight {
        font-size: inherit;
    }

    body {
        font-weight: 600;
    }

    p {
        font-weight: 600;
        font-size: 1.05rem;
    }

    .section-header p {
        font-weight: 600;
        font-size: 1.1rem;
    }

    .container {
        padding: 0 0.85rem;
    }
    
    .section-padding {
        padding: 1.75rem 0;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }
    
    .mobile-toggle:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.2);
    }

    #navbar {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: var(--white);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 5rem 1.25rem 1.5rem;
        transform: translateX(100%); /* Slide from side */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    #navbar.active {
        transform: translateX(0);
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    }

    .navbar-mobile-brand {
        display: block;
        text-align: center;
        margin-bottom: 1.35rem;
        padding-bottom: 1.1rem;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .navbar-mobile-brand-name {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1.3;
    }

    .navbar-mobile-brand-name .highlight {
        color: var(--secondary-color);
    }

    .navbar-mobile-brand-tagline {
        font-size: 0.9rem;
        color: var(--text-light);
        margin: 0.35rem 0 0;
        font-weight: 500;
    }

    #navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        width: 100%;
    }

    #navbar li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    #navbar.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered animation for menu items */
    #navbar.active li:nth-child(1) { transition-delay: 0.1s; }
    #navbar.active li:nth-child(2) { transition-delay: 0.15s; }
    #navbar.active li:nth-child(3) { transition-delay: 0.2s; }
    #navbar.active li:nth-child(4) { transition-delay: 0.25s; }

    #navbar a {
        font-size: clamp(1.05rem, 1.4vw + 0.85rem, 1.35rem);
        font-weight: 700;
        display: block;
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
        color: var(--primary-color);
        transition: background 0.2s ease;
    }
    
    #navbar a:active {
        background: rgba(15, 23, 42, 0.05);
    }

    /* Prevent IOS Zoom on focus */
    input, select, textarea {
        font-size: 16px !important; 
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

    #hero {
        margin-top: -60px;
        padding-top: 60px;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        min-height: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
    }

    .social-links {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.35rem 1rem;
    }

    .login-status {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    
    .about-text {
        padding: 1.25rem 1.1rem;
    }
    
    .page-header {
        padding: 2.5rem 0 1.35rem;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: clamp(1.85rem, 6vw, 2.75rem);
    }
    
    .page-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .service-card {
        padding: 1.1rem 0.9rem;
    }

    .project-card,
    .team-card,
    .stat-card {
        padding: 1.1rem 0.9rem;
    }

    .event-card,
    .timeline-item {
        padding: 1.1rem 0.9rem;
        grid-template-columns: 1fr;
    }

    .testimonial-card,
    .comparison-card,
    .partner-card,
    .contact-card,
    .about-text,
    .form-card {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .event-date {
        width: fit-content;
    }

    .section-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Floating action buttons: Arrow Up, Call, WhatsApp – small, tight bottom-right */
.floating-buttons {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.floating-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.floating-btn.scroll-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn.call {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8862d 100%);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Google Maps Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Google My Business Link */
.google-business-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.google-business-link:hover {
    gap: 0.8rem;
    color: var(--primary-color);
}

/* Enhanced Modern UI Elements */
.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8862d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover-effect {
    transition: var(--transition);
}

.card-hover-effect:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Modern Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-blue-bg) 0%, var(--light-blue-bg-strong) 100%);
    color: var(--primary-color);
    padding: 3.5rem 0 2rem;
    text-align: center;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(221, 162, 52, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 162, 52, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.page-header > * {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out;
}

.page-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--secondary-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    transform: translateX(-2px);
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Enhanced Form Styles */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

/* Smooth Scroll Enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Buttons */
.btn:active {
    transform: scale(0.98);
}

/* Enhanced Service Cards */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    transition: var(--transition);
}

/* Enhanced Contact Info */
.contact-info {
    background: linear-gradient(135deg, var(--light-blue-bg) 0%, var(--light-blue-bg-strong) 100%);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8862d;
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .floating-btn {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}