/********** Template CSS **********/
:root {
    --primary: #4761FF;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 0px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Hero Banner ***/
.hero-banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    height: 100%;
}

.hero-image {
    height: 100%;
    object-fit: cover;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(28, 32, 53, 0.8) 0%, 
        rgba(71, 97, 255, 0.6) 50%, 
        rgba(28, 32, 53, 0.9) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge .badge {
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.hero-services.justify-content-center {
    justify-content: center;
}

.service-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-buttons.justify-content-center {
    justify-content: center;
}

.btn-hero-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-hero-primary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(71, 97, 255, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/*** Section Headers ***/
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/*** Brand Positioning Section ***/
.brand-positioning {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.positioning-content {
    padding: 2rem;
}

.positioning-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.positioning-subtext {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.positioning-features {
    margin-bottom: 2.5rem;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark);
}

.feature-point i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.2rem;
}

.positioning-buttons {
    display: flex;
    gap: 15px;
}

.positioning-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(71, 97, 255, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    color: white;
    font-size: 1.8rem;
}

.visual-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.visual-card p {
    color: var(--secondary);
    line-height: 1.5;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(71, 97, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary);
}

/*** Services Preview Section ***/
.services-preview {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 97, 255, 0.1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(71, 97, 255, 0.2);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    color: white;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/*** Responsive Design ***/
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .positioning-visual {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .visual-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .positioning-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        text-align: center;
        display: block;
    }
}

/*** Enhanced Features ***/
.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 97, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(71, 97, 255, 0.15);
    border-color: var(--primary) !important;
}

.feature-item:hover .btn-square {
    background: var(--primary) !important;
    transform: scale(1.1);
}

.feature-item:hover h5 {
    color: var(--primary);
}

/*** Enhanced Service Items ***/
.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-15px);
}

.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
    border-radius: 10px;
}

.service-item:hover .service-text {
    top: -1.5rem;
    box-shadow: 0 20px 40px rgba(71, 97, 255, 0.2);
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
    border-radius: 0 0 10px 10px;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
    background: var(--primary);
}

.service-item:hover .service-btn a {
    color: white !important;
}

/*** Enhanced Project Items ***/
.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(71, 97, 255, 0.2);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(71, 97, 255, 0.9), rgba(28, 32, 53, 0.8));
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-item .project-overlay .btn {
    transform: scale(0);
    transition: all 0.3s ease;
}

.project-item:hover .project-overlay .btn {
    transform: scale(1);
}

.project-item .project-overlay .btn:nth-child(1) {
    transition-delay: 0.1s;
}

.project-item .project-overlay .btn:nth-child(2) {
    transition-delay: 0.2s;
}

.project-item:hover .project-overlay .btn:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

/*** Enhanced Team Items ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.team-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(71, 97, 255, 0.2);
}

.team-item img {
    transition: all 0.3s ease;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    transform: scale(1.1);
}

/*** Enhanced Testimonial Items ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-item:hover img {
    border-color: white;
    transform: scale(1.1);
}

/*** Enhanced Buttons ***/
.btn {
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-primary:hover {
    background: #3856e6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(71, 97, 255, 0.3);
}

/*** Enhanced Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

/*** Floating Animation ***/
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/*** Hero Supporting Text ***/
.hero-supporting-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hero-supporting-text span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

/*** Why Choose Us Section ***/
.why-choose-section {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 97, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #6366f1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(71, 97, 255, 0.15);
    border-color: var(--primary);
}

.why-icon-wrapper {
    margin-bottom: 2rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    color: white;
    font-size: 2rem;
}

.why-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.why-description {
    color: var(--secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/*** Industries Section ***/
.industries-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 97, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #6366f1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(71, 97, 255, 0.15);
    border-color: var(--primary);
}

.industry-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.industry-icon-wrapper i {
    color: white;
    font-size: 2rem;
}

.industry-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.industry-description {
    color: var(--secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/*** Process Section ***/
.process-section {
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 97, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #6366f1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(71, 97, 255, 0.15);
    border-color: var(--primary);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white !important;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(71, 97, 255, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-icon i {
    color: white;
    font-size: 1.8rem;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/*** Pricing Section ***/
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 97, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #6366f1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(71, 97, 255, 0.15);
    border-color: var(--primary);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(71, 97, 255, 0.2);
    border-color: var(--primary);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.pricing-header {
    margin-bottom: 2.5rem;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--secondary);
    vertical-align: super;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    vertical-align: middle;
}

.period {
    font-size: 1rem;
    color: var(--secondary);
    vertical-align: baseline;
}

.pricing-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark);
}

.feature-item i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.1rem;
    min-width: 16px;
}

.pricing-footer {
    margin-top: 2rem;
}

/*** Blog Carousel Styles ***/
.blog-carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.blog-carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.blog-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 0 1rem;
}

.blog-carousel .blog-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 350px;
}

.blog-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.blog-prev-btn {
    left: -25px;
}

.blog-next-btn {
    right: -25px;
}

.blog-carousel-btn i {
    transition: transform 0.3s ease;
}

.blog-carousel-btn:hover i {
    transform: scale(1.2);
}

/*** Contact Modal Styles ***/
#contactModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

#contactModal .modal-header {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: white;
    padding: 2rem 2rem 1.5rem;
}

