@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

body {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-style: normal;
    color: #000;
    overflow-x: hidden;
}

.navbar-light {
    background-color: #f0f9f8 !important;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar.sticky {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navbar-light .navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #38424d;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
}

.navbar-brand {
    font-weight: 700;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand .logo {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #38424d;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    color: #38424d !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #313193 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #313193, #2c2c7a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-light .navbar-toggler {
    border-color: #313193 !important;
    border-width: 2px;
    padding: 4px 8px;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23313193' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.logo {
    max-height: 50px;
    width: auto;
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(49, 49, 147, 0.1);
        transform: translateX(5px);
    }

    .get-started-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* ========================================
   CLIENTS SECTION IMPROVEMENTS
   ======================================== */

/* Enhanced about section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 80%,
            rgba(49, 49, 147, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(49, 49, 147, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* Section title improvements */
.about-section .services-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    margin-bottom: 2rem;
}

.about-section .services-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #313193, #2c2c7a);
    border-radius: 2px;
}

/* Service cards improvements */
.about-section .service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(49, 49, 147, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-section .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #313193, #2c2c7a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(49, 49, 147, 0.15);
}

.about-section .service-card:hover::before {
    transform: scaleX(1);
}

/* Icon improvements */
.about-section .services-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.about-section .service-card:hover .services-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-section .services-icon .fa-stack-2x {
    color: #313193;
}

/* Typography improvements */
.about-section .heading-4 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-section .text-bodyText {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    color: #64748b;
}

/* Mobile responsiveness for clients section */
@media (max-width: 767px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-section .service-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .about-section .row > .col-md-3 {
        margin-bottom: 2rem;
    }
}

/* ========================================
   FOOTER IMPROVEMENTS
   ======================================== */

/* Enhanced footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 25% 25%,
            rgba(49, 49, 147, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(49, 49, 147, 0.1) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Footer brand */
