/* Modern Redesign Styles */

/* ========== NAVBAR REDESIGN ========== */
.navbar-sticky {
    transition: all 0.3s ease;
}

.navbar-sticky.navbar-stuck {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand-item {
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-brand-item {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #0d1b3e;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 70%;
}

.navbar-nav .nav-link:hover {
    color: #066ac9;
    background: rgba(6, 106, 201, 0.05);
}

/* Modern Button Styles */
.cm-btn {
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 20px rgba(6, 106, 201, 0.3);
}

.cm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.cm-btn:hover::before {
    left: 0;
}

.cm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 106, 201, 0.5);
    color: #ffffff;
}

/* Video Background Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(6, 107, 201, 0.292) 0%,
        rgba(13, 27, 62, 0.90) 100%
    );
    z-index: 1;
}
@media only screen and (max-width:500px){
    .hero-section {
   padding-top: 110px!important;
}
}
.hero-section .container {
    z-index: 2;
}

/* Hero Title Styles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #066ac9 0%, #0d4a8a 100%);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(6, 106, 201, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(6, 106, 201, 0.8);
    }
}

/* Modern Stats Cards */
.stats-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(6, 106, 201, 0.3);
    border-color: #066ac9;
}

.stats-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    border-radius: 15px;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(6, 106, 201, 0.3);
}

.stats-icon img {
    filter: brightness(0) invert(1);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stats-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Buttons */
.modern-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(6, 106, 201, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.modern-btn:hover::before {
    width: 100%;
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 106, 201, 0.6);
    color: #ffffff;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(6, 106, 201, 0.2);
    border-color: #066ac9;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(6, 106, 201, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.8;
}

/* Vertical Cards */
.vertical-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.vertical-card:hover {
    transform: translateY(-8px);
    border-color: #066ac9;
    box-shadow: 0 15px 40px rgba(6, 106, 201, 0.2);
}

.vertical-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #066ac9;
    box-shadow: 0 0 0 0.2rem rgba(6, 106, 201, 0.15);
}

/* FAQ Section */
.accordion-item {
    border: none;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-button {
    background: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0d1b3e;
    padding: 20px 25px;
    border-radius: 15px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d1b3e 0%, #066ac9 100%);
    color: #ffffff;
}

footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Smooth Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ========== ENHANCED FEATURE CARDS ========== */
.hover-effect {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.hover-effect:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(6, 106, 201, 0.25) !important;
    border-color: #066ac9;
}

/* Enhanced Icons */
.icon-lg {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    box-shadow: 0 8px 20px rgba(6, 106, 201, 0.3);
    transition: all 0.3s ease;
}

.hover-effect:hover .icon-lg {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(6, 106, 201, 0.5);
}

/* ========== SECTION HEADERS ========== */
h2 {
    font-weight: 800;
    color: #0d1b3e;
    position: relative;
}

section h2 {
    margin-bottom: 30px;
    text-align: center;
}

/* section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    border-radius: 2px;
    margin: 15px auto 0;
} */

.d-flex.justify-content-center h2::after {
    margin: 15px auto 0;
}

/* ========== SERVICE CARDS REDESIGN ========== */
.neoneffect,
.neoneffects {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #066ac9, #4facfe, #00f2fe, #066ac9);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card:hover .neoneffect,
.card:hover .neoneffects {
    opacity: 1;
}

/* ========== CAROUSEL REDESIGN ========== */
.neoneffectslider {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite;
}

.owl-carousel .item:hover .neoneffectslider {
    opacity: 1;
}

.owl-carousel .shadow {
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
}

.owl-carousel .item:hover .shadow {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(6, 106, 201, 0.2) !important;
}

/* ========== CONTACT SECTION ========== */
.touchus {
    background: linear-gradient(135deg, rgba(6, 106, 201, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    border: 2px solid rgba(6, 106, 201, 0.1);
}

.touchus h1 {
    color: #0d1b3e;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-form-wrapper .card {
    border: none;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER REDESIGN ========== */
footer {
    background: linear-gradient(135deg, #0d1b3e 0%, #066ac9 100%) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/Bg.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #4facfe !important;
    padding-left: 10px;
}

/* ========== CATEGORY/VERTICAL CARDS ========== */
.card-body {
    transition: all 0.3s ease;
}

[data-aos="transform-anim1"] .card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-top {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(6, 106, 201, 0.4);
    transition: all 0.3s ease;
}

.back-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(6, 106, 201, 0.6);
}

/* ========== ACCORDION/FAQ REDESIGN ========== */
.accordion-item {
    border: none;
    border-radius: 15px !important;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 40px rgba(6, 106, 201, 0.2);
}

.accordion-button {
    background: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0d1b3e;
    padding: 20px 30px;
    border-radius: 15px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* ========== PUBLISHERS/ADVERTISERS BUTTONS ========== */
.publishers .cta-button,
.advertisers .cta-button {
    background: linear-gradient(135deg, #066ac9 0%, #4facfe 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(6, 106, 201, 0.4);
    transition: all 0.3s ease;
}

.publishers .cta-button:hover,
.advertisers .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 106, 201, 0.6);
}

/* ========== ANIMATION ENHANCEMENTS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate__animated {
    animation-duration: 1s;
}

/* ========== RESPONSIVE IMPROVEMENTS ========== */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 5px 0;
    }
    
    .cm-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .touchus {
        padding: 30px 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
}
