/*=====================================================
    Modern Header & Mega Menu Styles
=====================================================*/

/* Top Bar Styles */
.top-header-modern {
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-contact-info-modern {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-header-contact-info-modern li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
}

.top-header-contact-info-modern li i {
    font-size: 16px;
    color: #ffffff;
}

.top-header-contact-info-modern li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header-contact-info-modern li a:hover {
    color: #f0f0f0;
}

.top-header-right-modern {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.top-header-social-modern {
    display: flex;
    gap: 12px;
}

.top-header-social-modern a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-header-social-modern a:hover {
    background: #ffffff;
    color: #ED1C24;
    transform: translateY(-2px);
}

.partner-login-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-login-btn:hover {
    background: #ffffff;
    color: #ED1C24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modern Navbar Styles */
.header-area-modern {
    position: relative;
    z-index: 999;
}

.navbar-area-modern {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-area-modern.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    animation: slideDown 0.3s ease;
    background: #ffffff;
}

body.menu-open {
    overflow: hidden;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-modern {
    padding: 20px 0;
}

.navbar-brand-modern {
    display: inline-block;
}

.navbar-brand-modern img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand-modern:hover img {
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 15px;
    border-radius: 8px;
}

.navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon i {
    color: #ffffff;
    font-size: 24px;
}

/* Modern Navigation Menu */
.navbar-nav-modern {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-modern {
    position: relative;
    display: inline-block;
}

.nav-item-modern.has-dropdown {
    position: relative;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    color: #2d3748;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    transition: width 0.3s ease;
}

.nav-link-modern:hover {
    color: #ED1C24;
    background: rgba(237, 28, 36, 0.08);
}

.nav-link-modern:hover::before {
    width: 60%;
}

.nav-link-modern i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.nav-item-modern.has-dropdown:hover > .nav-link-modern i {
    transform: rotate(180deg);
}

/* Regular Dropdown Menu */
.dropdown-menu-modern {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    width: max-content;
    max-width: 350px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
    display: block !important;
}

.nav-item-modern:hover > .dropdown-menu-modern,
.nav-item-modern.show > .dropdown-menu-modern,
.nav-item-modern.menu-active > .dropdown-menu-modern {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-menu-modern li {
    padding: 0;
    list-style: none;
}

.dropdown-menu-modern li a {
    display: block;
    padding: 8px 20px;
    color: #4a5568;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    line-height: 1.4;
}

.dropdown-menu-modern li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    border-radius: 0 4px 4px 0;
    transition: width 0.3s ease;
}

.dropdown-menu-modern li a:hover {
    color: #ED1C24;
    background: rgba(237, 28, 36, 0.05);
    padding-left: 25px;
}

.dropdown-menu-modern li a:hover::before {
    width: 4px;
}

/* Mega Menu Styles */
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1140px;
    min-width: 800px;
    background: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 30px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s ease;
    z-index: 1000;
    display: block !important;
}

.nav-item-modern:hover > .mega-menu-dropdown,
.nav-item-modern.show > .mega-menu-dropdown,
.nav-item-modern.menu-active > .mega-menu-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.mega-menu-content {
    width: 100%;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-dropdown .row > div {
    padding: 0 15px;
}

.mega-menu-list li {
    margin-bottom: 5px;
    width: 100%;
}

.mega-menu-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #4a5568;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.4;
}

.mega-menu-list li a::before {
    content: '\ea5c';
    font-family: 'boxicons';
    font-size: 6px;
    color: #ED1C24;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.mega-menu-list li a:hover {
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1) 0%, rgba(160, 19, 23, 0.1) 100%);
    color: #ED1C24;
    padding-left: 16px;
}

.mega-menu-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Header CTA */
.header-cta-modern {
    margin-left: 20px;
}

.search-btn-modern {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.search-btn-modern:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(237, 28, 36, 0.4);
}

/*=====================================================
    Modern Footer Styles
=====================================================*/

.footer-area-modern {
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.footer-area-modern::before {
    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 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.footer-top-modern {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-widget-modern {
    color: #ffffff;
}

.footer-logo-modern {
    margin-bottom: 20px;
}

.footer-logo-modern img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social-modern {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-modern li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-modern li a:hover {
    background: #ED1C24;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(237, 28, 36, 0.3);
}

.footer-title-modern {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ED1C24 0%, transparent 100%);
    border-radius: 2px;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 12px;
}

.footer-links-modern li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-modern li a:hover {
    color: #ED1C24;
    padding-left: 5px;
}

.footer-news-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-news-modern li {
    margin-bottom: 12px;
}

.footer-news-modern li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-news-modern li a i {
    color: #ED1C24;
    font-size: 16px;
    margin-top: 2px;
}

.footer-news-modern li a:hover {
    color: #ED1C24;
}

.footer-contact-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-modern li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-modern li i {
    font-size: 24px;
    color: #ED1C24;
    min-width: 24px;
}

.contact-info-content span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info-content a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #ED1C24;
}

/* Newsletter Section */
.newsletter-section-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.newsletter-wrapper-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content-modern h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-content-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 0;
}

.newsletter-form-modern {
    display: flex;
    gap: 0;
}

.input-group-modern {
    display: flex;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-control-modern {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    outline: none;
}

.subscribe-btn-modern {
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.subscribe-btn-modern:hover {
    background: linear-gradient(135deg, #A01317 0%, #ED1C24 100%);
    transform: scale(1.02);
}

/* Footer Bottom */
.footer-bottom-modern {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.copyright-text-modern {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links-modern li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links-modern li a:hover {
    color: #ED1C24;
}

/*=====================================================
    Modern Homepage Styles
=====================================================*/

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f8fafc !important;
}

/* Section Title */
.section-title-modern {
    margin-bottom: 60px;
}

.sub-title-modern {
    display: inline-block;
    color: #ED1C24;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
}

.sub-title-modern::before,
.sub-title-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ED1C24, transparent);
}

.sub-title-modern::before {
    left: -40px;
}

.sub-title-modern::after {
    right: -40px;
    transform: translateY(-50%) rotate(180deg);
}

.main-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 20px;
}

.description-modern {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.text-center .description-modern {
    margin: 0 auto;
}

/* About Section */
.about-area-modern {
    position: relative;
    overflow: hidden;
}

.about-image-modern {
    position: relative;
    padding: 20px;
}

.about-image-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-main-img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-secondary-img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-top: 40px;
}

.about-shape-1,
.about-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.15) 0%, rgba(160, 19, 23, 0.15) 100%);
    z-index: -1;
}

.about-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.about-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(237, 28, 36, 0.3);
}