.footer-brand .logo-footer {
    max-height: 60px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-brand .logo-footer:hover {
    transform: scale(1.05);
}

.footer-brand p {
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* Footer headings */
.footer-heading {
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #313193;
    border-radius: 1px;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-contact li:hover {
    color: #fff;
}

.footer-contact i {
    color: #313193;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Social icons */
.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
}

.social-icons li {
    margin: 0;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #cbd5e1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #313193;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-bottom .copyright {
    margin: 0;
    color: #cbd5e1;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
    text-decoration: none;
}

/* Mobile footer adjustments */
@media (max-width: 767px) {
    .footer .row {
        text-align: center;
    }

    .footer-bottom .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Additional Mobile Responsive Fixes for Contact Section */
@media (max-width: 576px) {
    .contact-item-modern {
        padding: 1.25rem 1rem;
        gap: 12px;
        min-height: 75px;
    }

    .contact-icon-container {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .contact-icon {
        font-size: 1.1rem;
    }

    .contact-details {
        min-height: 48px;
        padding-top: 2px;
    }

    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .contact-link-modern {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-heading-modern {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-modern {
        max-width: 320px;
    }

    .contact-item-modern {
        max-width: 300px;
        padding: 1rem 0.875rem;
    }
}

/* ========================================
   GENERAL RESPONSIVE IMPROVEMENTS
   ======================================== */

@media (max-width: 575px) {
    .navbar-brand .logo {
        max-height: 40px;
    }

    .about-section {
        padding: 2rem 0;
    }

    .about-section .service-card {
        padding: 1.5rem 1rem;
    }
}

/* Performance optimizations */
.navbar-toggler,
.service-card,
.footer-links a,
.social-icons a {
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typing animation */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Blinking cursor animation */
@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #fccd20;
    }
}

.intro_p {
    max-width: 570px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #64748b;
}

.about-section,
.services-section {
    background-color: #fff !important;
    padding-top: 60px;
    padding-bottom: 60px;
}

.services-title {
    margin-top: 0 !important;
    font-size: 32px !important;
    text-align: center;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.services-title:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: #fccd20;
    transform: translateX(-50%);
}

.services-icon {
    color: #313193 !important;
    width: 80px;
    height: 80px;
    display: inline-block;
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    background-color: #f0f9f8;
    border-radius: 50%;
    line-height: 80px;
}

.services-icon .fa-stack-2x {
    color: #f0f9f8;
}

.services-icon .fa-inverse {
    color: #313193;
}

.services-p {
    color: #64748b;
    line-height: 1.6;
}

.join-section {
    background-color: #f0f9f8;
    padding-top: 60px;
    padding-bottom: 60px;
}

.services-section {
    margin-top: 0;
}

.services-heading {
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0;
    color: #0f172a;
    margin-top: 0;
}

.main-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
}

.main-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 3px;
    /* background-color: #fccd20; */
}

.hr-title {
    display: none;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    color: #64748b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.widget_nav_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget_nav_menu ul li {
    border: none;
}

.widget_nav_menu ul.social-icon li {
    display: inline-block;
}

.widget_nav_menu ul li:first-child {
    margin-top: 0;
}

.widget_nav_menu ul li a::before {
    content: "";
    padding: 0px;
}

.widget_nav_menu ul li a i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.widget_nav_menu ul li a i:hover {
    background-color: #fccd20;
    color: #0f172a;
}

/* Define the animation */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none !important;
}

.service-card:hover .services-link {
    text-decoration: none !important;
}

.service-img {
    width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.module_title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f172a;
    margin-top: 20px;
    margin-bottom: 15px;
}

.industries-card {
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.industries-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.black {
    color: #0f172a;
}

.green {
    color: #313193;
}

.white {
    color: #fff;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.margin-top {
    margin-top: 20px;
}

.negative-margin-top {
    margin-top: -10px;
}

.tick {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.app-title {
    font-size: 42px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0f172a;
}

.app-desc {
    font-size: 24px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.appstore {
    height: 60px;
    margin-top: 20px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.appstore:hover {
    transform: translateY(-5px);
}

.playstore {
    height: 60px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.playstore:hover {
    transform: translateY(-5px);
}

.apps-img {
    transform: none;
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar Start */

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f1f5f9;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #313193;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #252578;
}

/* Custom Scrollbar End */

/*===================*/
/* BOUNCE OUT
/*===================*/

.bounce-out-on-hover {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.bounce-out-on-hover:hover,
.bounce-out-on-hover:focus,
.bounce-out-on-hover:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.dash-section {
    background-color: #f0f9f8;
    padding-top: 60px;
    padding-bottom: 60px;
}

.app-section {
    margin-top: 0;
    background-color: #f0f9f8;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
}

.app-desc-section {
    margin-top: 40px;
}

.logo-app {
    margin-bottom: 30px;
}

.hide-mobi {
    display: block !important;
}

.show-mobi {
    display: none !important;
}

.margin-bottom-lg {
    margin-bottom: 30px;
}

.footer-ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.footer-icon {
    height: 16px;
    width: 16px;
    object-fit: contain;
    margin-right: 10px;
    color: #fccd20;
}

.intro-img-section {
    text-align: center;
}

.list-unstyled a {
    color: #cbd5e1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.list-unstyled a:hover {
    color: #fccd20;
    padding-left: 5px;
}

.footer-copyright {
    background-color: #0c1322;
    padding: 20px 0;
}

.top-title {
    margin-top: 100px !important;
}

.about_quote {
    font-style: italic;
    letter-spacing: 0.05em;
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid #fccd20;
}

.about-content {
    color: #64748b;
    line-height: 1.8;
}

.padding {
    padding: 20px;
}

.accordion-item .title {
    font-weight: 700;
    color: #0f172a;
    padding: 15px 20px;
    background-color: #f8fafc;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion .accordion-item .title:after {
    content: "\2795";
    font-size: 13px;
    color: #313193 !important;
    float: right;
    margin-left: 5px;
}

.page-heading {
    text-align: center;
    background-color: #4a9d9b;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.page-heading h1 {
    text-transform: capitalize;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.page-heading span {
    font-size: 18px;
    letter-spacing: 0;
    color: #fff;
    display: block;
}

.contact-item {
    padding: 40px 30px;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contacts-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-icon {
    color: #313193;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.callback-form {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 15px;
    color: #0f172a;
}

.contact-item p {
    margin-bottom: 20px;
    color: #64748b;
}

.contact-item a {
    font-weight: 600;
    color: #313193;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #fccd20;
}

.course-img {
    height: 100px;
    width: 80%;
    object-fit: contain;
    margin-bottom: 20px;
}

.how-it-works-section {
    margin-right: 0;
    margin-left: 0;
    padding: 60px 0;
    background-color: #f8fafc;
}

.steps-cont {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #313193;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Our Clients Section Mobile Responsiveness */
.about-section .services-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    line-height: 1.2;
}

.about-section .text-center p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

/* Service Cards in Our Clients Section */
.about-section .service-card {
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(49, 49, 147, 0.15);
}

/* Icons in Our Clients Section */
.about-section .services-icon {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.about-section .services-icon .fa-stack-2x {
    color: #313193;
}

/* Headings in Our Clients Section */
.about-section .heading-4 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 600;
    margin-bottom: clamp(0.75rem, 2.5vw, 1rem);
    color: #2c3e50;
    line-height: 1.3;
}

/* Text content in Our Clients Section */
.about-section .text-bodyText {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    color: #64748b;
    flex-grow: 1;
}

/* Mobile-specific adjustments for Our Clients Section */
@media (max-width: 991px) {
    .about-section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .about-section .container {
        padding: 0 15px;
    }

    .about-section .service-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .about-section .services-icon {
        transform: scale(0.9);
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .about-section .service-card {
        text-align: center;
        padding: 1.8rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .about-section .heading-4 {
        margin-bottom: 1rem;
    }

    /* Ensure cards stack properly on mobile */
    .about-section .row > [class*="col-"] {
        margin-bottom: 1.5rem;
    }

    .about-section .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 2rem 0;
    }

    .about-section .container {
        padding: 0 10px;
    }

    .about-section .service-card {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .about-section .services-icon {
        transform: scale(0.85);
        margin-bottom: 1rem;
    }

    .about-section .services-title {
        margin-bottom: 1.5rem;
    }

    .about-section .text-center p {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
}

/* Extra small devices optimization */
@media (max-width: 400px) {
    .about-section .service-card {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.2rem;
    }

    .about-section .services-icon {
        transform: scale(0.8);
    }

    .about-section .heading-4 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .about-section .text-bodyText {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .about-section .service-card:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .about-section .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* ========================================
   ADVANCED VISUAL ENHANCEMENTS
   ======================================== */

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #313193, #2c2c7a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2c2c7a, #313193);
}

/* Page loading animation */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #313193, transparent);
    z-index: 9999;
    animation: pageLoad 2s ease-in-out;
}

@keyframes pageLoad {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Enhanced text selection */
::selection {
    background: rgba(49, 49, 147, 0.2);
    color: #313193;
}

::-moz-selection {
    background: rgba(49, 49, 147, 0.2);
    color: #313193;
}

/* ========================================
   NAVBAR ADVANCED ENHANCEMENTS
   ======================================== */

/* Navbar background animation */
.navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(49, 49, 147, 0.03) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.navbar:hover::after {
    opacity: 1;
}

/* Enhanced navbar toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(49, 49, 147, 0.1);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(49, 49, 147, 0.2);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(49, 49, 147, 0.2);
}

/* Advanced navigation link effects */
.navbar-nav .nav-link {
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(49, 49, 147, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

/* Get Started button advanced effects */
.get-started-btn {
    position: relative;
    overflow: hidden;
}

.get-started-btn::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.6s ease;
}

.get-started-btn:hover::before {
    left: 100%;
}

.get-started-btn i {
    transition: transform 0.3s ease;
}

.get-started-btn:hover i {
    transform: translateX(3px);
}

/* ========================================
   CLIENTS SECTION ADVANCED EFFECTS
   ======================================== */

/* Floating animation for service cards */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-section .service-card {
    animation: float 6s ease-in-out infinite;
}

.about-section .service-card:nth-child(2) {
    animation-delay: -2s;
}

.about-section .service-card:nth-child(3) {
    animation-delay: -4s;
}

.about-section .service-card:nth-child(4) {
    animation-delay: -1s;
}

/* Card reveal animation on scroll */
.about-section .service-card {
    opacity: 0;
    transform: translateY(50px);
    animation: cardReveal 0.8s ease forwards;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section .service-card:nth-child(1) {
    animation-delay: 0.1s;
}
.about-section .service-card:nth-child(2) {
    animation-delay: 0.2s;
}
.about-section .service-card:nth-child(3) {
    animation-delay: 0.3s;
}
.about-section .service-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Enhanced icon effects */
.about-section .services-icon {
    position: relative;
}

.about-section .services-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(49, 49, 147, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.about-section .service-card:hover .services-icon::after {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Gradient text effect for headings */
.about-section .heading-4 {
    background: linear-gradient(135deg, #313193, #2c2c7a, #4a4a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ========================================
   FOOTER ADVANCED ENHANCEMENTS
   ======================================== */

/* Footer entrance animation */
.footer {
    animation: footerSlideUp 1s ease-out;
}

@keyframes footerSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced social icons with pulse effect */
.social-icons a {
    position: relative;
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(49, 49, 147, 0.3);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.social-icons a:hover::before {
    transform: translate(-50%, -50%) scale(1.4);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Footer links typewriter effect */
.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #313193;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Enhanced contact info with glow effect */
.footer-contact li:hover {
    text-shadow: 0 0 10px rgba(49, 49, 147, 0.5);
}

.footer-contact i {
    position: relative;
}

.footer-contact i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(49, 49, 147, 0.3) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-contact li:hover i::after {
    transform: translate(-50%, -50%) scale(2);
}

/* ========================================
   INTERACTIVE MICRO-ANIMATIONS
   ======================================== */

/* Logo breathing effect */
.navbar-brand .logo {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Text shimmer effect for important text */
.services-title {
    position: relative;
    overflow: hidden;
}

.services-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ========================================
   RESPONSIVE ENHANCEMENTS
   ======================================== */

/* Better mobile interactions */
@media (max-width: 768px) {
    /* Disable animations on mobile for better performance */
    .about-section .service-card {
        animation: none;
    }

    /* Enhanced touch targets */
    .navbar-nav .nav-link {
        padding: 1rem;
        margin: 0.25rem 0;
        border-radius: 8px;
        background: rgba(49, 49, 147, 0.05);
    }

    .navbar-nav .nav-link:active {
        background: rgba(49, 49, 147, 0.15);
        transform: scale(0.98);
    }

    /* Mobile-specific footer improvements */
    .footer-links a,
    .social-icons a {
        padding: 0.5rem;
        margin: 0.25rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus indicators */
.navbar-nav .nav-link:focus,
.get-started-btn:focus,
.footer-links a:focus,
.social-icons a:focus {
    outline: 3px solid rgba(49, 49, 147, 0.5);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .about-section .service-card {
        border: 2px solid #313193;
    }

    .navbar-nav .nav-link::after {
        height: 3px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .about-section .service-card,
    .navbar-brand .logo,
    .services-title::before {
        animation: none;
    }

    .navbar-nav .nav-link::before,
    .get-started-btn::before {
        transition: none;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Fade in animation utility */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide up animation utility */
.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   ADVANCED POLISH & TWEAKS
   ======================================== */

/* Enhanced loading states and skeleton animations */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Enhanced form styling with better UX */
.form-control:focus {
    border-color: #313193;
    box-shadow: 0 0 0 0.2rem rgba(49, 49, 147, 0.25);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.form-control:valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.8-.77 2.9-2.93h-.79l-2.13 2.13.13-.13L2.27 6.01z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Advanced button enhancements with micro-interactions */
.btn:active {
    transform: scale(0.98);
}

.btn:focus {
    outline: 2px solid #313193;
    outline-offset: 2px;
}

/* Enhanced tooltip styling */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
}

[data-tooltip]:hover::before {
    content: "";
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Enhanced image lazy loading effects */
.lazy-image {
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(5px);
}

.lazy-image.loaded {
    opacity: 1;
    filter: blur(0);
}

/* Advanced gradient text effects */
.gradient-text-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706, #f59e0b);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #313193, #2563eb, #313193);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced card hover effects with depth */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(49, 49, 147, 0.1);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(49, 49, 147, 0.05),
        rgba(245, 158, 11, 0.05)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

/* Advanced scroll-triggered animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced progress bars for loading states */
.progress-bar-animated {
    background: linear-gradient(45deg, #313193, #f59e0b, #313193);
    background-size: 200% 100%;
    animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Advanced modal enhancements */
.modal {
    backdrop-filter: blur(10px);
}

.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #313193, #2563eb);
    color: white;
    border: none;
}

.modal-header .close {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.modal-header .close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Enhanced notification/alert styles */
.alert {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.5s ease;
}

.alert-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.alert-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.alert-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced badge and tag styling */
.badge {
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-gradient {
    background: linear-gradient(135deg, #313193, #f59e0b);
    color: white;
}

/* Advanced table styling */
.table-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.table-modern th {
    background: linear-gradient(135deg, #313193, #2563eb);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.table-modern td {
    padding: 15px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.table-modern tbody tr:hover td {
    background-color: rgba(49, 49, 147, 0.05);
}

/* Enhanced code block styling */
.code-block {
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    font-family: "Monaco", "Menlo", "Consolas", monospace;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.code-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
    border-radius: 12px 12px 0 0;
}

.code-block pre {
    margin-top: 30px;
    margin-bottom: 0;
    color: inherit;
    background: transparent;
    border: none;
    padding: 0;
}

/* Enhanced search input styling */
.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px 12px 45px;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #f59e0b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.search-container {
    position: relative;
}

.search-container::before {
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

/* Enhanced dropdown menu styling */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    margin-top: 10px;
}

.dropdown-item {
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #313193, #2563eb);
    color: white;
    transform: translateX(5px);
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Enhanced pagination styling */
.pagination {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-item .page-link {
    border: none;
    padding: 12px 16px;
    color: #313193;
    background: white;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #313193, #2563eb);
    box-shadow: 0 4px 15px rgba(49, 49, 147, 0.3);
}

.page-item .page-link:hover {
    background: rgba(49, 49, 147, 0.1);
    transform: translateY(-2px);
}

/* Enhanced accessibility focus indicators */
:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid currentColor;
    }

    .btn {
        border: 2px solid currentColor;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }
}

/* Enhanced print styles */
@media print {
    .navbar,
    .footer,
    .floating-whatsapp,
    .scroll-to-top {
        display: none !important;
    }

    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .hero-section {
        background: white !important;
        color: black !important;
    }

    .hero-title,
    .services-title {
        color: black !important;
    }
}

/* Enhanced responsive typography for better readability */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Ensure minimum 16px for better mobile readability */
    }

    .btn {
        min-height: 44px; /* Minimum touch target size */
        min-width: 44px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Enhanced dark mode support (if implemented) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1e293b;
        --bg-secondary: #334155;
        --text-primary: #f1f5f9;
        --text-secondary: #cbd5e1;
    }
}

/* Performance optimization: will-change for animated elements */
.navbar-brand .logo,
.service-card,
.hero-image img,
.floating-whatsapp {
    will-change: transform;
}

/* Cleanup: Remove will-change after animations complete */
.animation-complete {
    will-change: auto;
}

/* Enhanced loading spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(49, 49, 147, 0.2);
    border-left: 4px solid #313193;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced error states */
.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: "⚠";
    color: #dc2626;
}

.success-message {
    color: #059669;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.success-message::before {
    content: "✓";
    color: #059669;
}

/* Enhanced container max-widths for better readability */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Smooth transitions for all interactive elements */
* {
    transition-property: transform, opacity, background-color, border-color,
        box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* Disable transitions during page load for better performance */
.preload * {
    transition: none !important;
}

/* ========================================
   MODERN NAVBAR STYLES
   ======================================== */

/* Modern Navbar Container */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    padding: 0.75rem 0;
}

.modern-navbar.sticky {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
}

/* Background Effects */
.navbar-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(49, 49, 147, 0.02),
        rgba(245, 158, 11, 0.02)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-navbar:hover .bg-gradient {
    opacity: 1;
}

.bg-pattern {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="1" fill="rgba(49,49,147,0.03)"/></svg>');
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

/* Modern Brand Styling */
.modern-brand {
    padding: 0;
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    transform: scale(1.02);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modern-logo {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #313193;
    background: linear-gradient(135deg, #313193, #2c2c7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Navigation Links */
.modern-nav {
    gap: 0.5rem;
}

.modern-nav-link {
    position: relative;
    padding: 0.75rem 1.25rem !important;
    font-weight: 500;
    color: #475569 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    overflow: hidden;
}

.modern-nav-link:hover {
    color: #313193 !important;
    background: rgba(49, 49, 147, 0.05);
    transform: translateY(-1px);
}

.modern-nav-link.active {
    color: #313193 !important;
    background: rgba(49, 49, 147, 0.1);
    font-weight: 600;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #313193, #f59e0b);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.modern-nav-link:hover .nav-indicator,
.modern-nav-link.active .nav-indicator {
    width: 80%;
}

/* Modern CTA Button */
.modern-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #313193, #2c2c7a);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(49, 49, 147, 0.3);
    overflow: hidden;
    border: 2px solid transparent;
}

.modern-cta-btn:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 49, 147, 0.4);
    background: linear-gradient(135deg, #2c2c7a, #313193);
}

.modern-cta-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.modern-cta-btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-shine {
    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.6s ease;
}

.modern-cta-btn:hover .btn-shine {
    left: 100%;
}

/* Modern Mobile Toggle */
.modern-toggler {
    border: none;
    padding: 8px;
    background: rgba(49, 49, 147, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.modern-toggler:hover {
    background: rgba(49, 49, 147, 0.2);
    transform: scale(1.05);
}

.modern-toggler:focus {
    box-shadow: 0 0 0 3px rgba(49, 49, 147, 0.2);
    outline: none;
}

.toggler-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    width: 100%;
    height: 2px;
    background: #313193;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.modern-toggler[aria-expanded="true"] .bar1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.modern-toggler[aria-expanded="true"] .bar2 {
    opacity: 0;
}

.modern-toggler[aria-expanded="true"] .bar3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Enhancements */
@media (max-width: 991px) {
    .modern-logo {
        max-height: 40px;
    }

    .brand-text {
        display: none;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .modern-nav-link {
        padding: 1rem 1.5rem !important;
        margin: 0.25rem 0;
        border-radius: 10px;
    }

    .modern-cta-btn {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
}

/* ========================================
   MODERN CLIENTS SECTION STYLES
   ======================================== */

.clients-footer-section {
    position: relative;
    overflow: hidden;
}

.clients-footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 20%,
            rgba(49, 49, 147, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(245, 158, 11, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.clients-title {
    position: relative;
}

.clients-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #313193, #f59e0b);
    border-radius: 2px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        box-shadow: 0 0 5px rgba(49, 49, 147, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    }
}

.modern-client-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-client-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(49, 49, 147, 0.2);
}

.client-icon-container {
    position: relative;
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
}

.client-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #313193, #2c2c7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #313193, #f59e0b);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.7;
    transition: transform 0.3s ease;
    z-index: 1;
}

.modern-client-card:hover .icon-glow {
    transform: translate(-50%, -50%) scale(1.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

.modern-client-card:hover .client-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.client-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #313193, #2c2c7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.card-shine {
    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.6s ease;
    pointer-events: none;
}

.modern-client-card:hover .card-shine {
    left: 100%;
}

/* Mobile Responsiveness for Clients Section */
@media (max-width: 768px) {
    .clients-footer-section {
        padding: 3rem 0 !important;
    }

    .modern-client-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .client-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .client-icon {
        font-size: 1.4rem;
    }

    .client-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .client-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.modern-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 80%,
            rgba(245, 158, 11, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(59, 130, 246, 0.1) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand-modern {
    max-width: 100%;
}

.brand-logo-container {
    margin-bottom: 1.5rem;
}

.logo-footer-modern {
    max-height: 60px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-footer-modern:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

.brand-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Social Icons */
.social-section {
    margin-top: 2rem;
}

.social-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-social-icons {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: inherit;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
}

.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}
.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}
.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}
.instagram {
    background: linear-gradient(135deg, #e4405f, #c73650);
}
.whatsapp {
    background: linear-gradient(135deg, #25d366, #1ebe57);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Sections */
.footer-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-heading-modern {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.footer-heading-modern::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 2px;
}

.heading-icon {
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Footer Links */
.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #f59e0b;
    text-decoration: none;
    transform: translateX(5px);
}

.link-arrow {
    font-size: 0.8rem;
    color: #f59e0b;
    transition: transform 0.3s ease;
}

.footer-link:hover .link-arrow {
    transform: translateX(3px);
}

/* Contact Information */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 85px;
    width: 100%;
    box-sizing: border-box;
}

.contact-item-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.contact-icon {
    color: white;
    font-size: 1.2rem;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 50px;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.contact-link-modern {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    word-break: break-word;
    font-weight: 400;
    margin: 0;
}

.contact-link-modern:hover {
    color: #f59e0b;
    text-decoration: none;
}

.address-text {
    cursor: pointer;
    line-height: 1.4;
    display: block;
}

/* Better alignment for email/phone links */
.contact-item-modern a.contact-link-modern {
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Mobile specific contact adjustments */
@media (max-width: 768px) {
    .contact-item-modern {
        padding: 1.5rem 1.25rem;
        min-height: 90px;
        align-items: center;
    }

    .contact-icon-container {
        width: 55px;
        height: 55px;
    }

    .contact-icon {
        font-size: 1.3rem;
    }

    .contact-details {
        min-height: 55px;
    }

    .contact-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .contact-link-modern {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .contact-info-modern {
        max-width: 100%;
        align-items: stretch;
    }

    .contact-item-modern {
        max-width: none;
        margin: 0 auto 1rem;
        padding: 1.25rem 1rem;
        min-height: 85px;
    }

    .contact-icon-container {
        width: 50px;
        height: 50px;
    }

    .contact-icon {
        font-size: 1.2rem;
    }

    .contact-details {
        min-height: 50px;
    }

    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .contact-link-modern {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Extra alignment fixes for very small screens */
@media (max-width: 400px) {
    .contact-item-modern {
        padding: 1rem 0.875rem;
        min-height: 80px;
        gap: 12px;
    }

    .contact-icon-container {
        width: 45px;
        height: 45px;
    }

    .contact-icon {
        font-size: 1.1rem;
    }

    .contact-details {
        min-height: 45px;
    }

    .contact-label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .contact-link-modern {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}
