.bg-theme{
    background-color:  #000f7f;
}
.banner-home{
    position:relative ;
}
#get-in-touch{
    position: relative;
}

.banner-home::before, #get-in-touch::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000F7F;
    background: linear-gradient(178deg, rgba(0, 15, 127, 1) 0%, rgba(0, 15, 127, 0.66) 100%);
}

/* ========================================
   Custom Dropdown Navigation Styles
   ======================================== */

/* Desktop Dropdown Styles */
.navigation-list .nav-dropdown {
    position: relative;
}

.navigation-list .nav-dropdown .nav-dropdown-toggle {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Dropdown arrow icon */
.navigation-list .nav-dropdown .nav-dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.navigation-list .nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown menu container */
.navigation-list .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    list-style: none;
    border-top: 3px solid #000f7f;
}

/* Show dropdown on hover */
.navigation-list .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 5px;
}

/* Dropdown menu items */
.navigation-list .nav-dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation-list .nav-dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect with sliding background */
.navigation-list .nav-dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #000f7f;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.navigation-list .nav-dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.navigation-list .nav-dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(0, 15, 127, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    color: #000f7f;
    padding-left: 30px;
}

/* Add subtle animation to each item */
.navigation-list .nav-dropdown-menu li {
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
}

.navigation-list .nav-dropdown:hover .nav-dropdown-menu li:nth-child(1) {
    animation-delay: 0.05s;
}

.navigation-list .nav-dropdown:hover .nav-dropdown-menu li:nth-child(2) {
    animation-delay: 0.1s;
}

.navigation-list .nav-dropdown:hover .nav-dropdown-menu li:nth-child(3) {
    animation-delay: 0.15s;
}

.navigation-list .nav-dropdown:hover .nav-dropdown-menu li:nth-child(4) {
    animation-delay: 0.2s;
}

.navigation-list .nav-dropdown:hover .nav-dropdown-menu li:nth-child(5) {
    animation-delay: 0.25s;
}

.navigation-list .nav-dropdown:hover .nav-dropdown-menu li:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Drawer Navigation Styles
   ======================================== */

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
    backdrop-filter: blur(2px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Container */
.drawer-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    overflow-y: auto;
}

.drawer-nav.active {
    left: 0;
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #000f7f 0%, #0015a0 100%);
}

.drawer-header img {
    filter: brightness(0) invert(1);
}

.close-drawer {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.close-drawer:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Drawer Body */
.drawer-body {
    padding: 15px 0;
}

/* Drawer Menu */
.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu > li {
    border-bottom: 1px solid #f0f0f0;
}

.drawer-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.drawer-menu > li > a:hover {
    background: linear-gradient(90deg, rgba(0, 15, 127, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    color: #000f7f;
    padding-left: 25px;
}

/* Drawer Submenu Item */
.drawer-nav .nav-submenu-item > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-nav .submenu-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.drawer-nav .nav-submenu-item.active .submenu-icon {
    transform: rotate(180deg);
}

/* Submenu Container */
.drawer-nav .nav-submenu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    background: #f8f9fa;
    margin: 0;
}

.drawer-nav .nav-submenu-item.active .nav-submenu {
    max-height: 500px;
    opacity: 1;
    padding: 10px 0;
}

.drawer-nav .nav-submenu li {
    list-style: none;
    margin: 0;
}

.drawer-nav .nav-submenu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.drawer-nav .nav-submenu li a::before {
    content: '→';
    position: absolute;
    left: 22px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #000f7f;
}

.drawer-nav .nav-submenu li a:hover::before {
    opacity: 1;
    left: 18px;
}

.drawer-nav .nav-submenu li a:hover {
    color: #000f7f;
    padding-left: 45px;
    background: rgba(0, 15, 127, 0.08);
}

/* ========================================
   Additional Fixes
   ======================================== */

/* Remove Bootstrap dropdown default arrow */
.dropdown-toggle::after {
    content: none;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 991px) {
    .navigation-list .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 0;
        margin: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .navigation-list .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }
}

/* ========================================
   Industry Section Styles - New Design
   ======================================== */

.industry-section-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.industry-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 15, 127, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 186, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.industry-section-wrapper {
    position: relative;
    z-index: 1;
}

/* Section Header */
.industry-heading-new {
    text-align: center;
    margin-bottom: 20px;
}

.industry-heading-new h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 0;
}

