/* Modern 2025 CSS Variables - ADDED */
:root {
    --primary: #0056b3;
    --primary-dark: #003d82;
    --secondary: #ffc107;
    --success: #28a745;
    --gradient: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    --gradient-light: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --radius-lg: 24px;
}

/* Enhanced Hero Section - UPDATED */
.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
        url('../images/hero2.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0 200px 0;
    border-bottom-left-radius: 60% 10%;
    border-bottom-right-radius: 60% 10%;
    overflow: hidden;
    position: relative;
    /* ADDED */
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 80px 0; /* Reduce top and bottom padding for small devices */
    }
}

.hero-background {
    /* ADDED */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero2.jpg') center/cover;
    opacity: 0;
    inset: 0;
    z-index: 1;
    /* background layer */
}

.hero-gradient {
    /* ADDED */
    position: absolute;
    inset: 0;
    z-index: 2;
    /* gradient layer */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.1;
}

.hero-particles {
    /* ADDED */
    position: absolute;
    inset: 0;
    z-index: 3;
    /* particles ABOVE the gradient */
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {

    /* ADDED */
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.text-gradient {
    /* ADDED */
    background: linear-gradient(45deg, #ffc107, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-on-hover:hover {
    /* ADDED */
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

/* Floating Stats - ADDED */
.hero-stats {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.floating-stat {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 120px;
    animation: float-stat 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes float-stat {

    /* ADDED */
    0%,
    100% {
        transform: translateY(0px);
    }

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

.stat-value {
    /* ADDED */
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.stat-label {
    /* ADDED */
    font-size: 0.875rem;
    color: #666;
}

/* Modern Cards - ADDED */
.modern-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    /* ADDED */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.modern-card:hover {
    /* ADDED */
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    /* ADDED */
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
}

/* Section Badges - ADDED */
.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge-light {
    /* ADDED */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Goals Items - ADDED */
.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    /* ADDED */
    background: var(--primary);
    color: white;
    transform: translateX(10px);
}

.goal-item i {
    /* ADDED */
    margin-top: 2px;
    flex-shrink: 0;
}

/* Program Modern Cards - ADDED */
.program-modern-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.program-modern-card:hover {
    /* ADDED */
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    /* ADDED */
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    /* ADDED */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-modern-card:hover .program-image img {
    /* ADDED */
    transform: scale(1.1);
}

.program-overlay {
    /* ADDED */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.8;
}

.program-icon {
    /* ADDED */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.program-content {
    /* ADDED */
    padding: 30px;
}

.program-features {
    /* ADDED */
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.program-features li {
    /* ADDED */
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.program-features li::before {
    /* ADDED */
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.program-footer {
    /* ADDED */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.btn-program {
    /* ADDED */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-program:hover {
    /* ADDED */
    gap: 12px;
    color: var(--primary-dark);
}

.program-badge {
    /* ADDED */
    background: var(--secondary);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Announcements Modern - ADDED */
.announcement-modern-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.announcement-modern-section::before {
    /* ADDED */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.announcement-modern-card {
    /* ADDED */
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.announcement-modern-card:hover {
    /* ADDED */
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.announcement-header {
    /* ADDED */
    padding: 20px;
    color: white;
    position: relative;
}

.announcement-header.scholarship {
    background: var(--success);
}

/* ADDED */
.announcement-header.important {
    background: #dc3545;
}

/* ADDED */
.announcement-header.event {
    background: #6f42c1;
}

/* ADDED */

.announcement-badge {
    /* ADDED */
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.announcement-date {
    /* ADDED */
    position: absolute;
    top: 23px;
    right: 30px;
    font-size: 0.875rem;
    opacity: 0.9;
}

.announcement-body {
    /* ADDED */
    padding: 30px;
}

.announcement-footer {
    /* ADDED */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.read-more-link {
    /* ADDED */
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    /* ADDED */
    gap: 10px;
}

.views-count {
    /* ADDED */
    color: #666;
    font-size: 0.875rem;
}

/* Stats Modern - ADDED */
.stats-modern-section {
    background: #f8f9fa;
}

.stat-modern-card {
    /* ADDED */
    background: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-modern-card:hover {
    /* ADDED */
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-modern-card::before {
    /* ADDED */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.stat-icon {
    /* ENHANCED */
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background-color: #003d7a !important;
}

.stat-label {
    /* ADDED */
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.progress-bar-modern {
    /* ADDED */
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
}

.progress-fill {
    /* ADDED */
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
}

/* CTA Modern - ADDED */
.cta-modern-section {
    background: #f8f9fa;
}

.cta-modern-card {
    /* ADDED */
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-modern-card::before {
    /* ADDED */
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {

    /* ADDED */
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Utility Classes - ADDED */
.py-6 {
    padding: 6rem 0;
}

.mb-6 {
    margin-bottom: 4rem;
}

/* YOUR ORIGINAL CSS - PRESERVED */
.navbar {
    border-bottom: 3px solid #0056b3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tesda-blue {
    background-color: #0056b3;
    color: white;
}

.tesda-blue a {
    background-color: #0056b3;
    color: white;
}

.tesda-white {
    background-color: white;
}

.tesda-yellow {
    background-color: #ffc107;
}

.quick-link-card {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.7);
    height: 90%;
}

.quick-link-card:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-link-icon {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    background-color: #003d7a !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .quick-link-icon {
        width: 40px;
        height: 40px;
    }

    .quick-link-card {
        padding: 15px !important;
    }
}

.announcement-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.announcement-card .card-header {
    border-bottom: none;
}

.announcement-card .card-body {
    background-color: #fff;
    color: #333;
}

@media (max-width: 768px) {
    .announcement-card {
        margin-bottom: 20px;
    }
}

.stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.progress-bar {
    transition: width 1.5s ease-in-out;
}

.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 86, 179, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.testimonial-bg-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.15);
    filter: blur(80px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.testimonial-card {
    transition: all 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
    border-color: rgba(0, 86, 179, 0.1);
}

.graduate-photo {
    position: relative;
    width: 80px;
    height: 80px;
}

.graduate-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cert-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.quote-icon {
    font-size: 2.5rem;
    opacity: 0.1;
    margin-bottom: -1.5rem;
    margin-top: -0.5rem;
}

.program-info {
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-card:hover .program-info {
    background-color: #0056b3 !important;
    color: white !important;
}

.rating {
    font-size: 0.9rem;
}

.social-proof .badge {
    font-size: 0.75rem;
    font-weight: normal;
}

@media (max-width: 992px) {
    .testimonial-row {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
    }
}

.program-card {
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

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

.program-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.program-card .card-footer {
    background-color: rgba(0, 86, 179, 0.05);
    border-top: none;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.course-card {
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

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

.course-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.course-card .card-footer {
    background-color: rgba(0, 86, 179, 0.05);
    border-top: none;
}

.duration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.sector-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

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

.sector-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
    background-color: #0056b3 !important;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #ffff;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 86, 179, 0.1);
    color: #0056b3;
    font-weight: bold;
}

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

.table th {
    background-color: #0056b3;
    color: white;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #0056b3;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid #0056b3;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.mission-vision-card {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 18px;
    }

    .left::after,
    .right::after {
        left: 18px;
    }

    .right {
        left: 0%;
    }
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.filter-btn.active {
    background-color: #0056b3 !important;
    color: white !important;
}

.center-card {
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

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

.center-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.center-card .card-footer {
    background-color: rgba(0, 86, 179, 0.05);
    border-top: none;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    z-index: 1;
}

.region-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

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

.contact-card {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background-color: #0056b3 !important;
}

#contactMap {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    z-index: 1;
}

.form-control,
.form-select {
    padding: 12px;
    border-radius: 8px;
}

textarea.form-control {
    min-height: 150px;
}

.scholarship-card {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

.scholarship-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.scholarship-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.eligibility-list {
    list-style-type: none;
    padding-left: 0;
}

.eligibility-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.eligibility-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.card-hover {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

.card-hover .card-img-top {
    height: 180px;
    object-fit: cover;
}

.benefit-list {
    list-style-type: none;
    padding-left: 0;
}

.benefit-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.benefit-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.process-step {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    color: black;
    height: 100%;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.5rem;
}

.certificate-sample {
    border: 2px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.certificate-sample:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation Active State - Modern 2025 Style */
.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    color: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Custom styles for proper centering */
@media (min-width: 992px) {
    .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .login-btn-lg {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Mobile styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: center;
    }

    .login-btn-mobile {
        margin: 10px auto;
        display: block;
        width: fit-content;
    }
}

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

    .hero-stats {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }

    .floating-stat {
        min-width: 100px;
        padding: 15px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .cta-buttons .btn {
        margin: 5px 0;
    }

    .py-6 {
        padding: 4rem 0;
    }

    .mb-6 {
        margin-bottom: 3rem;
    }
}

/* Contact Page Specific Styles - Modern 2025 */
.contact-modern-card {
    text-align: center;
    padding: 40px 30px;
}

.contact-modern-card .card-icon {
    margin: 0 auto 25px;
}

.modern-contact-form .form-floating {
    margin-bottom: 1rem;
}

.modern-contact-form .form-control,
.modern-contact-form .form-select {
    border-radius: var(--radius);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.modern-contact-form .form-control:focus,
.modern-contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.office-info {
    margin-top: 2rem;
}

/* Region Cards - Modern */
.region-modern-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.region-modern-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.region-header {
    background: var(--secondary);
    color: #000;
    padding: 20px;
    text-align: center;
}

.region-body {
    padding: 25px;
}

.region-contact {
    color: var(--secondary);
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

/* Modern Accordion */
.modern-accordion {
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-modern-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-modern-item .accordion-button {
    background: white;
    border: none;
    padding: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

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

.accordion-modern-item .accordion-button::after {
    box-shadow: none;
    border-color: rgba(0, 86, 179, 0.25);
}

.accordion-modern-item .accordion-button:not(.collapsed)::after {
    background-color: rgba(0, 86, 179, 0.1);
    color: #0056b3;
    font-weight: bold;
}

.accordion-modern-item .accordion-body {
    padding: 25px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Modern Modal */
.modern-modal {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modern-modal .modal-header {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 30px;
    position: relative;
}

.modern-modal .modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.modern-modal .modal-body {
    padding: 30px;
}

.modern-modal .modal-footer {
    border: none;
    padding: 25px 30px;
    background: #f8f9fa;
}

/* Chat Styles */
.chat-container {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--radius);
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.message-bubble {
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 80%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-modern-card {
        padding: 30px 20px;
    }

    .modern-modal .modal-header {
        padding: 20px;
    }

    .modern-modal .modal-body {
        padding: 20px;
    }

    .region-body {
        padding: 20px;
    }

    .accordion-modern-item .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }

    .accordion-modern-item .accordion-body {
        padding: 20px;
    }
}

/* Form Focus Effects */
.form-control:focus,
.form-select:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
}