.navbar-scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-blur{
    backdrop-filter: blur(67px) !important;
}
/*mega menu start*/
/* Service Dropdown Styling */
#servicesDropdown + .dropdown-menu {
    min-width: 280px;
}

#servicesDropdown + .dropdown-menu .dropdown-header {
    color: #06A3DA;
    font-weight: 600;
    font-size: 14px;
}

#servicesDropdown + .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#servicesDropdown + .dropdown-menu .dropdown-item:hover {
    background-color: rgba(6, 163, 218, 0.1);
    color: #06A3DA;
    padding-left: 25px;
}

#servicesDropdown + .dropdown-menu .dropdown-item i {
    color: #06A3DA;
}

/* Industry Dropdown Styling */
#industryDropdown + .dropdown-menu {
    min-width: 260px;
}

#industryDropdown + .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#industryDropdown + .dropdown-menu .dropdown-item:hover {
    background-color: rgba(6, 163, 218, 0.1);
    color: #06A3DA;
    padding-left: 25px;
}

#industryDropdown + .dropdown-menu .dropdown-item i {
    color: #06A3DA;
}
/*mega menu end*/
/* Hero Section */
.custom-hero-content {
    text-align: center;
}

.custom-hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
}

.custom-hero-titleeee {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.custom-hero-title {
    font-size: 36px;                 
    font-weight: 700;
    line-height: 1.15;               
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 900px;                 
    margin: 0 auto 1rem auto;       
    white-space: normal;
}

.custom-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services Section */
.custom-erp-services-section {
    background: #fff;
}

.custom-section-header .custom-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
}

.custom-section-header .custom-section-desc {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.custom-service-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.custom-service-box:hover {
    box-shadow: 0 5px 20px rgba(6, 163, 218, 0.15);
    border-color: #06A3DA;
}

.custom-service-icon {
    width: 60px;
    height: 60px;
    background: #06A3DA;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-service-icon i {
    font-size: 28px;
    color: #fff;
}

.custom-service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.custom-service-desc {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Industries Section */
.custom-industries-section {
    position: relative;
    min-height: 100vh;
}

/* Background with image */
.animated-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 30s ease-in-out infinite alternate;
    filter: blur(3px);
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.9) 0%, rgba(13, 202, 240, 0.85) 100%);
    backdrop-filter: blur(10px);
}