#contactModal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

#contactModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#contactModal .btn-close:hover {
    opacity: 1;
}

#contactModal .modal-body {
    padding: 2rem;
}

#contactModal .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

#contactModal .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contactModal .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(71, 97, 255, 0.1);
}

#contactModal .btn-primary {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Navbar Styles */
/* .navbar-nav .nav-link {
    margin: 0 5px;
    padding: 8px 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:first-child {
    margin-left: 0;
}

.navbar-nav .nav-link:last-child {
    margin-right: 0;
} */

#contactModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(71, 97, 255, 0.3);
}

#selectedPlan {
    color: #ffd700;
    font-weight: 700;
}

/*** Responsive adjustments for blog carousel ***/
@media (max-width: 1200px) {
    .blog-carousel .blog-card {
        flex: 0 0 calc(33.333% - 1.333rem);
        min-width: 320px;
    }
}

@media (max-width: 992px) {
    .blog-carousel .blog-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 300px;
    }
    
    .blog-prev-btn {
        left: 10px;
    }
    
    .blog-next-btn {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .blog-carousel .blog-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
    }
    
    .blog-prev-btn,
    .blog-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .blog-prev-btn {
        left: 5px;
    }
    
    .blog-next-btn {
        right: 5px;
    }
}

.blog-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: white;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.category-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.read-time {
    background: rgba(71, 97, 255, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.publish-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.read-more {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: white;
}

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

.read-more:hover i {
    transform: translateX(3px);
}

/*** Final CTA Section Enhancement ***/
.final-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.final-cta-section .text-white {
    position: relative;
    z-index: 1;
}

.cta-visual {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.final-cta-section .btn-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.final-cta-section .btn-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.final-cta-section .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.final-cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/*** Final CTA Section ***/
.cta-visual {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-visual i {
    font-size: 40px;
    color: white;
}

/*** Responsive Adjustments ***/
@media (max-width: 768px) {
    .hero-supporting-text {
        font-size: 12px;
        gap: 8px;
    }
    
    .why-icon, .industry-icon, .process-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }
    
    .why-icon i, .industry-icon i, .process-icon i {
        font-size: 20px;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .pricing-title {
        font-size: 18px;
    }
    
    .amount {
        font-size: 28px;
    }
    
    .blog-image {
        height: 150px;
    }
    
    .cta-visual {
        width: 80px;
        height: 80px;
    }
    
    .cta-visual i {
        font-size: 30px;
    }
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

.copyright a:hover {
    color: var(--primary) !important;
}


/*** Improved Navbar Styles ***/
.navbar {
    background: rgba(28, 32, 53, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    position: relative;
    z-index: 10;
}

.navbar-nav.mx-auto {
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(71, 97, 255, 0.3);
}

.navbar-nav .dropdown-menu {
    background: rgba(28, 32, 53, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Ensure container-fluid works properly for live hosting */
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Full-width sections should maintain structure */
.container-fluid .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Hero banner specific styling */
.container-fluid.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Prevent layout issues on live hosting */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure responsive behavior */
@media (max-width: 768px) {
    .container-fluid .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Ensure consistent navbar height and structure across all pages */
.navbar {
    min-height: 100px !important;
    height: auto !important;
    padding: 0 !important;
}

.navbar .container-fluid {
    padding: 0 20px !important;
}

.navbar-brand {
    padding: 10px 0 !important;
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-brand img {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
}

.navbar-nav {
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-nav .nav-link {
    height: auto !important;
    padding: 10px 15px !important;
    line-height: 1.5 !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-collapse {
    height: 100px !important;
    align-items: center !important;
}

/* Ensure consistent navbar positioning */
.fixed-top {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 1030 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .navbar {
        min-height: auto !important;
        height: auto !important;
    }
    
    .navbar-nav {
        height: auto !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px 0 !important;
    }
    
    .navbar-nav .nav-link {
        height: auto !important;
        padding: 10px 15px !important;
        margin: 5px 0 !important;
    }
    
    .navbar-collapse {
        height: auto !important;
        flex-direction: column !important;
    }
    
    .navbar-collapse.collapsing {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-brand {
        height: 80px !important;
    }
    
    .navbar-brand img {
        height: 60px !important;
    }
}

.navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(71, 97, 255, 0.3);
    color: white;
}

.ms-auto .btn-primary {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ms-auto .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(71, 97, 255, 0.3);
}

/*** Enhanced Section Color Schemes ***/
.brand-positioning {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.brand-positioning .section-title,
.brand-positioning .positioning-text {
    color: white;
}

.brand-positioning .positioning-subtext {
    color: rgba(255, 255, 255, 0.8);
}

.brand-positioning .feature-point {
    color: rgba(255, 255, 255, 0.9);
}

.brand-positioning .feature-point i {
    color: #ffd700;
}

.positioning-visual .visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.positioning-visual .visual-card h4,
.positioning-visual .visual-card p {
    color: white;
}

.positioning-visual .visual-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.positioning-visual .stat-number {
    color: #ffd700;
}

.positioning-visual .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.services-preview {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.services-preview .section-title,
.services-preview .section-subtitle {
    color: white;
}

.services-preview .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.services-preview .service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.services-preview .service-title,
.services-preview .service-description {
    color: white;
}

.services-preview .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.services-preview .service-link {
    color: #ffd700;
}

.why-choose-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.why-choose-section .section-title,
.why-choose-section .section-subtitle {
    color: white;
}

.why-choose-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.why-choose-section .why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.why-choose-section .why-title,
.why-choose-section .why-description {
    color: white;
}

.why-choose-section .why-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Enhanced Contact Form Styles */
.contact-form-wrapper {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.form-group .form-label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-group {
    position: relative;
}

.input-group-text {
    border: none;
    border-radius: 10px 0 0 10px !important;
    font-size: 1rem;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 0 10px 10px 0 !important;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.industries-section {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.industries-section .section-title,
.industries-section .section-subtitle {
    color: white;
}

.industries-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.industries-section .industry-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.industries-section .industry-title,
.industries-section .industry-description {
    color: white;
}

.industries-section .industry-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.process-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.process-section .section-title,
.process-section .section-subtitle {
    color: #333;
}

.process-section .section-badge {
    background: rgba(71, 97, 255, 0.8);
    color: white;
}

.process-section .process-step {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 97, 255, 0.2);
}

.process-section .step-title,
.process-section .step-description {
    color: #333;
}

.process-section .step-number {
    background: linear-gradient(135deg, var(--primary), #6366f1);
}

.pricing-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: #333;
}

.pricing-section .section-badge {
    background: rgba(71, 97, 255, 0.8);
    color: white;
}

.pricing-section .pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 97, 255, 0.2);
}

.pricing-section .pricing-title,
.pricing-section .pricing-subtitle,
.pricing-section .feature-item {
    color: #333;
}

.pricing-section .amount {
    color: var(--primary);
}