/* ===== Salanarah Global Services - Premium Stylesheet ===== */
/* Updated: Corporate team cards, bigger logo, enhanced styling */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --primary: #1a3a2a;
    --primary-dark: #0d1f15;
    --primary-light: #2d6a4f;
    --secondary: #c8962e;
    --secondary-light: #e0b04a;
    --accent: #e67e22;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #f8f9fa;
    --lighter: #ffffff;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--primary));
    --gradient-accent: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    --gradient-hero: linear-gradient(135deg, rgba(13, 31, 21, 0.92), rgba(26, 58, 42, 0.85), rgba(45, 106, 79, 0.7));
    --gradient-cta: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 9999;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(200, 150, 46, 0.5);
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

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

::selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: 0 0 10px rgba(200, 150, 46, 0.3);
}

::-moz-selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: 0 0 10px rgba(200, 150, 46, 0.3);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

.display-font {
    font-family: var(--font-display);
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-primary {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    border: none;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(26, 58, 42, 0.3);
    background-size: 200% 200%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(26, 58, 42, 0.4), 0 0 30px rgba(26, 58, 42, 0.2);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light), #d4a843);
    border: none;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(200, 150, 46, 0.3);
    background-size: 200% 200%;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(200, 150, 46, 0.4), 0 0 30px rgba(200, 150, 46, 0.2);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* ===== Glassmorphism ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ===== Section Titles ===== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    vertical-align: middle;
    margin: 0 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-display);
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Navbar ===== */
.navbar {
    padding: 18px 0;
    transition: var(--transition);
    z-index: 1000;
    background: transparent;
}

.navbar.navbar-scrolled {
    background: rgba(13, 31, 21, 0.97) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: -0.5px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: none;
}

.navbar-brand:hover::after {
    left: 100%;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-brand img {
    max-height: 140px;
    width: auto;
    transition: var(--transition);
}

.navbar.navbar-scrolled .navbar-brand img {
    max-height: 110px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--primary-dark);
        border-radius: 16px;
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .navbar-collapse .nav-link {
        text-align: center;
        padding: 12px 18px !important;
        font-size: 1rem;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video,
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 150, 46, 0.08), transparent, rgba(200, 150, 46, 0.05));
    animation: heroGradientShift 8s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content .hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.15;
    font-family: var(--font-display);
}

.hero-content h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 45px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons .btn {
    margin: 5px 10px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: heroPulse 2.5s ease-in-out infinite;
}

.hero-scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== About Section ===== */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-experience-badge .number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content {
    padding-left: 30px;
}

.about-content .subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: var(--font-display);
    line-height: 1.3;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-features li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark);
}

.about-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
    width: 22px;
    height: 22px;
    background: rgba(200, 150, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Services Section ===== */
.services-section {
    padding: 120px 0;
    background: var(--light);
    position: relative;
}

.services-section::before,
.projects-section::before,
.why-section::before,
.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 45px 35px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: none;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 35px rgba(200, 150, 46, 0.12);
}

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

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

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

.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(26, 58, 42, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-display);
    line-height: 1;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(200, 150, 46, 0.08);
    transform: scale(1.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    animation: iconFloat 4s ease-in-out infinite;
}

.service-card:hover .service-icon {
    border-radius: 50%;
    transform: rotateY(180deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 58, 42, 0.3);
    animation-play-state: paused;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-card .btn-link {
    color: var(--primary-light);
    font-weight: 600;
    padding: 0;
    text-decoration: none;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.service-card .btn-link:hover {
    color: var(--secondary);
    gap: 8px;
}

.service-card .btn-link i {
    transition: var(--transition);
}

.service-card .btn-link:hover i {
    transform: translateX(5px);
}

/* ===== Impact Stats ===== */
.stats-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 30px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    display: block;
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(200, 150, 46, 0.25));
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== Projects Section ===== */
.projects-section {
    padding: 120px 0;
    position: relative;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
    cursor: pointer;
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 35px rgba(200, 150, 46, 0.12);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 31, 21, 0.9), rgba(26, 58, 42, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-overlay .btn {
    transform: translateY(0);
}

.project-overlay .btn:hover {
    background: var(--white);
    color: var(--primary);
}

.project-info {
    padding: 28px;
}

.project-info .badge {
    background: var(--gradient) !important;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 50px;
}

.project-info h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.project-info .project-meta {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.project-info .project-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

.project-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.project-filter .btn {
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 0.85rem;
    margin: 3px;
    font-weight: 500;
}

.project-filter .btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(26, 58, 42, 0.3);
}

/* ===== Why Choose Us ===== */
.why-section {
    padding: 120px 0;
    background: var(--light);
    position: relative;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover::after {
    transform: scaleX(1);
}

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

.why-card .why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    border-radius: 50%;
    transform: scale(1.1);
}

.why-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Team Section ===== */
.team-section {
    padding: 120px 0;
    position: relative;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

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

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

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

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 35px rgba(200, 150, 46, 0.12);
}

.team-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--gray-light);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

.team-image .team-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 2;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 150, 46, 0.3);
}