/* Floating shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-50px) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(20px) rotate(270deg);
    }
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Industry cards with glass effect */
/*.glass-card {*/
/*    background: rgba(255, 255, 255, 0.15);*/
/*    backdrop-filter: blur(10px);*/
/*    -webkit-backdrop-filter: blur(10px);*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);*/
/*}*/
.glass-card {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

.custom-industry-card {
    border-radius: 15px;
    padding: 0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.custom-industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.custom-industry-card:hover::before {
    left: 100%;
}

/*.custom-industry-card:hover {*/
/*    transform: translateY(-10px) scale(1.05);*/
/*    background: rgba(255, 255, 255, 0.25);*/
/*    box-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.25);*/
/*    border-color: rgba(255, 255, 255, 0.4);*/
/*}*/
.custom-industry-card:hover {
    transform: translateY(-5px) scale(1.008); /* super subtle zoom */
    background: rgba(255,255,255,0.28);
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    border-color: rgba(255,255,255,0.32);
}

.card-inner {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.custom-industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/*.custom-industry-card:hover .custom-industry-icon {*/
/*    transform: rotateY(360deg) scale(1.15);*/
/*    background: #fff;*/
/*    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);*/
/*}*/
.custom-industry-card:hover .custom-industry-icon {
    /* transform: none; */
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.2);
    background: #fff;
}

.custom-industry-icon i {
    font-size: 26px;
    color: #06A3DA;
}

.custom-industry-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.custom-bottom-text {
    margin-top: 30px;
}

.custom-partnership-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.partnership-badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
}

.partnership-badge i {
    font-size: 22px;
}

/* Quote Section */
.custom-quote-section {
    background: #fff;
    position: relative;
}

.quote-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(30deg, #06A3DA 12%, transparent 12.5%, transparent 87%, #06A3DA 87.5%, #06A3DA),
        linear-gradient(150deg, #06A3DA 12%, transparent 12.5%, transparent 87%, #06A3DA 87.5%, #06A3DA);
    background-size: 80px 140px;
    pointer-events: none;
}

.custom-quote-title {
    font-size: 42px;
    font-weight: 800 !important;
    color: #1a1a1a;
}

.custom-quote-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #06A3DA;
    line-height: 1.4;
}

.custom-quote-desc {
    font-size: 16px;
    color: #666;
    font-family: 'Rubik';
    line-height: 1.8;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06A3DA 0%, #0dcaf0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #fff;
    font-size: 18px;
}

.feature-text h6 {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

/* Form styling */
.custom-quote-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(6, 163, 218, 0.1);
    border: 1px solid rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/*.custom-quote-form::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -50%;*/
/*    left: -50%;*/
/*    width: 200%;*/
/*    height: 200%;*/
/*    background: radial-gradient(circle, rgba(6, 163, 218, 0.05) 0%, transparent 70%);*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s;*/
/*}*/

.custom-quote-form:hover::before {
    opacity: 1;
}

.custom-quote-form:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(6, 163, 218, 0.2);
}

.form-label {
    color: #1a1a1a;
    font-size: 14px;
    margin-bottom: 8px;
}

.custom-form-input {
    border: 2px solid #e9ecef;
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.custom-form-input:focus {
    border-color: #06A3DA;
    box-shadow: 0 0 0 0.25rem rgba(6, 163, 218, 0.15);
    background: #fff;
    transform: translateY(-2px);
}

.custom-submit-btn {
    background: linear-gradient(135deg, #06A3DA 0%, #0dcaf0 100%);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.3);
    position: relative;
    overflow: hidden;
}

.custom-submit-btn::before {
    content: '';
    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;
}

.custom-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.custom-submit-btn:hover {
    background: linear-gradient(135deg, #06A3DA 0%, #0dcaf0 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 163, 218, 0.4);
    color: #fff;
}

/* Logo Slider */
.owl-carousel .owl-item img {
    height: 80px !important;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .custom-hero-title {
        font-size: 32px;
    }
    
    .custom-hero-subtitle {
        font-size: 16px;
    }
    
    .custom-hero-buttons .btn {
        padding: 10px 25px !important;
        font-size: 14px;
    }
    
    .custom-quote-title {
        font-size: 32px;
    }
    
    .custom-section-header .custom-section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .custom-hero-title {
        font-size: 26px;
        line-height: 1.4;
    }
    
    .custom-hero-subtitle {
        font-size: 14px;
    }
    
    .custom-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .custom-hero-buttons .btn {
        padding: 12px 30px !important;
        font-size: 14px;
        width: 100%;
    }
    
    .custom-quote-form {
        padding: 30px 20px;
    }
    
    .partnership-badge {
        font-size: 16px;
        padding: 15px 30px;
    }
    
    .custom-quote-title {
        font-size: 28px;
    }
    
    .custom-quote-subtitle {
        font-size: 18px;
    }
    
    .shape {
        display: none;
    }
}

@media (max-width: 576px) {
    
    .carousel-caption h1 {
        font-size: 13px;
    }
    .custom-hero-title {
        font-size: 22px;
    }
    
    .custom-hero-subtitle {
        font-size: 14px !important;
    }
    
    .custom-hero-content {
        padding: 15px !important;
    }
    
    .custom-industry-icon {
        width: 50px;
        height: 50px;
    }
    
    .custom-industry-icon i {
        font-size: 22px;
    }
    
    .custom-industry-name {
        font-size: 14px;
    }
    
    .partnership-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
}
/*handling blogs images*/
.blog-item .blog-img img {
    transition: .5s;
    height: 350px !important;
    width: 100% !important;
}