/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: #0b1929;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background-color: #d4af37;
    color: #000000;
}

::-moz-selection {
    background-color: #d4af37;
    color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #d4af37;
    color: #000000;
}

.btn-primary:hover {
    background: #f4d03f;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn .icon {
    transition: transform 0.3s ease;
}

.btn:hover .icon {
    transform: translateX(4px);
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(11, 25, 41, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.logo-text p {
    font-size: 12px;
    color: #d4af37;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.nav-link.active {
    border-bottom: 2px solid #d4af37;
    padding-bottom: 2px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-top: 1px solid #1d3a5c;
    background: rgba(8, 18, 33, 0.98);
    backdrop-filter: blur(10px);
}

.nav-mobile.active {
    display: flex;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(8, 18, 33, 0.98);
    border: 1px solid #1d3a5c;
    border-radius: 8px;
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding-left: 24px;
}

/* Mobile Dropdown */
.nav-mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 8px;
    gap: 8px;
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-dropdown-content a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-dropdown-content a:hover {
    color: #d4af37;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b1929 0%, #0f2035 50%, #0b1929 100%);
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-blur-1 {
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.1);
    top: 10%;
    left: 10%;
}

.hero-blur-2 {
    width: 400px;
    height: 400px;
    background: rgba(244, 208, 63, 0.1);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 100px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: 24px;
    color: #cccccc;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 32px;
}

.hero-description {
    font-size: 18px;
    color: #999999;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: #d4af37;
    border-radius: 4px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0a1826 0%, #0b1929 50%, #0a1826 100%);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.05), transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #999999;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

@media (max-width: 900px) {
    .services-grid-3 { grid-template-columns: 1fr; }
}

/* LMS Browser Mockup */
.lms-browser-mockup {
    margin-bottom: 56px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0f2035;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.browser-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: #a0aec0;
}

.browser-open-btn {
    font-size: 0.82rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}
.browser-open-btn:hover { color: #f4d03f; }

.browser-frame {
    position: relative;
    height: 480px;
    background: #0b1929;
    overflow: hidden;
}

.browser-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform-origin: top left;
    pointer-events: none;
}

.browser-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.service-card {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon-1 {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.service-icon-2 {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.service-icon-3 {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.service-icon svg {
    color: #000;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #d4af37;
}

.service-desc {
    color: #999;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 12px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* LMS Section */
.lms-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1826 0%, #0b1929 50%, #0a1826 100%);
    position: relative;
}

.lms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05), transparent 50%);
    pointer-events: none;
}

.lms-content {
    position: relative;
    z-index: 10;
}

.lms-overview {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.lms-overview h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.lms-overview p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 16px;
}

.lms-quote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lms-quote svg {
    color: #d4af37;
    flex-shrink: 0;
}

.lms-quote p {
    color: #fff;
    font-size: 18px;
    font-style: italic;
    margin: 0;
}

.lms-benefits {
    margin-bottom: 32px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-header svg {
    color: #d4af37;
}

.benefit-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    color: #cccccc;
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.benefit-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
}

.lms-pricing {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.lms-pricing h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.lms-pricing > p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 32px;
}

.lms-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.lms-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0a1826;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.about-content {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    backdrop-filter: blur(10px);
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-logo {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.about-logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.about-logo-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: #000;
}

.about-logo-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
}

.about-logo-content p {
    color: #999;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.5);
}

.stat-icon {
    color: #d4af37;
    margin-bottom: 16px;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    color: #999;
    font-size: 14px;
}

/* Clientele Section */
.clientele-section {
    margin-top: 64px;
    margin-bottom: 64px;
}

.clientele-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.clientele-description {
    text-align: center;
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 48px;
}

.clientele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.client-card {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.client-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.client-logo {
    width: 100%;
    max-width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
}

.client-logo-text {
    color: #d4af37;
    margin-bottom: 16px;
}

.client-name {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Leadership Section */
.leadership-section {
    margin-top: 64px;
}

.leadership-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}

.leadership-card {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 48px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.leadership-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.leader-info {
    max-width: 1000px;
    margin: 0 auto;
}

.leader-header {
    margin-bottom: 24px;
}

.leader-header h4 {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
}

.leader-role {
    font-size: 18px;
    color: #cccccc;
    font-weight: 500;
}

.leader-description {
    margin-bottom: 32px;
}

.leader-description p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 16px;
}

.leader-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(5, 14, 28, 0.4);
    border: 1px solid #132a45;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.credential-item svg {
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-item span {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.leader-highlights {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.leader-highlights h5 {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 16px;
}

.leader-highlights ul {
    list-style: none;
    padding: 0;
}

.leader-highlights ul li {
    color: #cccccc;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.leader-highlights ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
}

.leader-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.leader-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.leader-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-2px);
}

.leader-link svg {
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1826 0%, #0b1929 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05), transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    position: relative;
    z-index: 10;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-icon svg {
    color: #000;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.contact-card a:hover {
    color: #d4af37;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.form-desc {
    color: #999;
    margin-bottom: 32px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(5, 14, 28, 0.5);
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    resize: none;
}

/* Footer */
.footer {
    background: #070f1a;
    border-top: 1px solid #1d3a5c;
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-logo .logo-text p {
    font-size: 12px;
    color: #d4af37;
}

.footer-tagline {
    color: #999;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-desc {
    color: #666;
    font-size: 14px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li span {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-list li svg {
    color: #d4af37;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #1d3a5c;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #0f2035;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    transform: scale(1.1);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* Expert Talks Section */
.expert-talks-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1826 0%, #0b1929 50%, #0a1826 100%);
    position: relative;
}

.expert-talks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.05), transparent 50%);
    pointer-events: none;
}

.talks-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 10;
}

.talks-intro p {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.8;
}

.talks-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.category-card {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.category-card.technical:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.category-card.soft-skills:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.category-card.entertainment:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card.technical .category-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.category-card.soft-skills .category-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.category-card.entertainment .category-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.category-icon svg {
    color: #fff;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.category-card.technical:hover h3 {
    color: #3b82f6;
}

.category-card.soft-skills:hover h3 {
    color: #10b981;
}

.category-card.entertainment:hover h3 {
    color: #ec4899;
}

.category-card p {
    color: #999;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 12px;
}

.category-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.category-card.technical ul li::before {
    background: #3b82f6;
}

.category-card.soft-skills ul li::before {
    background: #10b981;
}

.category-card.entertainment ul li::before {
    background: #ec4899;
}

/* Technical Topics Grid */
.tech-talks-section {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.tech-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.tech-section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 40px;
    font-size: 16px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.tech-category {
    padding: 24px;
    background: rgba(5, 14, 28, 0.4);
    border: 1px solid #132a45;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.tech-category h4 {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 16px;
}

.tech-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-box {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
}

.tech-box:hover {
    transform: translateY(-2px);
}

.tech-box.ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.tech-box.ai:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border-color: rgba(139, 92, 246, 0.6);
}

.tech-box.cloud {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.tech-box.cloud:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.3) 100%);
    border-color: rgba(59, 130, 246, 0.6);
}

.tech-box.prog {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.tech-box.prog:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(22, 163, 74, 0.3) 100%);
    border-color: rgba(34, 197, 94, 0.6);
}

.tech-box.data {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    border: 1px solid rgba(249, 115, 22, 0.4);
}

.tech-box.data:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(234, 88, 12, 0.3) 100%);
    border-color: rgba(249, 115, 22, 0.6);
}

.tech-box.test {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(219, 39, 119, 0.2) 100%);
    border: 1px solid rgba(236, 72, 153, 0.4);
}

