/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1e3a5f;
    --primary-gold: #c8a96e;
    --dark-navy: #0f1f2f;
    --light-gold: #d4b876;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    --shadow-hover: 0 8px 30px rgba(30, 58, 95, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    width: 150px;
    height: 75px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-content p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(30, 58, 95, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

/* Ensure dropdown has relative positioning */
.nav-menu .dropdown {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 1000;
    margin: 0;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(200, 169, 110, 0.1);
    color: var(--primary-gold);
}

/* Mobile dropdown styles */
.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dropdown-btn:hover {
    color: var(--primary-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* News Ticker */
.news-ticker {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(200, 169, 110, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-gold);
    z-index: 100;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ticker-label {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border-left: 3px solid var(--primary-gold);
}

.ticker-label i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 45px;
}

.ticker-items {
    display: flex;
    align-items: center;
    animation: tickerScroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-items:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    color: var(--dark-navy);
    font-size: 0.95rem;
    font-weight: 500;
}

.ticker-item i {
    color: var(--dark-navy);
    font-size: 1rem;
    flex-shrink: 0;
}

.ticker-item span {
    white-space: nowrap;
}

/* Duplicate items for seamless loop */
.ticker-items::after {
    content: '';
    display: inline-flex;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(200, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(200, 169, 110, 0.05) 0%, transparent 50%);
    background-size: 400px 400px;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.08);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
}

.hero-main {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 169, 110, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.title-primary {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.title-secondary {
    display: block;
    font-size: 0.6em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.subtitle-text {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    max-width: 100px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-description strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.service-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 169, 110, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-pill:hover {
    background: rgba(200, 169, 110, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 1.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-navy);
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 169, 110, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.3);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 0.8s ease 1s both;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(30, 58, 95, 0.15) 100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    text-align: center;
    padding: 50px 40px;
    color: var(--white);
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 5;
}

.slide-overlay {
    display: none;
}

.slide-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--dark-navy);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(200, 169, 110, 0.4);
    animation: slideIconPulse 4s ease-in-out infinite;
}

@keyframes slideIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(200, 169, 110, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 15px 40px rgba(200, 169, 110, 0.6); }
}

.slide-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.slide-stats {
    background: rgba(200, 169, 110, 0.25);
    border: 2px solid var(--primary-gold);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(200, 169, 110, 0.3);
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(200, 169, 110, 0.5);
}

.nav-dot:hover {
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

/* Progress Bar */
.slideshow-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(200, 169, 110, 0.5);
}

/* Slideshow Controls (Arrow Navigation) */
.slideshow-container .prev-arrow,
.slideshow-container .next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.slideshow-container .prev-arrow {
    left: 20px;
}

.slideshow-container .next-arrow {
    right: 20px;
}

.slideshow-container .prev-arrow:hover,
.slideshow-container .next-arrow:hover {
    background: rgba(200, 169, 110, 0.8);
    border-color: var(--primary-gold);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slideshow-container .prev-arrow:active,
.slideshow-container .next-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    animation: fadeIn 2s ease 2s both;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.feature-item span {
    font-weight: 600;
    color: var(--primary-navy);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card:hover .service-icon i {
    color: var(--primary-navy);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Departments Section */
.departments {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.department-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.department-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-navy);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.department-card:hover .department-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
    color: var(--white);
}

.department-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.department-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.department-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    display: none; /* Hidden by default */
}

.department-list.show {
    display: block;
}

.department-list li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 20px;
}

.department-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.department-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.department-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Department Pages */
.department-header {
    padding: 100px 0 60px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.department-intro {
    max-width: 800px;
    margin: 0 auto;
}

.department-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-navy);
    font-size: 3rem;
}

.department-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.department-overview {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.department-services {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-item h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.back-button {
    text-align: center;
    margin-top: 50px;
}

/* Portfolio Section */
.portfolio {
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-image i {
    font-size: 3rem;
    color: var(--primary-gold);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.portfolio-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: var(--primary-navy);
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
    margin-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
/* ===== Contact Section Layout ===== */

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.contact-item i {
    font-size: 28px;
    color: #f4c300;
    min-width: 30px;
}

.contact-item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-item p {
    margin: 5px 0 0;
    font-size: 14px;
}

.contact-item a {
    color: #1c1c1c;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact-info p {
    white-space: nowrap;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-contact-info p i {
    flex-shrink: 0;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .slideshow-container {
        height: 550px;
        margin: 0 auto;
        max-width: 600px;
    }
    
    .slide-content {
        padding: 40px 30px;
        max-width: 400px;
    }
    
    .slide-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .slide-content h3 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--primary-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 10px;
    }

    .dropdown-content a {
        padding: 8px 20px;
        display: block;
        color: var(--white);
        text-decoration: none;
        font-size: 0.9rem;
    }

    .dropdown-content a:hover {
        background: rgba(200, 169, 110, 0.1);
        color: var(--primary-gold);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-main {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 15px;
    }

    .title-secondary {
        font-size: 0.7em;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .subtitle-line {
        width: 60px;
        margin: 0 auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-services {
        justify-content: center;
    }

    .slideshow-container {
        height: 450px;
        max-width: 100%;
        border-radius: 20px;
    }

    .slide-content {
        padding: 35px 25px;
        max-width: 350px;
    }

    .slide-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 25px;
        border-radius: 20px;
    }

    .slide-content h3 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .slide-stats {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .slideshow-nav {
        bottom: 60px;
        gap: 12px;
        padding: 12px 20px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-description {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .title-secondary {
        font-size: 0.8em;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .hero-services {
        gap: 8px;
    }

    .service-pill {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .slideshow-container {
        height: 380px;
        border-radius: 18px;
    }

    .slide-content {
        padding: 25px 20px;
        max-width: 300px;
    }

    .slide-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .slide-stats {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .slideshow-nav {
        bottom: 45px;
        gap: 10px;
        padding: 10px 15px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .slideshow-progress {
        height: 5px;
    }

    .slideshow-container::before,
    .slideshow-container::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .departments-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.portfolio-item,
.feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Departments Section */
.departments {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.department-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.department-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c8a96e 0%, #d4b876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1e3a5f;
    font-size: 2rem;
}

.department-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.department-card p {
    color: #666;
    line-height: 1.6;
}

/* ERP Section */
.erp {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f1f2f 100%);
    color: white;
}

.erp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.erp-feature {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.erp-feature i {
    font-size: 3rem;
    color: #c8a96e;
    margin-bottom: 20px;
}

.erp-feature h3 {
    color: #c8a96e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.erp-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
/* ===== Contact Section Layout ===== */

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.contact-item i {
    font-size: 28px;
    color: #c8a96e;
    min-width: 30px;
}

.contact-item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-item p {
    margin: 5px 0 0;
    font-size: 14px;
}

.contact-item a {
    color: #1c1c1c;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}
.contact .contact-info {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
}

.contact .contact-item {
    width: auto !important;
}
.erp .section-title {
    color: #c8a96e; /* Mustard */
}
