/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');


:root {
    --primary: #6BC1F0;
    --secondary: #060532;
    --light: #ffffff;
    --accent: #4a9fcf;
    --dark: #333333;
}

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

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: white;
    overflow-x: hidden;

}

/* NAVBAR STYLES */
.navbar {
    background-color: #fff !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: #000 !important;
    font-weight: 700;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    margin-right: auto !important;
}

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

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background-color: rgba(107, 193, 240, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(107, 193, 240, 0.25);
}

.btn-primary-login {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-login:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.navbar-collapse {
    justify-content: flex-end;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        justify-content: flex-start;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .btn-primary-login {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.video-bg.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(6, 5, 50, 0.85) 0%,
        rgba(6, 5, 50, 0.7) 50%,
        rgba(6, 5, 50, 0.4) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title-home {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-home {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 768px) {
    .hero-title-home {
        font-size: 2.5rem;
    }

    .hero-subtitle-home {
        font-size: 1.1rem;
    }
}

.video-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

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

.video-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

.video-dot:hover {
    background-color: var(--primary);
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
}

.section-subtitle {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.text-center .section-title:after {
    margin: 15px auto;
}

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

.service-card h3 {
    color: white;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.services-slider {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.services-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.service-card {
    flex: 0 0 100%;
    max-width: 100%;
    background: #060532;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    color: white;
}

.service-card:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover i {
    color: var(--light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(107, 193, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 30px;
    color: #007bff;
}

.services-dots {
    text-align: center;
    margin-top: 20px;
}

.services-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.services-dots button.active {
    background: #007bff;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.service-link:hover {
    text-decoration: none;
}

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

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

.about-image img:hover {
    transform: translateY(-5px);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    flex: 1 0 50%;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    transition: all 0.8s ease;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

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

.carousel .testimonial-card {
    background-color: #060532;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

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

.news-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

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

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

.news-content {
    padding: 20px;
}

.news-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.news-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--secondary);
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
    color: var(--light);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-section .btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--light);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Footer Styles */
.footer {
    background-color: var(--secondary);
    color: var(--light);
    padding: 60px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer h3, .footer h4 {
    color: var(--light);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer h3 {
    font-size: 28px;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer h4 {
    font-size: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
    width: 16px;
}

.contact-info li span {
    flex: 1;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Container and Grid Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4, .col-lg-2 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .col-lg-4, .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-lg-4, .col-lg-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer h3 {
        font-size: 24px;
    }

    .social-links {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 25px;
    }

    .footer .col-lg-4,
    .footer .col-lg-2 {
        margin-bottom: 30px;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer .row > div {
    animation: fadeInUp 0.6s ease-out;
}

.footer .row > div:nth-child(2) {
    animation-delay: 0.1s;
}

.footer .row > div:nth-child(3) {
    animation-delay: 0.2s;
}

.footer .row > div:nth-child(4) {
    animation-delay: 0.3s;
}

/* Contact Hero Section with Video */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(6, 5, 50, 0.8);
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.hero-title-contact {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.hero-subtitle-contact {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.hero-title-contact-second {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
}

.hero-subtitle-contact-second {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.features-section {
    margin-top: 20px !important;
}

.feature-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--secondary);
    margin-bottom: 18px;
    padding: 12px 20px;
    background: rgba(107, 193, 240, 0.08);
    border-radius: 50px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.feature-item span {
    font-size: 1rem;
    color: var(--secondary);
}

.hero-features {
    margin-top: 30px;
}

.bg-video1 {
    position: relative;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
    z-index: 0;
    object-fit: cover;
}

.hero-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(107, 193, 240, 0.25);
}

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

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--light);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-card {
    background: #060532;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(107, 193, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: var(--primary);
}

.contact-info-card h3 {
    color: white;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-info-card p {
    margin-bottom: 5px;
    color: white;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    position: relative;
}

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

.accordion-button {
    font-weight: 500;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(107, 193, 240, 0.1);
    color: var(--secondary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(107, 193, 240, 0.25);
    border-color: var(--primary);
}

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 50, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color: var(--light);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
}

.stats-container {
    background: rgba(107, 193, 240, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

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

/* Values Section */
.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.value-card {
    background: #060532;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(107, 193, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: var(--primary);
}

.value-card h3 {
    color: white;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.value-card p {
    color: white;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 50, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.team-info h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.team-info p {
    margin-bottom: 5px;
    color: #666;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: 'Georgia', serif;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--light);
}

.testimonial-author p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-section .btn-outline-light {
    border-width: 2px;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Services Hero Section */
.services-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-align: center;
}

/* Services Accordion */
.accordion-item {
    border: none;
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.accordion-button {
    background-color: var(--secondary);
    color: var(--light);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.5);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23060532'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 30px;
}

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

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--primary);
    margin-top: 3px;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* News Hero Section with Video */
.news-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.news-hero .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.news-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 50, 0.8);
    z-index: 1;
}

.news-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.news-hero .hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.news-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color: white;
}

.section-title-news {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
    text-align: center;
}

.section-title-news:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
}

/* Featured Article */
.featured-article {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.featured-article .card-img-top {
    height: 350px;
    object-fit: cover;
}

.featured-article .article-meta {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.featured-article .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-card .article-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.news-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.news-card .card-text {
    color: #6c757d;
    font-size: 0.95rem;
}

.news-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Sidebar */
.sidebar-widget {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    height: 100%;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(107, 193, 240, 0.3);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a {
    color: #495057;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.category-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Recent Posts */
.recent-post {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-post:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.recent-post h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 5px;
}

.recent-post h5 a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.recent-post h5 a:hover {
    color: var(--primary);
}

.post-date {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(107, 193, 240, 0.25);
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    background: rgba(107, 193, 240, 0.1);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary);
    color: var(--light);
}

/* Pagination */
.pagination .page-link {
    color: var(--secondary);
    border: 1px solid #dee2e6;
    padding: 8px 15px;
    transition: all 0.3s;
}

.pagination .page-link:hover {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

/* Login & Registration */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #060532 0%, #1a1965 100%);
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.login-header {
    color: white;
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
}

.login-body {
    padding: 40px;
}

.btn-login {
    background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
    border: none;
    color: white;
    padding: 12px;
    font-weight: 600;
    width: 100%;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.nav-tabs .nav-link {
    color: var(--secondary);
    border: none;
    border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background: transparent;
}

/* user Dashboard */
.dashboard-sidebar {
    min-height: 80vh;
    background: linear-gradient(180deg, #012644 0%, #1a252f 100%);
    width: 250px;
    z-index: 1050;
    overflow-y: auto;
    left: 0;
    top: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;

}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
}
.sidebar-header i {
    font-size: 32px;
    color: #35d0ff;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-top: 10px;
}

.sidebar-header h4 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 10px 20px 0 20px;
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}
.sidebar-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 16px 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    border-left: 3px solid transparent;
}
.sidebar-link i {
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.sidebar-link span {
    font-weight: 500;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-left-color: #35e1ff;
}

.sidebar-link.active {
    background: linear-gradient(90deg, rgba(53, 181, 255, 0.3) 0%, rgba(53, 221, 255, 0.1) 100%);
    color: white;
    border-left-color: #35b5ff;
}
/* Sidebar Footer - Logout Button */
.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    color: white;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-weight: 600;
}

.logout-btn i {
    margin-right: 10px;
    font-size: 16px;
}

.logout-btn:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.dashboard-header {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.register {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s;
    float: right;
}

/* Registration Form */
.register-container {
    background: linear-gradient(135deg, #0a0e27 0%, #1a2340 100%);
    min-height: 100vh;
    padding: 20px;
}

.register-card {
    background: linear-gradient(135deg, #3eb8d4 0%, #1a5f6f 100%);
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.register-card .text-center img {
    margin-bottom: 10px;
    filter: brightness(1.1);
}

.register-card h6 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.register-card .form-label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.register-card .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    color: #333;
    transition: all 0.3s ease;
}

.register-card .form-control:focus {
    background: #ffffff;
    border-color: #0a0e27;
    box-shadow: 0 0 0 0.2rem rgba(62, 184, 212, 0.25);
    outline: none;
}

.register-card .form-control::placeholder {
    color: #999;
}

.register-card .btn-primary {
    background: linear-gradient(90deg, #3eb8d4 0%, #1a5f6f 100%);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.register-card .btn-primary:hover {
    background: linear-gradient(90deg, #1a5f6f 0%, #0a0e27 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.register-card a {
    color: #ffffff;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.register-card a:hover {
    color: #0a0e27;
    text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .register-card {
        padding: 20px;
    }

    .register-card h6 {
        font-size: 1rem;
    }
}
