:root {
    --primary-blue: #3C83F6;
    --dark-blue: #0a58ca;
    --light-blue: #e8f1ff;
    --dark-gray: #212529;
    --medium-gray: #6c757d;
    --light-gray: #f8f9fa;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--dark-gray);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #004aad;
}



.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 18px;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff;
    left: 0;
    transition: all 0.3s ease;
}

/* Top */
.navbar-toggler-icon::before {
    top: 0;
}

/* Middle */
.navbar-toggler-icon span {
    top: 8px;
}

/* Bottom */
.navbar-toggler-icon::after {
    bottom: 0;
}

/* OPEN state â†’ CROSS */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 8px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon span {
    opacity: 0;
}


.navbar-toggler {
    border: none;
    box-shadow: none;
}

.hamburger {
    width: 26px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background-color: #fff;
    /* white lines */
    display: block;
    transition: all 0.3s ease;
}

/* ðŸ”¥ OPEN state */
.navbar-toggler:not(.collapsed) .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* Header & Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-gray);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0 5px;
}

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

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
    padding: 8px 20px;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Hero Section */
.hero-section {
    background: rgba(11, 20, 39, 1);
    padding: 80px 0;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.sub-hero-section .hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    max-width: 550px;
}

.sub-hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    max-width: 550px;
}

.hero-subtitle {
    font-size: 17px;
    color: #94A3B8;
    margin-bottom: 30px;
    max-width: 620px;
    font-weight: 400;
}



/* Services Section */
.section-title {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    font-size: 34px;
}

/* .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-blue);
        } */

.service-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #f8fafc;
    border: 1px solid #e1e7ef;
}

/* .service-card:hover {
            transform: translateY(-5px); */
/* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
/* } */

.service-icon {
    width: 60px;
    /* height: 60px; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.service-icon img {
    width: 40px;
}

/* Why Us Section */
.why-us-section {
    background-color: #111822;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #152337;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
    background-color: #fff;
    color: white;
}

/* Footer */
.footer {
    background-color: #070A13;
    color: white;
    padding-top: 60px;
    border-top: 1px solid #20222b;
}

.footer h5 {
    font-weight: 600;
    /* margin-bottom: 20px; */
    position: relative;
    padding-bottom: 10px;
    font-size: 14px;
    color: #F8FAFC !important;
}

/* .footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-blue);
        } */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #3C83F6;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}




/* custome */

.navbar-custom {
    background-color: #070A13 !important;
    border-bottom: 1px solid #20222b;
    height: 90px;
}

.navbar-nav .nav-link,
.navbar-nav .show>.nav-link {
    color: #fff !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: #3C83F6 !important;
}

.primary-blue {
    color: var(--primary-blue);
}

.banner-gray-text {
    color: #94A3B8;
    font-size: 18.5px;
}

.hero-buttons a {
    font-weight: 400;
    font-size: 14px;
}

.three-core-para {
    font-size: 15px !important;
    font-weight: 400;
    color: #65758B !important;
    max-width: 580px;
    margin: 0 auto;
}

.card-title {
    font-size: 19px;
    font-weight: 600;
    color: #0F1729;
}

.card-desc {
    font-size: 15px;
    font-weight: 400;
    color: #65758B !important;
}

.card-link {
    color: #3C83F6;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
}

.why-us-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #F8FAFC;
}

.why-us-section-s-desc {
    font-size: 15px !important;
    font-weight: 400;
    color: #94A3B8 !important;
}

.why-us-section-s-title {
    font-size: 19px;
    font-weight: 600 !important;
    color: #fff;
}

.why-us-section-desc {
    font-size: 15px;
    font-weight: 400 !important;
    color: #94A3B8 !important;
}

.ready-modernaize {
    width: 100%;
    background: #ECF3FE;
    background: linear-gradient(90deg, rgba(236, 243, 254, 1) 0%, rgba(245, 249, 255, 1) 100%);
    border: 1px solid #e0ebfd;
    border-radius: 15px;
    padding: 50px;
    margin: 0;
}