.industry-heading-new h2 span {
    color: #ffba00;
    position: relative;
    display: inline-block;
}

.industry-heading-new h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffba00 0%, #ff9500 100%);
    border-radius: 2px;
}

.industry-description-new {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.industry-description-new p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Industry Cards */
.industry-card-new {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #000f7f 0%, #ffba00 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industry-card-new:hover::before {
    transform: scaleX(1);
}

.industry-card-new::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 186, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
    pointer-events: none;
}

.industry-card-new:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.industry-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.industry-icon-new {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.industry-card-new:hover .industry-icon-new {
    background: linear-gradient(135deg, #000f7f 0%, #0018b0 100%);
    transform: scale(1.1) rotate(5deg);
}

.industry-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0.8);
}

.industry-card-new:hover .industry-icon-new img {
    filter: brightness(0) invert(1);
    transform: scale(1.05);
}

/* Heading */
.industry-card-title-new {
    text-align: center;
    margin-bottom: 20px;
}

.industry-card-title-new h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card-new:hover .industry-card-title-new h3 {
    color: #000f7f;
}

/* Description */
.industry-card-text-new {
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

.industry-card-text-new p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Learn More Button */
.industry-card-link-new {
    text-align: center;
    position: relative;
    z-index: 1;
}

.industry-card-link-new a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.industry-card-link-new p {
    font-size: 16px;
    font-weight: 600;
    color: #000f7f;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.industry-card-link-new a:hover p {
    color: #ffba00;
    gap: 12px;
}

.industry-card-link-new i {
    transition: transform 0.3s ease;
}

.industry-card-link-new a:hover i {
    transform: translateX(5px);
}

/* Arrow Navigation Buttons */
.style-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000f7f;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.style-arrow-btn:hover {
    background: #000f7f;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 15, 127, 0.3);
    transform: scale(1.1);
    text-decoration: none;
}

/* Bottom CTA Section */
.industry-cta-wrapper-new {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .industry-section-new {
        padding: 60px 0;
    }
    
    .industry-heading-new h2 {
        font-size: 32px;
    }
    
    .industry-card-new {
        padding: 35px 25px;
        margin-bottom: 25px;
    }
    
    .industry-card-title-new h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .industry-section-new {
        padding: 50px 0;
    }
    
    .industry-heading-new h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .industry-description-new {
        margin-bottom: 35px;
    }
    
    .industry-description-new p {
        font-size: 15px;
    }
    
    .industry-card-new {
        padding: 30px 20px;
        margin-bottom: 0;
        /* Remove animations on mobile for better performance */
        transition: none;
    }
    
    .industry-card-new:hover {
        transform: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }
    
    .industry-card-new::after {
        display: none;
    }
    
    .industry-icon-new {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .industry-card-new:hover .industry-icon-new {
        transform: scale(1.05);
    }
    
    .industry-card-title-new h3 {
        font-size: 20px;
    }
    
    .industry-card-text-new p {
        font-size: 14px;
    }
    
    .industry-card-link-new p {
        font-size: 15px;
    }
    
    .industry-cta-wrapper-new {
        margin-top: 35px;
        gap: 15px;
    }
    
    /* Slider controls for mobile */
    .industry-slider-controls {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .industry-heading-new h2 {
        font-size: 24px;
    }
    
    .industry-icon-new {
        width: 70px;
        height: 70px;
    }
    
    .industry-card-title-new h3 {
        font-size: 18px;
    }
    
    .industry-cta-wrapper-new {
        flex-direction: column;
        align-items: center;
    }
    
    .industry-cta-wrapper-new a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

