/* Enhanced Navbar & Hero Styles */

/* ===== ENHANCED NAVBAR ===== */

/* Body padding for fixed navbar */
body {
    padding-top: 76px;
}

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

/* Ensure navbar background is always visible */
.navbar,
.navbar.navbar-expand-lg,
.navbar.navbar-expand-lg.fixed-top,
#mainNavbar {
    background: #0066cc !important;
    background-color: #0066cc !important;
    border-bottom: 2px solid #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    min-height: 70px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
}

/* Navbar scrolled state */
.navbar.navbar-scrolled {
    box-shadow: 0 4px 30px rgba(0, 102, 204, 0.3);
    background: #0066cc !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffffff !important;
}

/* Override any Bootstrap default navbar styles */
.navbar.bg-light,
.navbar.bg-white,
.navbar.bg-transparent,
.navbar.bg-body-tertiary {
    background: #0066cc !important;
    background-color: #0066cc !important;
}

/* Additional specificity for navbar background */
nav.navbar,
nav.navbar.navbar-expand-lg,
nav.navbar.navbar-expand-lg.fixed-top {
    background: #0066cc !important;
    background-color: #0066cc !important;
}

/* Brand Logo */
.navbar-brand {
    flex-shrink: 0;
    margin-right: 1rem;
}

.brand-logo {
    transition: transform 0.3s ease;
    object-fit: contain;
    background: transparent;
    filter: brightness(1) contrast(1);
    max-width: 100%;
    height: auto;
}

.footer-logo {
    transition: transform 0.3s ease;
    object-fit: contain;
    background: transparent;
    filter: brightness(1.1) contrast(1.1);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    margin-left: 0.5rem;
}

.brand-primary {
    color: #FFFFFF;
}

.brand-accent {
    color: #4D90FE;
    text-shadow: 0 0 10px rgba(77, 144, 254, 0.5);
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

/* Navigation Icons - Hidden for main menu items */
.nav-icon {
    display: none !important;
}

/* Consistent Nav Link Styling - All menu items */
.navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-nav .nav-link span {
    display: inline-block;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4D90FE, transparent);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(77, 144, 254, 0.5);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(77, 144, 254, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    background: rgba(77, 144, 254, 0.25);
    box-shadow: 0 4px 12px rgba(77, 144, 254, 0.3);
}

/* Override nav-link styles for CTA button */
.navbar-nav .nav-link.cta-button::before,
.navbar-nav .nav-link.cta-button::after {
    display: none !important;
}

.navbar-nav .nav-link.cta-button:hover {
    transform: translateY(-3px);
    background: #4D90FE !important;
    box-shadow: 0 6px 20px rgba(77, 144, 254, 0.4);
}

.navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, #4D90FE, transparent);
    box-shadow: 0 0 15px rgba(77, 144, 254, 0.6);
}

.navbar-nav .nav-link:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.navbar-nav .nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.15) translateY(-1px);
    color: #ffffff;
    text-shadow: 0 0 8px rgba(77, 144, 254, 0.6);
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
    background: rgba(77, 144, 254, 0.3);
    box-shadow: 0 2px 8px rgba(77, 144, 254, 0.25);
    position: relative;
}

.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, #4D90FE, transparent);
    box-shadow: 0 0 12px rgba(77, 144, 254, 0.7);
    height: 3px;
}

.navbar-nav .nav-link.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: radial-gradient(circle, rgba(77, 144, 254, 0.25) 0%, transparent 70%);
}

.navbar-nav .nav-link.active .nav-icon {
    opacity: 1;
    color: #ffffff;
    transform: scale(1.1);
    text-shadow: 0 0 6px rgba(77, 144, 254, 0.5);
}

/* Dropdown Arrows - Consistent for all dropdowns */
.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    opacity: 0.7;
}

.dropdown-toggle:hover .dropdown-arrow {
    opacity: 1;
    transform: translateY(2px);
}