.ready-modernaize h2 {
    font-weight: 700;
    font-size: 34px;
    color: #0F1729;
}

.ready-modernaize p {
    font-weight: 400;
    font-size: 15px !important;
    color: #65758B;
    max-width: 550px;
    margin: 0 auto;
}

.ready-modernaize a,
.ready-modernaize a:active {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    background-color: #3C83F6;
    height: 44px;
    line-height: 25px;
    padding-left: 15px;
    padding-right: 15px;
}

.ready-modernaize a:hover {
    color: #fff;
    background-color: #0a58ca;
}

.foo-logo-left p {
    font-size: 14px;
    font-weight: 400;
    color: #94A3B8;
    max-width: 300px;
}

.foo-logo-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.foo-logo-left ul li {
    padding: 0;
    margin: 0;
    float: left;
}

.footer-bottom {
    font-size: 14px;
    font-weight: 400;
    color: #94A3B8;
}

.footer-bottom a {
    font-size: 14px;
    font-weight: 400;
    color: #94A3B8 !important;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #0a58ca !important;
}

.sub-hero-section {
    background-color: #070A13;
    padding: 40px 0;
}


.story-modernaize {
    width: 100%;
    background: #ECF3FE;
    background: linear-gradient(90deg, rgba(236, 243, 254, 1) 0%, rgba(245, 249, 255, 1) 100%);
    border: 1px solid #e0ebfd;
    border-radius: 15px;
    padding: 30px;
    margin: 0;
}

.story-modernaize h2 {
    font-weight: 600;
    font-size: 19px;
    color: #0F1729;
    margin-bottom: 20px;
}

.story-modernaize p {
    font-weight: 400;
    font-size: 17px !important;
    color: #0F1729;
    max-width: 550px;
    margin: 0 auto;
    font-style: italic;
}

.centered-cols {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item-leadership {
    background-color: #070A13;
    border-radius: 8px;
    border: 1px solid #20222b;
    padding: 30px;
    position: relative;
    margin-top: 50px;
    padding-top: 160px;
    padding-bottom: 60px;
}

.feature-item-leadership img {
    position: absolute;
    top: -100px;
    left: 50%;
    margin-left: -91px;
    width: 200px;
}

.feature-item-leadership .feature-icon {
    margin: 0;
    margin-bottom: 20px;
}

.feature-item-leadership .why-us-section-s-title {
    text-align: left;
}

.feature-item-leadership .why-us-section-s-title-bottom {
    text-align: left;
    color: #3C83F6;
    font-size: 14px;
    font-weight: 400;
}

.feature-item-leadership .why-us-section-desc {
    text-align: left;

}

.how-we-work-section {
    background-color: #fff;
}

.how-we-work-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #0F1729;
}

.how-we-work-section-s-desc {
    font-size: 15px !important;
    font-weight: 400;
    color: #65758B !important;
}

.how-we-work-section .feature-icon {
    border-radius: 10px;
    background-color: #ebf3fe;
    width: 56px;
    height: 56px;
}

.how-we-work-section-s-title {
    font-size: 18px;
    font-weight: 600 !important;
    color: #0F1729;
}

.how-we-work-section-desc {
    font-size: 14px;
    font-weight: 400 !important;
    color: #65758B !important;
}

.row-color {
    background-color: #070A13;
}

.ready-to-work .how-we-work-section-title {
    font-size: 29px;
    font-weight: 700;
    color: #F8FAFC;
}

.ready-to-work .how-we-work-section-s-desc {
    font-size: 15px !important;
    font-weight: 400;
    color: #94A3B8 !important;
}

.ready-to-work a {
    margin: 0 auto;
    display: table;
    background-color: #0d6efd;
    border: 1px solid #0d6efd;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
}

.ready-to-work a:hover {
    background-color: #0159dc;
    border: 1px solid #0159dc;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
}

.ai-ss {
    background-color: #ebf3fe;
    border-radius: 50px;
    color: #3C83F6;
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
}

