.section {
    padding: 30px 0;
    position: relative;
}

.about-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    right: -300px;
    top: -150px;
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -15px;
    left: 0;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.feature-text h5 {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-img-container {
    position: relative;
    z-index: 1;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-img-back {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    border: 6px solid var(--primary);
    border-radius: 10px;
    z-index: -1;
}

/* Enhanced Services Section */
.services-section {
    background-color: var(--bg-light-gray);
    position: relative;
    overflow: hidden;
}

.service-card {
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: var(--bg-light);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.service-card:hover:before {
    height: 100%;
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover p {
    color: var(--text-light);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(241, 148, 115, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    transition: all 0.4s ease;
}

.service-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

.service-card p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.4s ease;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .learn-more {
    color: var(--text-light);
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}

/* SVG Animation Styles */
.svg-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.animated-shape {
    fill: none;
    stroke: var(--text-light);
    stroke-width: 2;
    opacity: 0.2;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text-light);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-shape {
    position: absolute;
    right: -200px;
    bottom: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    display: inline-block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-social {
    margin-bottom: 25px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    margin-right: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-widget-title {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 20px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    min-width: 30px;
    color: var(--primary-light);
    margin-top: 5px;
}

.contact-info p {
    margin: 0;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    width: 100%;
    color: var(--text-light);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--text-light);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 7px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary-light);
    color: var(--text-dark);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .slider-text {
        font-size: 3rem;
    }

    .text-slider-container {
        height: 80px;
    }

    .about-img-back {
        display: none;
    }
}

@media (max-width: 768px) {
    .slider-text {
        font-size: 2.5rem;
    }

    .text-slider-container {
        height: 60px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer {
        padding-top: 60px;
    }
}


#main-imx {
    .header {
        background-color: rgba(248, 248, 248, 0);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 10vh;
        padding: 20px 50px;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        color: white;
        font-size: 24px;
        text-decoration: none;
        font-weight: bold;
        display: flex;
        align-items: center;
    }

    .logo span {
        font-weight: 300;
        font-size: 14px;
        margin-left: 5px;
    }

    .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding: 10px 0;
        transition: all 0.3s ease;
    }

    /* Hover effect - line animation */
    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background-color: white;
        left: 0;
        bottom: 0;
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: #f5f5f5;
        transform: translateY(-2px);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    /* Dropdown styling */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        background-color: rgba(51, 51, 51, 0.9);
        min-width: 180px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 4px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 0;
        margin-top: 10px;
        transition: opacity 0.3s, visibility 0.3s;
        transition-delay: 0.1s;
        pointer-events: none;
    }

    .dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        transition: background-color 0.3s ease;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .dropdown-content a::after {
        display: none;
    }

    .dropdown:hover .dropdown-content {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 0s;
    }

    /* For the delayed hide effect */
    .dropdown .dropdown-content {
        transition-delay: 0.3s;
        /* Delay before hiding */
    }

    /* Dropdown arrow indicator */
    .dropdown-link {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .dropdown-link::after {
        content: '▼';
        font-size: 8px;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-link::after {
        transform: rotate(180deg);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px) translateX(-50%);
        }

        to {
            opacity: 1;
            transform: translateY(0) translateX(-50%);
        }
    }

    .dropdown-content:hover {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
    }

    .carousel-slide.active {
        opacity: 1;
    }

    .slide-content {
        max-width: 800px;
        padding: 0 20px;
        z-index: 10;
    }

    .company-name {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .slide-title {
        font-size: 56px;
        font-weight: bold;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    /* Enhanced Explore Button with Multiple Hover Effects */
    .explore-btn.imxx{
        display: inline-block;
        background-color: transparent;
        color: white;
        padding: 12px 30px;
        border: 1px solid white;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        margin-top: 20px;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .explore-btn.imxx::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;
        z-index: -1;
    }

    .explore-btn.imxx::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        z-index: -1;
    }

    .explore-btn.imxx:hover {
        background-color: var(--primary);
        color: #000000 !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        letter-spacing: 2px;
    }

    .explore-btn.imxx:hover::before {
        left: 100%;
    }

    .explore-btn.imxx:hover::after {
        width: 100%;
    }

    .explore-btn.imxx:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .carousel-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
        z-index: 20;
    }

    /* Enhanced Navigation Button with Ripple Effect */
    .nav-btn {
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.082);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
    }

    .nav-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
        border-radius: 50%;
    }

    .nav-btn:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-btn:hover::before {
        width: 100px;
        height: 100px;
    }

    .nav-btn:active {
        transform: scale(0.95);
    }

    /* Enhanced Contact Icons with Slide Effect */
    .contact-icons {
        position: fixed;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 100;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        background-color: black;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .contact-icon::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;
    }

    .contact-icon::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: white;
        transition: width 0.3s ease;
    }

    .contact-icon:hover {
        background-color: #333;
        transform: translateX(-10px) scale(1.1);
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    }

    .contact-icon:hover::before {
        left: 100%;
    }

    .contact-icon:hover::after {
        width: 100%;
    }

    .contact-icon:active {
        transform: translateX(-5px) scale(1.05);
    }

    /* Additional Pulse Animation for Contact Icons */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        }
    }

    .contact-icon:hover {
        animation: pulse 1.5s infinite;
    }

    /* Smooth Focus States for Accessibility */
    .explore-btn:focus,
    .nav-btn:focus,
    .contact-icon:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }

    @media (max-width: 768px) {
        .header {
            padding: 15px 20px;
        }

        .nav-links {
            display: none;
        }

        .slide-title {
            font-size: 36px;
        }

        .contact-icons {
            right: 15px;
            gap: 10px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
        }

        .explore-btn {
            padding: 10px 25px;
            font-size: 13px;
        }
    }
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fb;
    color: var(--text-dark);
}


.section-heading {
    margin-bottom: 0px;
    text-align: center;
}

.section-heading h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}





.imxx-op{
    margin-top: 5rem;
}

    .projects-section {
        background-color: antiquewhite;
        padding-bottom: 0;
    }
    .services-section{
        background-color: antiquewhite;
    }



@media (max-width: 768px) {
    .imxx-op {
        margin-top: 1rem;
    }

    .mobile-padding{
        padding-left: 14px !important;
        padding-right: 14px !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .projects-section {
        padding: 20px 0;
        padding-bottom: 0;
        background-color: antiquewhite;
    }
    .trust-section::before {
        z-index: 99;
    }
}