.team-info {
    padding: 18px 16px 22px;
}

.team-info h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1rem;
    line-height: 1.3;
}

.team-info .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.82rem;
}

.team-info .team-bio {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== Leadership Page - Corporate Portrait Cards ===== */
.leadership-profile {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.leadership-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    z-index: 2;
}

.leadership-profile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(200, 150, 46, 0.1);
}

.leadership-profile .profile-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--gray-light);
}

.leadership-profile .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-slow);
}

.leadership-profile:hover .profile-image img {
    transform: scale(1.05);
}

.leadership-profile .profile-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    pointer-events: none;
}

.leadership-profile .profile-info {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leadership-profile .profile-info h4 {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.leadership-profile .profile-info .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.85rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-light);
    position: relative;
}

.leadership-profile .profile-info .position::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
}

.leadership-profile .profile-info .bio-preview {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 0;
    max-height: 80px;
    overflow: hidden;
    position: relative;
}

.leadership-profile .profile-info .bio-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.leadership-single-card .profile-info .bio-preview {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0;
    max-height: 85px;
    overflow: hidden;
    position: relative;
}

.leadership-single-card .profile-info .bio-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.leadership-profile .profile-info p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.leadership-profile .profile-info .credentials {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.leadership-profile .profile-info .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Leadership page: full-width card for single member */
.leadership-single-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.leadership-single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    z-index: 2;
}

.leadership-single-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(200, 150, 46, 0.1);
}

.leadership-single-card .profile-image {
    min-width: 250px;
    max-width: 250px;
    min-height: 320px;
    overflow: hidden;
    position: relative;
    background: var(--gray-light);
}
    overflow: hidden;
    position: relative;
    background: var(--gray-light);
}

.leadership-single-card .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-slow);
}

.leadership-single-card:hover .profile-image img {
    transform: scale(1.04);
}

.leadership-single-card .profile-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.leadership-single-card .profile-info {
    padding: 28px 32px;
    flex: 1;
    overflow-y: auto;
}

.leadership-single-card .profile-info h4 {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.leadership-single-card .profile-info .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.leadership-single-card .profile-info .credentials {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 14px;
    padding: 10px 14px;
    background: rgba(45, 106, 79, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-light);
    line-height: 1.6;
}

.leadership-single-card .profile-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 10px;
}

.leadership-single-card .profile-info .btn {
    margin-top: 16px;
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.partner-logo {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 130px;
}

.partner-logo:hover {
    opacity: 0.8;
}

.partner-logo img {
    max-height: 70px;
    object-fit: contain;
}

.partner-logo-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary);
    line-height: 1.4;
    word-break: break-word;
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    background: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--primary-dark);
}

.testimonials-section .section-header p {
    color: var(--text-muted);
}

.testimonial-card {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 45px 35px;
    text-align: center;
    margin: 15px;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(26, 58, 42, 0.3), 0 0 30px rgba(200, 150, 46, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: var(--font-display);
    color: rgba(200, 150, 46, 0.25);
    line-height: 1;
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-card .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card .testimonial-author h6 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2px;
    font-size: 1rem;
}

.testimonial-card .testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ===== Testimonials Carousel Controls ===== */
.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    border: 1px solid rgba(200, 150, 46, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
}

.testimonials-section .carousel-control-prev:hover,
.testimonials-section .carousel-control-next:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.testimonials-section .carousel-control-prev {
    left: -60px;
}

.testimonials-section .carousel-control-next {
    right: -60px;
}

.testimonials-section .carousel-indicators {
    bottom: -50px;
}

.testimonials-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(26, 58, 42, 0.3);
    background: transparent;
    margin: 0 6px;
    transition: var(--transition);
}

.testimonials-section .carousel-indicators button.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.2);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-cta);
    position: relative;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(200, 150, 46, 0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section .cta-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ===== Newsletter ===== */
.newsletter-section {
    padding: 80px 0;
    background: var(--darker);
    position: relative;
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.3);
    border-radius: 60px;
    overflow: hidden;
}

.newsletter-form .form-control {
    padding: 18px 28px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form .btn {
    padding: 18px 35px;
    border-radius: 0 60px 60px 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 0;
    position: relative;
    margin-top: auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 150, 46, 0.3), transparent);
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.1rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer .contact-info li i {
    color: var(--secondary);
    width: 18px;
    margin-top: 4px;
    font-size: 1rem;
}