.ai-ss img {
    width: 16px;
    margin-right: 5px;
    margin-top: -3px;
}

.ai-service .section-title {
    color: #0f1729;
}

.ai-service a {
    background-color: #3C83F6;
    padding: 11px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.ai-service a:hover {
    background-color: #0a58ca;

}

.story-modernaize ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-modernaize ul li {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 400;
    color: #65758B;
}

.story-modernaize ul li img {
    padding-right: 8px;
}

.Oracle-erp .why-us-section-s-desc {
    max-width: 620px;
    margin: 0 auto;
}

.Oracle-erp .feature-item {
    background-color: #070a13;
    border-radius: 8px;
    border: 1px solid #2022
}

.Oracle-erp .feature-icon {
    border-radius: 8px;
    background-color: #122240;
    margin: 0;
    margin-bottom: 20px;
    height: 40px;
    width: 40px;
}

.Oracle-erp .why-us-section-s-title {
    font-size: 17.5px;
    text-align: left;
}

.Oracle-erp .why-us-section-desc {
    text-align: left;
    margin: 0;
}

.oracle-erp-services {
    background-color: #152337;
    border-radius: 50px;
    color: #3C83F6;
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    margin: 0 auto;
    margin-bottom: 25px;
    display: table;

}

.oracle-erp-services img {
    width: 16px;
    margin-right: 5px;
    margin-top: -3px;
}

.Oracle-erp a {
    background-color: #fff;
    padding: 11px 20px;
    border-radius: 6px;
    color: #0a58ca;
    text-decoration: none;
    display: inline-block;
    margin: 0 auto;
    display: table;
    margin-top: 40px;
}

.Oracle-erp a:hover {
    background-color: #fff;

}

.crm-image-txt {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.crm-image-txt .service-icon {
    margin-bottom: 0;
    background-color: #e5eefb;
    width: 48px;
    height: 48px;
}

.crm-image-txt .service-icon img {
    width: 20px;
}

.crm-image-txt h4 {
    margin: 0;
    margin-left: 15px;
    font-size: 19px;
    font-weight: 600;
    color: #0F1729;
}

.crm-transformation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crm-transformation ul li {
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    color: #65758B;
}

.crm-transformation ul li img {
    margin-right: 4px;
    width: 14px;
}


.crm-transformation a {
    background-color: #3C83F6;
    padding: 11px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    display: table;
    margin: 0 auto;
    margin-top: 30px;
}

.crm-transformation a:hover {
    background-color: #0a58ca;
}

.crm-transform-services {
    background-color: #ebf3fe;
    border-radius: 50px;
    color: #3C83F6;
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    margin: 0 auto;
    margin-bottom: 25px;
    display: table;
}


.crm-transform-services img {
    width: 16px;
    margin-right: 5px;
    margin-top: -3px;
}

.white-bg {
    background-color: #fff;
}

.our-approach h2 {
    color: #0F1729;
    font-size: 34px;
    font-weight: 700;
}

.our-approach p {
    color: #65758B !important;
}

.our-approach .feature-icon {
    border-radius: 8px;
    background-color: #ebf3fe;
    margin: 0;
    margin-bottom: 20px;
    height: 48px;
    width: 48px;
}

.our-approach h4 {
    font-size: 19px;
    text-align: left;
    color: #0F1729;
}

.our-approach .why-us-section-desc {
    text-align: left;
    margin: 0;
    color: #65758B !important;
}

.numbers {
    font-size: 58px;
    font-weight: 700;
    color: #ebf3fe;
    text-align: left;
    line-height: 60px;
}

.challenges-solve .feature-item-leadership {
    padding-top: 30px;
    margin: 0;
}

.challenges-solve h4 {
    margin-bottom: 15px;
}

.challenges-solve p {
    margin: 0;
}

.ai-core {
    width: 100%;
    background: #ECF3FE;
    background: linear-gradient(90deg, rgba(236, 243, 254, 1) 0%, rgba(245, 249, 255, 1) 100%);
    border: 1px solid #e0ebfd;
    border-radius: 15px;
    padding: 30px;
    margin: 0;
}


.ai-core ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-core ul li {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #0F1729;
    background: url(../images/bullet.svg) no-repeat left 18px;
    padding-left: 20px;
}

.ai-core ul li span {
    display: table;
    font-weight: 400;
    font-size: 14px;
    font-weight: 400;
    color: #65758B;
}

.ai-core ul li img {
    padding-right: 8px;
}



.form-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}



.form-header h2 {
    font-weight: 600;
}

.form-header p {
    color: #7f8c8d;
    margin-top: 10px;
}

.required-asterisk {
    color: #e74c3c;
}

.form-label {
    font-weight: 400;
    color: #0F1729;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.input-error {
    border: 1px solid #dc3545 !important;
}

.form-success-message {
    background: #d1e7dd;
    color: #0f5132;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    display: none;
}


.form-footer {
    text-align: center;
    margin-top: 25px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.character-count {
    font-size: 0.85rem;
    color: #95a5a6;
    text-align: right;
    margin-top: 5px;
}

.ai-core-contact {
    background: #f8fafc;
    border: 1px solid #e1e7ef;
}

.ai-core-contact h2 {
    font-size: 19px;
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 15px;
}

.ai-core-contact a {
    color: #65758B;
    font-size: 15.5px;
    font-weight: 400;
    text-decoration: none;
}

.ai-core-contact a:hover {
    color: #3C83F6;
}

.ai-core-contact-bottom h2 {
    font-size: 19px;
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 15px;
}

.circle-content {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.circle {
    width: 24px;
    height: 24px;
    background-color: #3C83F6;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    flex-shrink: 0;
}

.content {
    color: #65758B;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
}

.btn-submit {
    background-color: #3C83F6;
    border-radius: 6px;
    outline: none;
    color: #fff;
    padding: 12px 30px;
    border: none;
    width: 100%;
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
}

.btn-submit:hover {
    background-color: #0a58ca;
    color: #fff;
}

.btn-submit i {
    margin-left: 5px;
}

.coming-soon h2 {
    font-size: 35px;
    font-weight: 700;
}

.coming-soon a,
.coming-soon a:hover {
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    color: #3C83F6;
}

.coming-soon p {
    max-width: 450px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.timer {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.implement-approach .feature-icon {
    width: 64px;
    height: 64px;
    font-weight: 700;
    font-size: 23px;
    color: #3C83F6;
    border-radius: 100%;
    box-shadow: none;

}

.gray-section {
    background-color: #111822;
}

.oracle-product-support h2 {
    font-size: 29px;
    font-weight: 700;
    color: #F8FAFC;
}

.oracle-product-support p {
    font-size: 15.5px;
    font-weight: 400;
    color: #94A3B8;
    padding: 15px 0;
}

.oracle-product-support ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* ðŸ”¹ allow items to move to next row */
    gap: 15px;
}

.oracle-product-support ul li {
    list-style: none;
    background-color: #070A13;
    color: #F8FAFC;
    border: 1px solid #20222b;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    padding-left: 45px;
    width: calc(50% - 10px);
    /* ðŸ”¹ adjust width for gap */
    font-size: 14px;
    font-weight: 400;
}

.oracle-product-support ul li::before {
    content: "";
    background: url(../images/arrow-blue.svg) no-repeat center center;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 20px;
}


.oracle-product-support-right h2 {
    font-size: 29px;
    font-weight: 700;
    color: #F8FAFC;
}


.oracle-product-support-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 25px;
}

.oracle-product-support-right ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.why-icons {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    background-color: #1a2d4c;
}

.icon-content {
    width: calc(100% - 60px);
    margin-left: 20px;
}

.icon-content h4 {
    font-size: 15.5px;
    font-weight: 600;
    color: #F8FAFC;
}

.icon-content p {
    font-size: 14px;
    font-weight: 400;
    color: #94A3B8;
    margin-bottom: 0;
}

.discuss-form h2 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.discuss-form p {
    font-size: 15px !important;
    font-weight: 400;
    color: #94A3B8 !important;
    max-width: 650px;
    margin: 0 auto;
    margin-top: 15px;
}

.discuss-form-section {
    max-width: 672px;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #e1e7ef;
    background-color: #f8fafc;
    margin: 0 auto;
}

.discuss-form-section h3 {
    font-size: 22.7px;
    font-weight: 700;
    color: #0F1729;
}

.discuss-form-section p {
    font-size: 15.3;
    font-weight: 7400;
    color: #65758B;
}

.contact-form {
    margin-top: 20px;
}

.contact-form .form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #dbe4f0;
}

.contact-form textarea.form-control {
    height: 140px;
    resize: none;
}

.send-btn {
    background-color: #3b82f6;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
}

.send-btn i {
    margin-left: 8px;
}

.service-link {
    background-color: #0c162a;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    color: #3C83F6;
    display: inline-block;
    padding: 7.5px 25px;
    text-decoration: none;
    margin-bottom: 15px;
}

.service-link img {
    width: 16px;
    margin-right: 4px;
    margin-top: -2px;
}


.how-we-help .feature-item {
    border: 1px solid #e1e7ef;
    background-color: #f8fafc;
    border-radius: 8px;
}

.how-we-help .feature-icon {
    width: 48px;
    height: 48px;
    box-shadow: none;
}

.how-we-help .feature-icon img {
    width: 24px;
}

.how-we-help h4 {
    font-size: 17.4px;
}

.dynamic-modules h2 {
    color: #F8FAFC;
}

.dynamic-modules p {
    color: #94A3B8 !important;
}

.dynamic-modules h4 {
    margin: 0;
    margin-left: 15px;
    font-size: 23px;
    font-weight: 700;
    color: #F8FAFC;
}

.dynamic-modules .service-icon {
    margin-bottom: 0;
    background-color: #1a2d4c;
    width: 48px;
    height: 48px;
}

.dynamic-card {
    background: transparent;
    border: 0;
    padding: 0 !important;
}

.bottom-box {
    border: 1px solid #1d365d;
    background: #152337;
    font-size: 14px;
    color: #3C83F6;
    padding: 15.5px;
    border-radius: 8px;
}

.dynamic-card-2 {
    background-color: #070a13;
    border: 1px solid #20222b;
    border-radius: 8px;
}

.dynamic-card-2 h3 {
    font-size: 17.4px;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 15px;
}

.dynamic-card-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dynamic-card-2 ul li {
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    color: #65758B;
    display: flex;
    align-items: start;
    gap: 5px;
}

.dynamic-card-2 ul li img {
    margin-right: 4px;
    width: 14px;
    margin-top: 4px;
}

.microsoft-partner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.microsoft-partner ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15.6px;
    font-weight: 600;
    color: #0F1729;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.microsoft-partner ul li::before {
    width: 20px;
    height: 20px;
    content: "";
    background: url(../images/tick.svg) no-repeat center center;
    position: absolute;
    left: 0;
    top: 3px;

}

.microsoft-partner ul li span {
    display: table;
    color: #65758B;
    font-size: 14px;
    font-weight: 400;
}

.proven-results h2 {
    font-size: 19px;
    font-weight: 600;
    color: #0F1729;
}


.proven-results ul li {
    padding: 5px 0;
    font-size: 24px;
    font-weight: 700;
    color: #0F1729;
    background: none;
    padding-left: 20px;
    position: relative;
}

.proven-results ul li::before {
    height: 52px;
    width: 3px;
    content: "";
    background-color: #3C83F6;
    position: absolute;
    left: 0;
}

.ai-core ul li span {
    display: table;
    font-weight: 400;
    font-size: 14px;
    font-weight: 400;
    color: #65758B;
}

.ai-approach ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.ai-approach ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: start;
    font-weight: 700;
    font-size: 15.4px;
    color: #0F1729;
    margin-bottom: 15px;
    grid-area: 15px;
}