.experience-content h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.about-content-modern {
    padding-left: 40px;
}

.features-list-modern {
    margin: 30px 0;
}

.feature-item-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.feature-icon-modern {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.feature-content-modern h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.feature-content-modern p {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.btn-modern {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.default-btn.btn-modern {
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

.default-btn.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 28, 36, 0.4);
}

/* Stats Counter */
.stats-counter-area-modern {
    padding: 60px 0;
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    position: relative;
    overflow: hidden;
}

.stats-counter-area-modern::before {
    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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.stats-wrapper-modern {
    position: relative;
    z-index: 1;
}

.stats-card-modern {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-card-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stats-icon-modern {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 32px;
}

.stats-card-modern h3 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.stats-card-modern p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

/* Partnerships */
.partnerships-grid-modern {
    margin-top: 50px;
}

.partnership-card-modern {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    margin-bottom: 30px;
}

.partnership-card-modern:hover {
    border-color: #ED1C24;
    box-shadow: 0 15px 40px rgba(237, 28, 36, 0.15);
    transform: translateY(-5px);
}

.partnership-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1) 0%, rgba(160, 19, 23, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #ED1C24;
    transition: all 0.3s ease;
}

.partnership-card-modern:hover .partnership-icon-modern {
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.partnership-card-modern h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.partnership-card-modern p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Why Choose Us */
.why-choose-area-modern {
    position: relative;
    overflow: hidden;
}

.why-choose-list-modern {
    margin-top: 30px;
}

.why-item-modern {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-item-modern:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.why-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.why-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.why-content p {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.why-choose-image-modern {
    position: relative;
    padding: 40px;
}

.why-choose-image-modern img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-shape-1,
.why-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.12) 0%, rgba(160, 19, 23, 0.12) 100%);
    z-index: -1;
}

.why-shape-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -50px;
}

.why-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: -40px;
}

/* News Cards */
.news-card-modern {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.news-card-modern:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

.news-image-modern {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-modern:hover .news-image-modern img {
    transform: scale(1.1) rotate(2deg);
}

.news-category-modern {
    position: absolute;
    top: 20px;
    right: 20px;
}

.news-category-modern a {
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content-modern {
    padding: 25px;
}

.news-meta-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.news-meta-modern li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 13px;
}

.news-meta-modern li i {
    color: #ED1C24;
}

.news-title-modern {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.news-title-modern a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-modern a:hover {
    color: #ED1C24;
}

.news-content-modern p {
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more-btn-modern {
    color: #ED1C24;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more-btn-modern:hover {
    gap: 10px;
    color: #A01317;
}

/* CTA Section */
.cta-area-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #ED1C24 0%, #A01317 100%);
    position: relative;
    overflow: hidden;
}

.cta-area-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-area-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-wrapper-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.cta-content-modern h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content-modern p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.cta-button-modern {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-btn-modern {
    background: #ffffff;
    color: #ED1C24;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-modern:hover {
    background: #ED1C24;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    gap: 15px;
}

/*=====================================================
    Responsive Styles
=====================================================*/

@media (max-width: 991px) {
    .navbar-nav-modern {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
    }
    
    .dropdown-menu-modern {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        margin-top: 0 !important;
        padding: 10px 0 10px 20px !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        border-left: 3px solid #ED1C24;
        border-radius: 0 !important;
    }
    
    .nav-item-modern.show > .dropdown-menu-modern {
        display: block !important;
    }
    
    .mega-menu-dropdown {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        margin-top: 0 !important;
        padding: 15px !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        border-left: 3px solid #ED1C24;
        border-radius: 0 !important;
    }
    
    .nav-item-modern.show > .mega-menu-dropdown {
        display: block !important;
    }
    
    .mega-menu-dropdown .row {
        margin: 0 !important;
    }
    
    .mega-menu-dropdown .row > div {
        padding: 0 !important;
        width: 100% !important;
    }
    
    .about-content-modern {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .main-title-modern {
        font-size: 32px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .cta-content-modern h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .cta-button-modern {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .top-header-contact-info-modern {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-header-right-modern {
        margin-top: 15px;
        justify-content: flex-start;
    }
    
    .about-image-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-secondary-img {
        margin-top: 0;
    }
    
    .main-title-modern {
        font-size: 28px;
    }
    
    .stats-card-modern h3 {
        font-size: 36px;
    }
    
    .why-item-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-wrapper-modern {
        padding: 25px;
    }
    
    .newsletter-content-modern h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .input-group-modern {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .form-control-modern {
        border-radius: 12px 12px 0 0;
    }
    
    .subscribe-btn-modern {
        border-radius: 0 0 12px 12px;
        justify-content: center;
    }
    
    .footer-bottom-links-modern {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