.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Ensure dropdown toggles don't wrap */
.dropdown-toggle {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* Mega Dropdown - Consistent for all dropdowns */
.mega-dropdown {
    width: 600px;
    max-width: calc(100vw - 2rem);
    padding: 0;
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    border: 1px solid rgba(77, 144, 254, 0.1);
}

/* Dropdown positioning for better fit */
.dropdown-menu {
    left: auto !important;
    right: 0 !important;
    transform: translateX(0) !important;
}

.dropdown-menu[data-bs-popper] {
    left: auto !important;
    right: 0 !important;
    margin-top: 0.5rem;
}

.dropdown-header {
    background: #0066cc;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.dropdown-header h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.dropdown-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 1rem;
}

.service-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #212529;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: linear-gradient(135deg, rgba(77, 144, 254, 0.1) 0%, rgba(0, 102, 204, 0.08) 100%);
    transform: translateY(-3px);
    color: #0066cc;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    border-left: 3px solid #4D90FE;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #0066cc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-link:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(77, 144, 254, 0.4);
    background: linear-gradient(135deg, #4D90FE 0%, #0066cc 100%);
}

.service-info h6 {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-info p {
    margin: 0.2rem 0 0 0;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Enhanced CTA Button - Consistent with other nav items */
.nav-link.cta-button,
.cta-button {
    position: relative;
    overflow: hidden;
    border-radius: 30px !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    font-size: 0.9rem !important;
    background: #ffffff !important;
    border: 2px solid #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    white-space: nowrap;
}

.nav-link.cta-button,
.nav-link.cta-button *,
.nav-link.cta-button i,
.nav-link.cta-button span,
.cta-button,
.cta-button *,
.cta-button i,
.cta-button span {
    color: #000000 !important;
}

.nav-link.cta-button:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 144, 254, 0.4);
    background: #4D90FE !important;
    border-color: #4D90FE !important;
}

.nav-link.cta-button:hover,
.nav-link.cta-button:hover *,
.nav-link.cta-button:hover i,
.nav-link.cta-button:hover span,
.cta-button:hover,
.cta-button:hover *,
.cta-button:hover i,
.cta-button:hover span {
    color: #ffffff !important;
}

.cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover .cta-ripple {
    width: 300px;
    height: 300px;
}

/* Progress Bar */
.navbar-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #4D90FE;
    width: 0;
    transition: width 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Tablet Responsive - Medium screens */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem !important;
        padding: 0.5rem 0.6rem !important;
    }
    
    .cta-button {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
    
    .mega-dropdown {
        width: 550px;
    }
}