.ai-approach ul li span {
    display: table;
    font-weight: 400;
    font-size: 14px;
    color: #65758B;
}

.ai-icon {
    width: 20px;
}

.ai-icon img {
    width: 100%;
}

.ai-content {
    width: calc(100% - 30px);
    margin-left: 10px;
}


.agientix-ai ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.agientix-ai ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15.6px;
    font-weight: 600;
    color: #0F1729;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    background: none;
}

.agientix-ai ul li::before {
    width: 20px;
    height: 20px;
    content: "";
    background: url(../images/tick.svg) no-repeat center center;
    position: absolute;
    left: 0;
    top: 3px;
}

.agientix-ai h2 {
    font-size: 19px;
    font-weight: 600;
    color: #0F1729;
    margin-bottom: 15px;
}

.ai-capabilities h2 {
    color: #F8FAFC;
    font-size: 34px !important;
}

.industry-expert ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    margin-top: 20px;
}

.industry-expert ul li {
    width: calc(50% - 10px);
    color: #65758B;
    font-size: 14px;
    font-weight: 400;
}

.industry-expert ul li::before {
    top: 1px;
}

.proven-results {
    border: 1px solid #e1e7ef;
    background: #f8fafc;
}

.soc-in {
    width: 30px;
    float: left;
}