.tech-box.test:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(219, 39, 119, 0.3) 100%);
    border-color: rgba(236, 72, 153, 0.6);
}

.tech-box.emerging {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(13, 148, 136, 0.2) 100%);
    border: 1px solid rgba(20, 184, 166, 0.4);
}

.tech-box.emerging:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3) 0%, rgba(13, 148, 136, 0.3) 100%);
    border-color: rgba(20, 184, 166, 0.6);
}

/* Expert Talks CTA */
.talks-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.talks-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.talks-cta p {
    color: #cccccc;
    margin-bottom: 32px;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b1929 0%, #0a1826 50%, #0b1929 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03), transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 10;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(15, 35, 65, 0.6) 0%, rgba(8, 20, 42, 0.6) 100%);
    border: 1px solid #1d3a5c;
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: #d4af37;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: #999;
}

/* Floating Links Container */
.floating-links {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Floating Link Base */
.floating-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.floating-link svg {
    transform: rotate(90deg);
}

.floating-link span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* AI Tutorial Link */
.floating-link.ai-tutorial {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.floating-link.ai-tutorial:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #9333ea 0%, #8b5cf6 100%);
}

/* Careers Link */
.floating-link.careers {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.floating-link.careers:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .toast {
        right: 16px;
        left: 16px;
        bottom: 16px;
    }
    
    .lms-overview,
    .lms-pricing,
    .lms-cta {
        padding: 32px 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .lms-quote {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .leadership-card {
        padding: 32px 24px;
    }
    
    .leader-credentials {
        grid-template-columns: 1fr;
    }
    
    .leader-links {
        flex-direction: column;
    }
    
    .leader-link {
        justify-content: center;
    }
    
    .clientele-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .client-card {
        min-height: 150px;
        padding: 24px 16px;
    }
    
    /* Expert Talks Responsive */
    .talks-categories {
        grid-template-columns: 1fr;
    }
    
    .tech-talks-section {
        padding: 32px 20px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-category {
        padding: 20px;
    }
    
    .talks-cta {
        padding: 32px 20px;
    }
    
    .talks-cta h3 {
        font-size: 22px;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Floating Links Responsive */
    .floating-links {
        right: 12px;
        gap: 8px;
    }
    
    .floating-link {
        padding: 12px 10px;
    }
    
    .floating-link span {
        font-size: 11px;
    }
}
/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
    margin-top: 80px; /* header height */
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.25) 100%);
    display: flex;
    align-items: center;
}

.hero-slide-content {
    padding: 40px 20px;
    max-width: 700px;
}

.hero-slide-content .hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(212,175,55,0.18);
    border: 1px solid rgba(212,175,55,0.4);
    color: #d4af37;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}

.hero-slide-content .hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-slide-content .hero-tagline {
    font-size: 1rem;
    color: #d4af37;
    font-style: italic;
    margin-bottom: 12px;
}

.hero-slide-content .hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-slide-content .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Slider Prev/Next buttons */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(212,175,55,0.25);
    border: 2px solid rgba(212,175,55,0.6);
    color: #d4af37;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}
.hero-slider-btn:hover { background: rgba(212,175,55,0.55); }
.hero-slider-prev { left: 18px; }
.hero-slider-next { right: 18px; }

/* Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
    background: #d4af37;
    transform: scale(1.3);
}

/* Scroll indicator inside slider */
.hero-slider .scroll-indicator {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 10;
}

/* =========================================
   SERVICES GRID — 3 COLUMNS
   ========================================= */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card-img {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-card-body {
    padding: 24px;
}

@media (max-width: 992px) {
    .services-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .hero-slider {
        height: 55vh;
    }
}

@media (max-width: 640px) {
    .services-grid-3 {
        grid-template-columns: 1fr;
    }
    .hero-slider {
        height: 70vh;
        min-height: 480px;
    }
    .hero-slide-content .hero-title {
        font-size: 1.8rem;
    }
}

/* Override: 3-col service cards don't need top padding (image covers top) */
.services-grid-3 .service-card {
    padding: 0;
    overflow: hidden;
}
.services-grid-3 .service-card-body {
    padding: 24px 28px 28px;
}
.services-grid-3 .service-icon {
    margin-bottom: 16px;
}
.service-icon i {
    color: #000;
}
