:root {
    --primary-blue: #1E3A8A;
    --secondary-blue: #0A2540;
    --accent-yellow: #FBBF24;
    --accent-yellow-hover: #F59E0B;
    --light-gray: #F3F4F6;
    --dark-gray: #374151;
    --text-dark: #1F2937;
    --text-light: #6B7280;
}

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

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

/* Navbar */
.navbar-custom {
    background-color: var(--primary-blue) !important;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Header Slider Section */
.header-slider-section {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-top: 70px;
}

.header-slider {
    height: 100%;
}

.header-slide {
    height: 300px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.header-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(10, 37, 64, 0.5) 100%);
}

.navbar-custom.navbar-scrolled {
    background-color: rgba(30, 58, 138, 0.95) !important;
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    transition: all 0.3s;
    padding: 10px 15px !important;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-yellow) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-item {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(10, 37, 64, 0.9) 100%);
    z-index: 1;
}

.slider-item .container {
    position: relative;
    z-index: 2;
}

.slider-item h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slider-item p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
}

.owl-dot.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

/* Parallax Hero Slider */
.parallax-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920');
    transition: background-image 1s ease-in-out;
    z-index: 1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(10, 37, 64, 0.9) 100%);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    color: white;
}

.parallax-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.parallax-title.show {
    opacity: 1;
    transform: translateY(0);
}

.parallax-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.parallax-subtitle.show {
    opacity: 0.9;
    transform: translateY(0);
}

.parallax-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.parallax-buttons.show {
    opacity: 1;
    transform: translateY(0);
}

.parallax-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.parallax-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.parallax-dot.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

.parallax-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Services Section */
.services-section {
    background: white;
    padding: 80px 0;
}

/* Quick Summary Section */
.quick-summary-section {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.summary-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.summary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--accent-yellow);
}

.summary-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent-yellow);
    transition: all 0.3s;
}

.summary-card:hover .summary-icon {
    transform: rotateY(180deg);
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.summary-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.summary-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Summary Section */
.about-summary-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-summary-content h2 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.about-summary-content .section-subtitle {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: var(--accent-yellow);
    margin-right: 15px;
    font-size: 1.2rem;
}

.about-summary-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.about-summary-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}

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

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--accent-yellow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--accent-yellow);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--accent-yellow);
}

.service-link i {
    transition: transform 0.3s;
}

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 80px 0;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent-yellow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-yellow);
}

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

/* Buttons */
.btn-warning {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-warning:hover {
    background-color: var(--accent-yellow-hover);
    border-color: var(--accent-yellow-hover);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-blue);
    border-color: white;
}

/* Content Area */
.content-area {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    line-height: 1.8;
}

.page-content-section {
    background: #f8f9fa;
}

/* Footer */
.footer {
    background: var(--secondary-blue);
    color: white;
    padding: 60px 0 0;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--accent-yellow);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

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

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

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-menu a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.contact-info i {
    width: 30px;
    color: var(--accent-yellow);
}

.contact-info span {
    margin-left: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    outline: none;
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--accent-yellow);
    border: none;
    border-radius: 50%;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-blue);
    color: var(--accent-yellow);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--accent-yellow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.feature-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* Page Header */
.page-header {
    position: relative;
    overflow: hidden;
}

/* About Page */
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.stat-item-small {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stat-number-small {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 5px;
}

.stat-label-small {
    font-size: 0.9rem;
    color: var(--text-light);
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent-yellow);
    height: 100%;
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--accent-yellow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    transform: rotateY(180deg);
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.value-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

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

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent-yellow);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Services Page */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--accent-yellow);
    margin-right: 10px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--accent-yellow);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.why-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* References Page */
.reference-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--accent-yellow);
}

.reference-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.reference-card h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.reference-sector {
    color: var(--accent-yellow);
    font-weight: 500;
    margin-bottom: 15px;
}

.reference-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.reference-rating {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-content {
    margin-bottom: 20px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-yellow);
    opacity: 0.3;
    line-height: 0;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.author-info h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.author-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

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

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 40px;
    border-radius: 15px;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Cards (Admin Panel) */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-header {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    border-radius: 15px 15px 0 0 !important;
    padding: 20px;
}

/* Tables */
.table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.table thead {
    background-color: var(--primary-blue);
    color: white;
}

.table thead th {
    border-color: var(--primary-blue);
    padding: 15px;
    font-weight: 600;
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
}

/* Forms */
.form-control:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
}

.form-select:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
}

/* Sidebar (AdminLTE style) */
.sidebar {
    background-color: var(--secondary-blue);
    min-height: 100vh;
    color: white;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-menu a {
    display: block;
    padding: 15px 20px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: var(--primary-blue);
    color: var(--accent-yellow);
    padding-left: 25px;
}

.sidebar-menu a i {
    width: 25px;
    margin-right: 10px;
}

/* Status Badges */
.badge-pending {
    background-color: #6B7280;
}

.badge-processing {
    background-color: #3B82F6;
}

.badge-completed {
    background-color: #10B981;
}

/* Dashboard Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent-yellow);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-card h3 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.stat-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-item h1 {
        font-size: 2rem;
    }
    
    .slider-item p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Modal Animation Fix - Prevent Vibration */
.modal.fade .modal-dialog {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.modal.show .modal-dialog {
    transform: none !important;
    opacity: 1 !important;
}

.modal-backdrop {
    transition: none !important;
    opacity: 0.5 !important;
}

.modal {
    animation: none !important;
    transition: none !important;
}

.modal.fade {
    opacity: 1 !important;
}

.modal-dialog {
    transition: none !important;
    transform: none !important;
    margin: 0 auto;
}

/* Submenu Styles */
.has-submenu .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,0.1);
    border-left: 3px solid var(--accent-yellow);
    margin-left: 20px;
}

.has-submenu .submenu li a {
    padding: 10px 15px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.has-submenu .submenu li a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 20px;
}

.submenu-toggle {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.submenu-toggle .fa-chevron-down {
    font-size: 0.8em;
    transition: transform 0.3s;
}

.submenu-toggle .fa-chevron-up {
    transform: rotate(180deg);
}