.soc-in img {
    width: 100%;
    position: inherit;
    margin: inherit;
}

.dropdown-menu,
.dropdown-menu.show {
    background-color: #fff;
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 200px;
}

.dropdown-menu li a {
    padding: 10px;
    color: #000;
}

.dropdown-menu li a:hover {
    padding: 10px;
    color: #fff;
    background-color: #004aad;
}


/* .navbar-nav .nav-link.active,
        .navbar-nav .show>.nav-link {
            color: #3C83F6 !important;
        } */

.keycapabilities ul li {
    position: relative;
    padding-left: 25px;
}

.keycapabilities ul li::before {
    width: 18px;
    height: 20px;
    position: absolute;
    background: url(../images/tick.svg) no-repeat center center;
    content: "";
    left: 0;
    top: 13px;
}

.sub-hero-section video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* optional */
}

.white-but {
    background-color: #fff;
    border-color: #fff;
}

.hero-buttons a {
    padding-left: 20px;
    padding-right: 20px;
}

.challenges-solve .feature-item-leadership {
    padding-bottom: 30px;

}

.partner-sec {
    padding-bottom: 5px !important;
}

.partner-sec ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 7%;
    margin-top: 30px;

}



.partner-sec ul li img {
    width: 100%;
}

.new-leaders {
    padding-bottom: 0;
}


