:root {
    --primary-color: #dc3545;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand .badge {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;

}

.spline-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind the content */
}

.spline-background iframe {
    width: 120%;
    height: 120%;
    border: none; /* Remove default iframe border */
	display: block; /* Helps in some cases to remove extra space below iframe */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	position: relative; /* Often a good idea for content blocks, but not strictly necessary if parent is flex */
    z-index: 1; /* Explicitly ensure it's above the background */
}

.hero-content .highlight {
    color: var(--primary-color);
    display: block;
    font-size: 4rem;
    margin: 0.5rem 0;
	position: relative; /* Often a good idea for content blocks, but not strictly necessary if parent is flex */
    z-index: 1; /* Explicitly ensure it's above the background */
	
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	position: relative; /* Often a good idea for content blocks, but not strictly necessary if parent is flex */
    z-index: 1; /* Explicitly ensure it's above the background */
}

.hero-website-info {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
	position: absolute;
	z-index: 1;
}

.btn-hero {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-hero.primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-hero.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: -100px;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

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

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Identity Section */
.identity-section {
    min-height: 50vh;
    padding: 80px 0;
    /* Use a subtle linear gradient for background */
    background: linear-gradient(to bottom right, var(--light-color), #f0f4f8);
    position: relative; /* Needed for any potential pseudo-elements or background effects */
    overflow: hidden; /* Ensures no overflow from animations */
}

.identity-card {
    /* Use a subtle gradient for card background */
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
    border-radius: 20px; /* Slightly more rounded corners */
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition curve */
    /* Enhanced box-shadow for depth */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent; /* Start with transparent border */
    position: relative;
    overflow: hidden; /* Hide any overflow from inner elements like border animation */
    z-index: 1; /* Ensure card is above any background effects */
}

/* Dynamic Border Effect on Hover */
.identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px; /* Thickness of the border */
    background: linear-gradient(45deg, #ff6b6b, #ff4d4d); /* Gradient for the border */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.identity-card:hover::before {
    opacity: 1; /* Show border on hover */
}


.identity-card:hover {
    transform: translateY(-20px) scale(1.03); /* Lift higher and slightly scale up */
    /* More pronounced and diffused shadow on hover */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.identity-icon {
    width: 90px; /* Slightly larger icon */
    height: 90px;
    /* Use a vibrant gradient for the icon background */
    background: linear-gradient(45deg, var(--primary-color), #6a82fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px; /* More margin */
    font-size: 2.2rem; /* Slightly larger icon font */
    color: white;
    /* Add a subtle shadow to the icon */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease; /* Smooth transition for icon hover */
}

.identity-card:hover .identity-icon {
    transform: rotateY(15deg) scale(1.1); /* Subtle rotation and scale on icon hover */
}

.identity-card h4 {
    font-weight: 800; /* Bolder font for headings */
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.6rem; /* Slightly larger heading */
    letter-spacing: -0.5px; /* Tighter letter spacing */
}

.identity-card p {
    color: var(--secondary-color);
    line-height: 1.8; /* Increased line height for better readability */
    font-size: 1.05rem; /* Slightly larger paragraph text */
}

/* Optional: Add a subtle background pattern to the section */
.identity-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1; /* Very subtle */
    z-index: 0;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-color);
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

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

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 25px;
}

.news-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.news-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 0 0;
}

.footer-top {
    padding-bottom: 50px;
    text-align: center;
}

.footer-top h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.footer-top p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.footer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.footer-cta-btn.secondary:hover {
    background: white;
    color: var(--primary-color);
}

.footer-main {
    padding: 20px 0 10px;
    background: var(--primary-color);
}

.footer-column h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer-column .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 5px;
}

.footer-column .contact-item i {
    color: white;
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    background: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    margin-bottom: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Navbar Active State */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 700;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Stats Section */
.stats-section {
    position: relative;
    margin-top: -100px;
    z-index: 10;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

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

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.about-text .section-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-divider {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px 0;
}

.news-divider {
    width: 50px;
    height: 4px;
    background: var(--primary-color);
}

.complaint-divider {
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    margin-left: 93%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .highlight {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 1rem;
        margin: 5px;
    }

    .stats-section {
        margin-top: -50px;
    }

    .stat-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    /* Footer Responsive */
    .footer-top h2 {
        font-size: 2rem;
    }

    .footer-top p {
        font-size: 1rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-column h5 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links a {
        margin: 5px 0;
    }

    .navbar-nav .nav-link.active::after {
        width: 25px;
        height: 2px;
    }
}