/* Mobile Responsive - Consistent styling */
@media (max-width: 991.98px) {
    .brand-logo {
        width: 100px !important;
        height: 38px !important;
        max-width: 100px;
        max-height: 38px;
    }
    
    .footer-logo {
        width: 120px !important;
        height: 45px !important;
        max-width: 120px;
        max-height: 45px;
    }
    
    .navbar-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.15rem 0;
        text-align: left;
        justify-content: flex-start;
        border-radius: 8px;
        width: 100%;
        font-size: 0.95rem !important;
    }
    
    .navbar-nav .nav-link::after {
        left: 1rem;
        transform: scaleX(0);
        width: 4px;
        height: 60%;
        top: 50%;
        bottom: auto;
        transform-origin: center;
    }
    
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        transform: scaleY(1);
    }
    
    .nav-icon {
        display: inline-block;
        margin-right: 0.5rem;
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .cta-button {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.75rem 1.5rem !important;
    }
    
    .mega-dropdown {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0.5rem;
        border-radius: 10px;
        position: static !important;
        transform: none !important;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .dropdown-item {
        margin-bottom: 0.25rem;
    }
    
    .service-link {
        padding: 0.75rem !important;
    }
    
    .service-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
    
    .service-info h6 {
        font-size: 0.9rem !important;
    }
    
    .service-info p {
        font-size: 0.75rem !important;
    }
    
    .navbar-collapse {
        background: rgba(0, 102, 204, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
        border: 1px solid rgba(77, 144, 254, 0.3);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .dropdown-toggle::after {
        margin-left: auto;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(77, 144, 254, 0.2);
    }
}

/* Small Mobile - Extra small screens */
@media (max-width: 575.98px) {
    .brand-logo {
        width: 90px !important;
        height: 34px !important;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem !important;
        padding: 0.7rem 0.9rem !important;
    }
    
    .dropdown-header {
        padding: 1rem !important;
    }
    
    .dropdown-header h6 {
        font-size: 1rem !important;
    }
    
    .dropdown-header p {
        font-size: 0.85rem !important;
    }
    
    .service-link {
        padding: 0.6rem !important;
    }
    
    .service-icon {
        width: 40px !important;
        height: 40px !important;
        margin-right: 0.75rem !important;
    }
}

/* Animation for dropdown */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== ENHANCED HERO SECTION ===== */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: #0066cc !important;
    background-color: #0066cc !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(77, 144, 254, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 102, 204, 0.3) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(77, 144, 254, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(217, 234, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: particleFloat 20s linear infinite;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(77, 144, 254, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 234, 255, 0.08) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 15s linear infinite;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 144, 254, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.hero-badge i {
    margin-right: 0.5rem;
    color: #FFC300;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    color: #FFFFFF;
}

.hero-title-highlight {
    display: block;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(77, 144, 254, 0.5);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #d9eaff;
}

/* Hero Benefits */
.hero-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.benefit-item i {
    color: #4D90FE;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    position: relative;
    overflow: hidden;
    background: #ffffff !important;
    border: 2px solid #ffffff !important;
    border-radius: 50px !important;
    padding: 1rem 2rem !important;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000000 !important;
    transition: all 0.4s ease;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn-primary:hover .btn-ripple {
    width: 400px;
    height: 400px;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    background: #4D90FE !important;
    border-color: #4D90FE !important;
    color: #ffffff !important;
}

.hero-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50px !important;
    padding: 1rem 2rem !important;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4D90FE;
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 3;
}

.hero-main-visual {
    position: relative;
    height: 500px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #4D90FE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    color: white;
    font-size: 1.1rem;
}

.card-content h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
}

.card-content p {
    margin: 0.2rem 0 0 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(90deg, #4D90FE 0%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover .card-glow {
    opacity: 0.3;
}

/* Card Positions */
.ai-card {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.security-card {
    top: 60%;
    right: -10%;
    animation-delay: 1s;
}

.cloud-card {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.automation-card {
    top: 30%;
    right: 5%;
    animation-delay: 3s;
}

/* Pulse Circles */
.hero-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pulse-circle {
    position: absolute;
    border: 2px solid rgba(77, 144, 254, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.pulse-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.pulse-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.pulse-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #FFFFFF;
    z-index: 3;
}

.scroll-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
    color: #4D90FE;
}

/* Animations */
@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .mega-dropdown {
        width: 100%;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
    }
    
    /* Responsive hero radius */
    .hero-section {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        width: 80px !important;
        height: 30px !important;
        max-width: 80px;
        max-height: 30px;
    }
    
    .footer-logo {
        width: 100px !important;
        height: 38px !important;
        max-width: 100px;
        max-height: 38px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-trust {
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    /* Smaller radius for mobile */
    .hero-section {
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
}

/* ===== SERVICES SECTION STYLES ===== */

.services-section {
    position: relative;
    padding: 5rem 0 !important;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8F9FA 100%);
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(77, 144, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Cards - Professional Design */
.services-section .industry-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.services-section .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section .industry-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.services-section .industry-card:hover {
    border-color: #0066cc;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    transform: translateY(-8px);
}

.services-section .industry-card:hover::before {
    transform: scaleX(1);
}

.services-section .industry-card:hover::after {
    opacity: 1;
}

.services-section .industry-card h3 {
    color: #212529;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.services-section .industry-card:hover h3 {
    color: #0066cc;
}

.services-section .industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.services-section .industry-icon i {
    font-size: 2rem;
    color: #FFFFFF;
    transition: transform 0.4s ease;
}

.services-section .industry-card:hover .industry-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3);
}

.services-section .industry-card:hover .industry-icon i {
    transform: scale(1.1);
}

.services-section .industry-details {
    opacity: 1;
    transform: none;
    height: auto;
}

.services-section .industry-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-section .industry-details ul li {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.services-section .industry-details ul li i {
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: #00C853;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-section .industry-card:hover .industry-details ul li {
    transform: translateX(5px);
    color: #212529;
}

.services-section .industry-card:hover .industry-details ul li i {
    transform: scale(1.2);
    color: #00C853;
}

/* Responsive Services Section */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    .services-section .industry-card {
        padding: 2rem 1.5rem !important;
    }

    .services-section .industry-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .services-section .industry-icon i {
        font-size: 1.75rem !important;
    }

    .services-section .industry-card h3 {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.75rem !important;
    }

    .services-section {
        padding: 3rem 0 !important;
    }

    .section-header {
        margin-bottom: 3rem !important;
    }

    .services-section .industry-card {
        padding: 1.75rem 1.5rem !important;
    }

    .services-section .industry-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .services-section .industry-icon i {
        font-size: 1.5rem !important;
    }
}

/* ===== INDUSTRIES SECTION STYLES ===== */

.industries-section {
    position: relative;
    padding: 5rem 0 !important;
    background: linear-gradient(to bottom, #F8F9FA 0%, #FFFFFF 100%);
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(77, 144, 254, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.industries-section .container {
    position: relative;
    z-index: 1;
}

/* Industry Cards - Professional Design */
.industries-section .industry-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.industries-section .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4D90FE 0%, #0066cc 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industries-section .industry-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 144, 254, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.industries-section .industry-card:hover {
    border-color: #4D90FE;
    box-shadow: 0 15px 40px rgba(77, 144, 254, 0.2);
    transform: translateY(-8px);
}

.industries-section .industry-card:hover::before {
    transform: scaleX(1);
}

.industries-section .industry-card:hover::after {
    opacity: 1;
}

.industries-section .industry-card h3 {
    color: #212529;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.industries-section .industry-card:hover h3 {
    color: #4D90FE;
}

.industries-section .industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4D90FE 0%, #0066cc 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(77, 144, 254, 0.2);
}

.industries-section .industry-icon i {
    font-size: 2rem;
    color: #FFFFFF;
    transition: transform 0.4s ease;
}

.industries-section .industry-card:hover .industry-icon {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(77, 144, 254, 0.3);
}

.industries-section .industry-card:hover .industry-icon i {
    transform: scale(1.1);
}

.industries-section .industry-details {
    opacity: 1;
    transform: none;
    height: auto;
}

.industries-section .industry-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industries-section .industry-details ul li {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.industries-section .industry-details ul li i {
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: #00C853;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.industries-section .industry-card:hover .industry-details ul li {
    transform: translateX(5px);
    color: #212529;
}

.industries-section .industry-card:hover .industry-details ul li i {
    transform: scale(1.2);
    color: #00C853;
}

/* Responsive Industries Section */
@media (max-width: 991.98px) {
    .industries-section .industry-card {
        padding: 2rem 1.5rem !important;
    }

    .industries-section .industry-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .industries-section .industry-icon i {
        font-size: 1.75rem !important;
    }

    .industries-section .industry-card h3 {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 767.98px) {
    .industries-section {
        padding: 3rem 0 !important;
    }

    .industries-section .industry-card {
        padding: 1.75rem 1.5rem !important;
    }

    .industries-section .industry-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .industries-section .industry-icon i {
        font-size: 1.5rem !important;
    }
}

/* ===== CASE STUDIES SECTION STYLES ===== */

.case-studies-section {
    position: relative;
    padding: 5rem 0 !important;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8F9FA 100%);
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.case-studies-section .container {
    position: relative;
    z-index: 1;
}

/* Case Study Cards - Professional Design */
.case-study-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.case-study-card:hover {
    border-color: #0066cc;
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
    transform: translateY(-10px);
}

.case-study-card:hover::before {
    transform: scaleX(1);
}

.case-study-card img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-card:hover img {
    transform: scale(1.05);
}

.case-study-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(77, 144, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.case-study-card:hover .case-study-image-overlay {
    opacity: 1;
}

.case-study-card .card-body {
    padding: 2rem;
}

.case-study-card .badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    border: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.case-study-card .badge.bg-primary {
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    color: #FFFFFF;
}

.case-study-card .badge.bg-info {
    background: linear-gradient(135deg, #4D90FE 0%, #0066cc 100%);
    color: #FFFFFF;
}

.case-study-card .card-title {
    color: #212529;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.case-study-card:hover .card-title {
    color: #0066cc;
}

.case-study-card .card-title i {
    color: #0066cc;
    transition: transform 0.3s ease;
}

.case-study-card:hover .card-title i {
    transform: scale(1.1);
}

.case-study-card .card-text {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-study-card .list-unstyled {
    margin-bottom: 1.5rem;
}

.case-study-card .list-unstyled li {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.case-study-card .list-unstyled li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: #00C853;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.case-study-card:hover .list-unstyled li {
    transform: translateX(5px);
}

.case-study-card:hover .list-unstyled li i {
    transform: scale(1.2);
}

.case-study-card .btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    border: none;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.case-study-card .btn-primary:hover {
    background: linear-gradient(135deg, #4D90FE 0%, #0066cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.case-studies-section .btn-outline-primary {
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.case-studies-section .btn-outline-primary:hover {
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    border-color: #0066cc;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* Responsive Case Studies Section */
@media (max-width: 991.98px) {
    .case-study-card .card-body {
        padding: 1.5rem !important;
    }

    .case-study-card .card-title {
        font-size: 1.2rem !important;
    }

    .case-study-card .card-text {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 767.98px) {
    .case-studies-section {
        padding: 3rem 0 !important;
    }

    .case-study-card {
        margin-bottom: 1.5rem;
    }

    .case-study-card .card-body {
        padding: 1.25rem !important;
    }

    .case-study-card .card-title {
        font-size: 1.1rem !important;
    }

    .case-study-card .badge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}

/* ===== WHY CHOOSE NEURAL XPERT SECTION STYLES ===== */

.nx-advantage-section {
    position: relative;
    min-height: 500px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 0;
    overflow: hidden;
}

.nx-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nx-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0.5px) brightness(0.85);
    transition: transform 0.5s ease;
}

.nx-advantage-section:hover .nx-bg-image {
    transform: scale(1.02);
}

.nx-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(77, 144, 254, 0.75) 100%);
    z-index: 1;
}

.nx-advantage-section .container {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.nx-carousel-content {
    min-height: 500px;
    padding: 2rem 0;
}

/* Header Content */
.nx-header-content {
    margin-bottom: 2rem;
}

.nx-badge {
    display: inline-block;
}

.nx-badge-text {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nx-main-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nx-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Advantage Box */
.nx-advantage-box {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 600px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nx-advantage-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    z-index: 1;
}

.nx-advantage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.nx-box-title {
    color: #212529;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.nx-box-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    border-radius: 2px;
}

/* List Items */
.nx-list-item {
    display: flex;
    align-items: flex-start;
    color: #495057;
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nx-list-item:hover {
    transform: translateX(5px);
    color: #212529;
}

.nx-check-icon {
    color: #0066cc;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nx-list-item:hover .nx-check-icon {
    color: #4D90FE;
    transform: scale(1.2);
}

.nx-list-item span {
    flex: 1;
}

/* Carousel Controls */
.nx-carousel-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0.8;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.nx-carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.nx-carousel-control-prev {
    left: 2rem;
}

.nx-carousel-control-next {
    right: 2rem;
}

.nx-carousel-control .carousel-control-prev-icon,
.nx-carousel-control .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Responsive Why Choose Section */
@media (max-width: 991.98px) {
    .nx-advantage-section {
        min-height: 450px;
        padding: 3rem 0;
    }

    .nx-carousel-content {
        min-height: 450px;
    }

    .nx-main-title {
        font-size: 2.25rem;
    }

    .nx-subtitle {
        font-size: 1.1rem;
    }

    .nx-advantage-box {
        padding: 2rem;
        max-width: 100%;
    }

    .nx-box-title {
        font-size: 1.3rem;
    }

    .nx-list-item {
        font-size: 0.95rem;
    }

    .nx-carousel-control {
        width: 45px;
        height: 45px;
    }

    .nx-carousel-control-prev {
        left: 1rem;
    }

    .nx-carousel-control-next {
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .nx-advantage-section {
        min-height: 400px;
        padding: 2.5rem 0;
    }

    .nx-carousel-content {
        min-height: 400px;
        padding: 1rem 0;
    }

    .nx-main-title {
        font-size: 1.75rem;
    }

    .nx-subtitle {
        font-size: 1rem;
    }

    .nx-advantage-box {
        padding: 1.5rem;
    }

    .nx-box-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .nx-list-item {
        font-size: 0.9rem;
        margin-bottom: 0.75rem !important;
    }

    .nx-check-icon {
        font-size: 1rem;
    }

    .nx-carousel-control {
        width: 40px;
        height: 40px;
    }

    .nx-carousel-control .carousel-control-prev-icon,
    .nx-carousel-control .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

/* ===== LATEST BLOGS SECTION STYLES ===== */

.latest-blogs-section {
    position: relative;
    padding: 5rem 0 !important;
    background: linear-gradient(to bottom, #F8F9FA 0%, #FFFFFF 100%);
    overflow: hidden;
}

.latest-blogs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(77, 144, 254, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.latest-blogs-section .container {
    position: relative;
    z-index: 1;
}

/* Blog Card Link */
.blog-card-link {
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    text-decoration: none;
}

/* Blog Card */
.blog-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.blog-card:hover {
    border-color: #0066cc;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    transform: translateY(-8px);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

/* Blog Image Wrapper */
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #F8F9FA;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(77, 144, 254, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

/* Blog Date Small */
.blog-date-small {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #6c757d;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.blog-date-small i {
    font-size: 0.7rem;
    color: #0066cc;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-date-small {
    color: #0066cc;
}

.blog-card:hover .blog-date-small i {
    color: #4D90FE;
}

/* Card Body */
.blog-card .card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Blog Meta */
.blog-meta {
    margin-bottom: 1rem;
}


/* Blog Card Title */
.blog-card-title {
    color: #212529;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: #0066cc;
}

/* Blog Card Text */
.blog-card-text {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Read More */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more {
    color: #4D90FE;
    transform: translateX(5px);
}

.blog-read-more-icon {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more-icon {
    transform: translateX(5px);
}

/* Blog Section Button */
.latest-blogs-section .btn-outline-primary {
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.latest-blogs-section .btn-outline-primary:hover {
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    border-color: #0066cc;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* Responsive Latest Blogs Section */
@media (max-width: 991.98px) {
    .blog-card .card-body {
        padding: 1.5rem !important;
    }

    .blog-card-title {
        font-size: 1.15rem !important;
    }

    .blog-card-text {
        font-size: 0.9rem !important;
    }

    .blog-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .latest-blogs-section {
        padding: 3rem 0 !important;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }

    .blog-card .card-body {
        padding: 1.25rem !important;
    }

    .blog-card-title {
        font-size: 1.1rem !important;
    }

    .blog-image-wrapper {
        height: 200px;
    }

}

/* ===== TESTIMONIALS SECTION STYLES ===== */

.testimonials-section {
    position: relative;
    padding: 5rem 0 !important;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8F9FA 100%);
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

/* Testimonial Card */
.testimonial-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.testimonial-card:hover {
    border-color: #0066cc;
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
    transform: translateY(-8px);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

/* Testimonial Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(77, 144, 254, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.4s ease;
}

.testimonial-quote-icon i {
    font-size: 2rem;
    color: #0066cc;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    transform: scale(1.1) rotate(5deg);
}

.testimonial-card:hover .testimonial-quote-icon i {
    color: #FFFFFF;
    transform: scale(1.1);
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 2;
}

/* Testimonial Rating */
.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
    color: #FFB300;
}

/* Testimonial Quote */
.testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: #0066cc;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover .testimonial-text {
    color: #212529;
}

.testimonial-card:hover .testimonial-text::before {
    opacity: 0.3;
    color: #4D90FE;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #E5E7EB;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    border-top-color: #0066cc;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author-name {
    color: #0066cc;
}

.testimonial-author-role {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Testimonial Accent */
.testimonial-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-accent {
    transform: scaleX(1);
}

/* Responsive Testimonials Section */
@media (max-width: 991.98px) {
    .testimonial-content {
        padding: 2rem !important;
    }

    .testimonial-quote-icon {
        width: 60px;
        height: 60px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .testimonial-quote-icon i {
        font-size: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .testimonial-rating i {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 3rem 0 !important;
    }

    .testimonial-content {
        padding: 1.5rem !important;
    }

    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        top: 1rem;
        right: 1rem;
    }

    .testimonial-quote-icon i {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .testimonial-text::before {
        font-size: 2rem;
        top: -0.3rem;
    }

    .testimonial-rating {
        margin-bottom: 1rem;
    }

    .testimonial-rating i {
        font-size: 1rem;
    }

    .testimonial-author {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .testimonial-author-name {
        font-size: 1rem;
    }

    .testimonial-author-role {
        font-size: 0.85rem;
    }
}

/* ===== CALL TO ACTION (CTA) SECTION STYLES ===== */

.cta-section {
    position: relative;
    padding: 5rem 0 !important;
    overflow: hidden;
    margin: 4rem 0 0 0;
    border-radius: 2.5rem;
}

.cta-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.5s ease;
}

.cta-section:hover .cta-bg-image {
    transform: scale(1.05);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(77, 144, 254, 0.85) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

/* CTA Content */
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
}

.cta-badge-text {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
    gap: 1rem;
}

.cta-primary-btn {
    background: #FFFFFF;
    color: #0066cc;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

.cta-primary-btn span,
.cta-primary-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: #FFFFFF;
}

.cta-primary-btn:hover::before {
    left: 0;
}

.cta-primary-btn:hover span,
.cta-primary-btn:hover i {
    color: #FFFFFF;
}

.cta-primary-btn i {
    transition: transform 0.4s ease;
}

.cta-primary-btn:hover i {
    transform: translateX(5px);
}

.cta-secondary-btn {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* CTA Decorative Shapes */
.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    background: #FFFFFF;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    background: #FFFFFF;
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* Responsive CTA Section */
@media (max-width: 991.98px) {
    .cta-section {
        padding: 4rem 0 !important;
        border-radius: 2rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 3rem 0 !important;
        border-radius: 1.5rem;
        margin: 3rem 0 0 0;
    }

    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-shape {
        display: none;
    }
}

/* ===== FOOTER STYLES ===== */

footer.footer,
.footer {
    position: relative !important;
    background: linear-gradient(135deg, #1a1f3a 0%, #212529 100%) !important;
    color: #FFFFFF !important;
    margin-top: 4rem !important;
    overflow: hidden !important;
    border-top-left-radius: 2.5rem !important;
    border-top-right-radius: 2.5rem !important;
    padding: 0 !important;
    text-align: left !important;
    box-shadow: 0 -4px 32px 0 rgba(0, 0, 0, 0.15) !important;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(77, 144, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    padding: 4rem 0 2rem;
}

/* Footer Widget */
.footer-widget {
    height: 100%;
    padding: 0;
}

.footer .p-4 {
    padding: 0 !important;
    background: transparent !important;
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #4D90FE;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    color: #FFFFFF;
    transform: scale(1.1);
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #4D90FE;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0066cc 0%, #4D90FE 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-link:hover {
    border-color: #4D90FE;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 144, 254, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Footer Title */
.footer-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc 0%, #4D90FE 100%);
    bottom: -2px;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #4D90FE;
    padding-left: 10px;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 6px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

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

.footer-legal-links {
    gap: 1rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #4D90FE;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer {
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
    }

    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-widget {
        margin-bottom: 2rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer {
        border-top-left-radius: 1.5rem;
        border-top-right-radius: 1.5rem;
        margin-top: 3rem;
    }

    .footer-content {
        padding: 2.5rem 0 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
        margin-top: 1.5rem;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal-links {
        justify-content: center !important;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-legal-link {
        font-size: 0.85rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .contact-link {
        font-size: 0.9rem;
    }
} 