/* ================= PAGE ANIMATION SYSTEM ================= */

/* Default hidden state */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease;
}

/* Visible state */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animation variants */
.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.zoom-in {
    transform: scale(0.92);
}








@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover animation for cards */
.feature-item {
    transition: all 0.3s ease;
}






.stats-band {
    background: #1e6bff;
    padding: 48px;
    display: flex;
    justify-content: center;
    gap: 0;
}

.stat {
    text-align: center;
    padding: 0 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.crm-image-txt .service-icon svg {
    width: 20px;
}

.why-icons svg {
    width: 20px;
}

.stats-band .stat:last-child {
    border: 0;

}

.how-we-help .feature-icon {
    font-weight: 700;
}

/* Smooth transition for arrow */
.navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

/* Rotate arrow when hovering Discover More */
.navbar-nav .nav-item.dropdown:hover>.dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

/* blogs */


.blogs-section {
    background-color: #070A13;
}

.blog-item {
    /* background-color: #111822; */
    width: 100%;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #60666e;
    float: left;
    margin-bottom: 20px;
}

.blog-item:hover {
    border: 1px solid #336ecc;
}

.blog-item:hover a {
    color: #0d6efd;
}

.blog-item:hover .blog-readmore a img[alt*="Read more"] {
    filter: brightness(0) saturate(100%) invert(35%) sepia(64%) saturate(2500%) hue-rotate(199deg) brightness(101%) contrast(101%);
}


.blog-item h4 {
    font-size: 25px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 25px;
}

.blog-left {
    text-align: left;
    color: #fff;
    font-size: 20px;
    float: left;
}

.blog-left span {
    padding: 0 20px;
}

.blog-readmore {
    text-align: right;
    color: #fff;
    font-size: 20px;
    float: right;
}

.blog-readmore img {
    width: 30px;
}

.blog-readmore a {
    color: #fff;
    text-decoration: none;
}

.blog-readmore a:hover {
    color: #0d6efd;
}

.blog-readmore a:hover img[alt*="Read more"] {
    filter: brightness(0) saturate(100%) invert(35%) sepia(64%) saturate(2500%) hue-rotate(199deg) brightness(101%) contrast(101%);
}

.blog-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.blog-item.show {
    opacity: 1;
    transform: translateY(0);
}

.blog-details-title {
    font-size: 34px;
    color: #F8FAFC;
}

.blog-details-content {
    color: #fff;
    line-height: 27px;
    margin-bottom: 30px;
}

.blog-details-content h3 {
    font-weight: normal;
    margin-top: 25px;
}

.details-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
}