.footer .contact-info li span,
.footer .contact-info li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer .social-links {
    display: flex;
    gap: 10px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 1rem;
}

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

.footer-bottom {
    margin-top: 80px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Page Header ===== */
.page-header {
    padding: 180px 0 100px;
    background: var(--gradient-dark);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-display);
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 15px 0 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
    color: var(--secondary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 100px 0 60px;
}

.map-section {
    padding-bottom: 60px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .icon {
    width: 65px;
    height: 65px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-info-card:hover .icon {
    border-radius: 50%;
    transform: scale(1.1);
}

.contact-info-card h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-info-card p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== Admin Styles ===== */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
}

.admin-login .card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 50px;
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--gray-light);
}

.admin-login .card h3 {
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

/* ===== Service Detail Page ===== */
.service-hero {
    padding: 180px 0 80px;
    background: var(--gradient-dark);
    color: var(--white);
}

.service-content {
    padding: 80px 0;
}

.service-content h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-content p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ===== Form Styles ===== */
.form-floating .form-control {
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-light);
    padding: 1rem 1rem;
    height: auto;
    transition: var(--transition);
}

.form-floating .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.form-floating label {
    padding: 1rem;
}

/* ===== Credentials / Certifications Bar ===== */
.credential-bar {
    background: var(--primary-dark);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.credential-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.credential-bar span {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.credential-bar span i {
    color: var(--secondary);
    margin-right: 6px;
}

/* ===== Partnerships Grid ===== */
.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partnership-item {
    text-align: center;
    padding: 20px;
}

/* ===== Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1) rotate(-5deg);
    color: var(--white);
    animation-play-state: paused;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(26, 58, 42, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(26, 58, 42, 0.4);
}

/* ===== Premium Keyframes ===== */
@keyframes heroGradientShift {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
    100% { opacity: 0.3; transform: scale(1); }
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 45px rgba(37, 211, 102, 0.7); transform: scale(1.05); }
    100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
}

/* ===== Leadership Modal Styles ===== */
.leadership-modal .modal-content {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
}

.leadership-modal .modal-header {
    background: var(--primary);
    color: var(--white);
    border-bottom: none;
    padding: 18px 24px;
}

.leadership-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.leadership-modal .modal-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.modal-member-photo {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.modal-member-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-member-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.modal-member-position {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-light);
}

.modal-member-credentials {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(45, 106, 79, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-light);
    line-height: 1.7;
}

.modal-member-bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.85;
}

.modal-member-bio p {
    margin-bottom: 14px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.85;
}

.modal-member-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .modal-member-photo {
        max-width: 250px;
        margin: 0 auto;
    }

    .modal-member-name {
        font-size: 1.25rem;
        text-align: center;
    }

    .modal-member-position {
        text-align: center;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1199px) {
    .hero-content h1 { font-size: 3.5rem; }
    .section-header h2 { font-size: 2.3rem; }
}

@media (max-width: 991.98px) {
    .hero-content h1 { font-size: 2.8rem; }
    .section-header h2 { font-size: 2rem; }
    .stat-number { font-size: 2.8rem; }
    .about-content { padding-left: 0; margin-top: 40px; }
    .about-experience-badge { right: 20px; }
    .cta-section h2 { font-size: 2.2rem; }
    .page-header h1 { font-size: 2.5rem; }
    .leadership-profile {
        flex-direction: column;
    }
    .leadership-single-card {
        flex-direction: column;
    }
    .leadership-single-card .profile-image {
        min-width: unset;
        max-width: unset;
        min-height: 260px;
    }
    .leadership-single-card .profile-info {
        padding: 22px 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .section-header h2 { font-size: 1.8rem; }
    .stat-number { font-size: 2.2rem; }
    .cta-section h2 { font-size: 1.8rem; }
    .page-header h1 { font-size: 2rem; }
    .navbar-brand { font-size: 1.2rem; }
    .navbar-brand img { max-height: 120px; }
    .navbar.navbar-scrolled .navbar-brand img { max-height: 95px; }
    .about-features { grid-template-columns: 1fr; }
    .about-section, .services-section, .projects-section,
    .why-section, .team-section, .testimonials-section {
        padding: 70px 0;
    }
    .team-image {
        height: 240px;
    }
    .leadership-single-card .profile-info {
        padding: 18px 16px;
    }
    .leadership-single-card .profile-info h4 {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons .btn { display: block; margin: 10px auto; width: 85%; }
    .section-header .subtitle::before,
    .section-header .subtitle::after { display: none; }
    .navbar-brand img { max-height: 95px; }
}