.blog-details-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #727479;
    padding: 20px 0;
    margin-top: 30px;
}

.blog-details-navigation a {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 10px;
}

.blog-details-navigation a img {
    width: 25px;
}

.category {
    border-radius: 50px;
    color: #fff;
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #383a42;
    position: relative;
}

/* .category::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 100%;
            position: absolute;
            background-color: #3C83F6;
            left: 35px;
            top: 15px;

        } */

.date {
    color: #fff;
}

.bred-crumb {
    color: #fff;
    padding: 15px 0;
    padding-top: 30px;
}

.bred-crumb span {
    padding: 0 7px
}

.bred-crumb a {
    color: #fff;
    text-decoration: none;
}

.bred-crumb a:hover {
    text-decoration: underline;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-logo-link {
    margin-right: 16px;
}

.footer-heading {
    text-transform: uppercase;
}

.aigentix-cf7-wrapper .wpcf7-submit {
    padding: 12px 28px;
}

.Oracle-erp a:hover {
    color: #0a58ca !important;
}

.invalid-feedback {
    display: none;
}

.wpcf7-form-control-wrap:has(.is-invalid)+.invalid-feedback {
    display: block;
}

/* Hide CF7's own tooltip */
.wpcf7-not-valid-tip {
    display: none !important;
}

/* Remove Bootstrap's default focus glow */
.send-btn:focus,
.send-btn:focus-visible {
    background-color: #3b82f6;
    color: #fff;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .navbar .dropdown-menu {
        margin-top: 0;
    }

}


@media (max-width: 992px) {
    .navbar-custom {
        height: auto;
    }

    .hero-title {
        font-size: 2.4rem !important;
    }

    .hero-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .dropdown-menu,
    .dropdown-menu.show {
        width: 100%;
    }
}



@media (max-width: 768px) {



    .sub-hero-title {
        font-size: 40px;
    }

    .foo-logo-left img {
        width: 90%;
    }

    .story-modernaize {
        margin-top: 20px;
    }

    .ai-core {
        margin-top: 25px;
    }

}

@media (max-width: 767px) {

    .blog-item {
        padding: 15px;
    }

    .blog-item h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .blog-left {
        font-size: 16px;
    }

    .blog-left span {
        padding: 0 5px;
    }

    .blog-readmore {
        font-size: 16px;
        text-align: left;
        width: 100%;
        margin-top: 10px;
    }

    .blog-readmore img {
        width: 20px;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        padding: 48px 0;
    }

    .stats-band {
        flex-wrap: wrap;
        gap: 24px;
    }

    .new-leaders-p {
        margin-bottom: 100px;
    }

    .story-modernaize {
        margin-top: 20px;
    }

    .ai-core {
        margin-top: 25px;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn-primary {
        width: 100%;
        margin-bottom: 10px;
    }

    .new-leaders-p {
        margin-bottom: 100px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .story-modernaize {
        margin-top: 20px;
    }

    .story-modernaize ul li {
        font-size: 14px;
    }

    .story-modernaize {
        padding: 20px
    }

    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .sub-hero-title {
        font-size: 30px;
    }

    .navbar-custom {
        height: auto;
    }

    .ready-modernaize {
        padding: 30px;
    }

    .ready-modernaize h2 {
        font-size: 27px;
    }

    .numbers {
        font-size: 40px;
    }

    .ai-core {
        margin-top: 25px;
        padding: 20px;
    }

    .foo-logo-left img {
        width: auto;
    }

    .ready-to-work .how-we-work-section-title {
        font-size: 25px;
    }

    .how-we-work-section-title {
        font-size: 28px;
    }

    .why-us-section-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 25px;
    }

    .partner-sec ul {
        gap: 0;
        flex-direction: column;
        padding: 0;
        max-width: 250px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ════════════════════════════════════════════
   CF7 RICH SUCCESS / ERROR MESSAGES
   ════════════════════════════════════════════ */

/* Reset CF7 default response box */
.wpcf7-response-output {
    display: none;
    border: none !important;
    border-radius: 12px !important;
    padding: 18px 20px !important;
    margin: 16px 0 0 !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

/* Show response box once CF7 adds the state classes */
.wpcf7-form.sent .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
    display: flex !important;
    align-items: center;
    gap: 14px;
    animation: cs-fade-slide-in 0.35s ease both;
}

/* Icon circle — shared base */
.wpcf7-response-output::before {
    content: '';
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ── SUCCESS state ── */
.wpcf7-form.sent .wpcf7-response-output {
    background: #EAF3DE !important;
    color: #27500A !important;
    font-weight: 500;
}

.wpcf7-form.sent .wpcf7-response-output::before {
    background-color: #3B6D11;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ── ERROR / FAILED / VALIDATION state ── */
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
    background: #FCEBEB !important;
    color: #791F1F !important;
    font-weight: 500;
}

.wpcf7-form.failed .wpcf7-response-output::before,
.wpcf7-form.invalid .wpcf7-response-output::before,
.wpcf7-form.aborted .wpcf7-response-output::before,
.wpcf7-form.unaccepted .wpcf7-response-output::before {
    background-color: #A32D2D;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

/* ── SPAM state ── */
.wpcf7-form.spam .wpcf7-response-output {
    background: #FAEEDA !important;
    color: #633806 !important;
    font-weight: 500;
}

.wpcf7-form.spam .wpcf7-response-output::before {
    background-color: #854F0B;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 9v2m0 4h.01M5.07 19h13.86c1.54 0 2.5-1.67 1.73-3L13.73 4c-.77-1.33-2.69-1.33-3.46 0L3.34 16c-.77 1.33.19 3 1.73 3z'%3E%3C/path%3E%3C/svg%3E");
}

/* Fade-slide animation */
@keyframes cs-fade-slide-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Field-level validation tips — small red text under each field */
.wpcf7-not-valid-tip {
    color: #A32D2D !important;
    font-size: 12px !important;
    font-weight: 500;
    margin-top: 6px !important;
    display: block;
    padding-left: 2px;
}

/* Highlight invalid input borders */
.wpcf7-form-control.wpcf7-not-valid {
    border-color: #E24B4A !important;
    /* background: #FCEBEB !important; */
}

/* Submit button loading spinner color match */
.wpcf7-spinner {
    background-color: #3C83F6 !important;
}

/* Hide the response message by default */
.wpcf7-form.invalid .wpcf7-response-output {
    display: none !important;
}

/* Only show it when the submission was successful */
.wpcf7-form.sent .wpcf7-response-output {
    display: block !important;
}