body {
    font-family: "Inter", sans-serif;
}
.navbar-brand img {
    max-width: 220px;
}
.primary-button {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.navbar .primary-button {
    padding: 5px 15px;
}
.btn:focus {
    box-shadow: none;
}
.btn.border-button {
    background-color: white;
    color: #1d4ed8;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #1d4ed8;
    transition: all 0.3s;
}
.primary-button:hover,
.navbar .navbar-nav .primary-button:hover {
    background-color: #1d4ed8;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.secondary-button {
    background-color: white;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #2563eb;
    transition: all 0.3s;
}
.submit-button {
    background-color: #f59e0b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    display: block;
    margin: 0 auto;
    white-space: nowrap;
    text-decoration: none;
    width: fit-content;
}
.submit-button:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}
.secondary-button:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
}

h2 {
    /* font-weight: bold;
    font-size: 38px; */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
/* NAVIGATION */
.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}
.navbar-toggler:focus {
    box-shadow: none;
}

.logo span {
    color: #f59e0b;
}

nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 6px 0;
    z-index: 5;
    width: 100%;
}
.navbar .navbar-nav .primary-button {
    color: #fff;
}
.navbar-nav > li {
    margin-left: 20px;
    display: flex;
    align-items: center;
}
.navbar li a {
    color: #1e293b;
    font-weight: 500;
    font-size: 14px;
}
.navbar li a:hover {
    background-color: transparent;
    color: #1d4ed8 !important;
}
.navbar-light .navbar-nav .nav-link:hover {
    border-radius: 9px;
}
nav.bg-light {
    background-color: #fff !important;
}
.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}
.navbar-light .navbar-nav .nav-link {
    color: #000;
}
.navbar-nav li img {
    max-width: 20px;
    margin-right: 10px;
}
.navbar .dropdown-menu {
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    top: 100%;
    left: 0;
    min-width: 160px;
    z-index: 1;
    border: none;
}
.schedule-meeting {
    color: #1d4ed8 !important;
    font-weight: 600 !important;
    font-size: 14px;
    display: flex;
    align-items: center;
/*    gap: 8px;*/
    animation: pulse 2s ease-in-out infinite;
}
.blink {
    animation: blink 1.5s ease-in-out infinite;
}
 @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Banner */
.main-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0 40px;
}
h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}
h1 span {
    color: #2563eb;
}
p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}
.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}
.badge-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.badge {
    background-color: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}
.badge i {
    color: #10b981;
}
.main-banner .button-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.hero-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    margin: 0 auto;
}

.hero-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}
.form-control:focus {
    box-shadow: none;
}
.banner-content {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}
.banner-content > div {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    width: 100%;
}

/* BANNER */

/* CTA Banner */
.cta-banner {
    background-color: #2563eb;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
}

.cta-banner .primary-button {
    background-color: var(--secondary);
    color: #fff;
}
.cta-banner .submit-button {
    width: fit-content;
    margin: auto;
}
.cta-banner .primary-button:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* counter section */
.counter-wrapper {
    text-align: center;
    padding: 80px 0;
}
.counter-wrapper p {
    margin-bottom: 40px;
}
.counter-wrapper .each-counter h5 {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    width: 100%;
}
.counter-wrapper .each-counter p {
    font-size: 16px;
    width: 100%;
    margin-bottom: 0;
}
.counter-wrapper .each-counter {
    margin: auto auto 40px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease-out 0s;
    width: 100%;
    /* height: 200px; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px;
}
.counter-wrapper .each-counter:hover {
    border: 1px solid transparent;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}
.counter-wrapper .primary-button {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    justify-content: center;
    margin: 20px auto auto;

}
/* OUR SERVICES */
.our-services {
    background-color: #f8fafc;
    padding: 60px 0;
    text-align: center;
}
.our-services .section-title {
    max-width: 700px;
    margin: auto auto 40px;
}
.features-carousel {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: calc(20% - 10px);
    margin-right: 12px;
    flex: 0 0 auto;
    display: flex;
    text-align: left;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease-in-out;
}
.feature-card:last-child {
    margin-right: 0;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #dbeafe;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    color: #2563eb;
    font-size: 20px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 10px;
}
.stats {
    padding: 60px 0;
}
.stats .section-title {
    text-align: center;
    margin-bottom: 40px;
}
.stats .hero-form {
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Process Section */
.process {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.process .section-title {
    max-width: 700px;
    text-align: center;
    justify-content: center;
    margin: auto auto 40px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dce0e5;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 22%;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    color: #64748b;
    font-size: 14px;
}

/* Write to Us Section */
.write-to-us {
    padding: 60px 0;
    background-color: #f8fafc;
    text-align: center;
}

.write-to-us-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #2563eb;
}

.write-to-us-container p {
    margin-bottom: 10px;
}

.write-to-us-email {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin: 15px 0;
    word-break: break-all;
    text-decoration: none;
    display: block;
}
.meeting-mb {
    display: none;
}
.meeting-mb img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* testimonials css start here */
.testimonials {
    padding: 60px 0;
    background-color: #fff;
}
.testimonials .section-title {
    text-align: center;
    margin: auto auto 40px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e2e8f0;
    margin-right: 10px;
    overflow: hidden;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.testimonial-author p {
    color: #64748b;
    font-size: 12px;
    margin-bottom: 0;
}
.testimonial-text {
    color: #64748b;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 16px;
}
.testimonial-rating {
    color: #f59e0b;
    font-size: 12px;
}
.testimonial-author {
    width: calc(100% - 50px);
}
/* testimonials css end here */

/* guarantee css start here */
.guarantee {
    background-color: #f59e0b;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.guarantee i {
    font-size: 30px;
}
.guarantee-text {
    font-size: 16px;
    font-weight: 600;
}
/* guarantee css end here */

/* faq css start here */
.faq {
    padding: 60px 0;
    background-color: #fff;
}
.faq-title,
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}
.faq-title {
    text-align: center;
    margin-bottom: 40px;
}
.faq-title p {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}
.faq-item {
    margin-bottom: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 400px;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #f8fafc;
    box-shadow: none;
}
.accordion-button:focus {
    border-color: transparent;
}
.accordion-button  {
    font-size: 14px;
    font-weight: 600;
    background-color: #f8fafc;
    border-top: 1px solid #f2f2f2;
}
.accordion-body {
    font-size: 14px;
}
/* faq css end here */

/* contact css start here */
.contact {
    padding: 60px 0;
    background-color: #f8fafc;
}
.contact-info {
    margin-right: 20px;
    height: 100%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.contact-info p {
    margin-bottom: 20px;
}
.contact-details {
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.contact-item i {
    width: 30px;
    height: 30px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-right: 10px;
    font-size: 14px;
}
.contact-item a {
    color: #1e293b;
}
.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 15px;
}
.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-control-textarea {
    resize: vertical;
}
/* contact css end here */

/* footer css start here */
a {
    text-decoration: none;
}
footer {
    background-color: #1e293b;
    color: white;
    padding: 40px 0 20px;
}
.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: block;
}
.footer-logo:hover {
    color: #ffffff;
}
.footer-info .footer-logo img {
    max-width: 250px;
}
.footer-logo span {
    color: #f59e0b;
}
footer p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}
footer h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
footer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
footer ul li {
    margin-bottom: 0;
}
footer ul li a {
    color: #ffffff;
    opacity: 0.7;
    font-size: 14px;
    transition: opacity 0.3s;
}
footer ul li a:hover {
    color: #ffffff;
    opacity: 1;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
    text-align: center;
}
.footer-top {
    margin-bottom: 20px;
}
.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;
}
.floating-cta {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 99;
}
.footer-info {
    max-width: 400px;
}
.floating-button {
    background-color: #f59e0b;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    cursor: pointer;
    transition: .5s ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floating-button:hover {
    transform: scale(1.1);
    background-color: #d97706;
}
/* footer css end here */

/* Modal for Floating CTA */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px 20px 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.modal-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.close-button {
    position: absolute;
    top: 7px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.modal-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.modal-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
}

@media (max-width: 991px) {
    .meeting-mb img {
        height: 30px;
        width: 30px;
    }
    .feature-card {
        width: calc(33.33% - 15px);
        margin-bottom: 12px;
    }
    .navbar-nav > li.dropdown {
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    .mb-hide {
        display: none !important;
    }
    .navbar-nav li a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    .navbar-nav > li {
        margin-left: 0;
    }
    .navbar-nav > li {
        justify-content: center;
    }
    .navbar-nav > .dropdown .dropdown-menu {
        position: unset;
        top: unset;
        width: 100%;
        box-shadow: none;
    }
    .meeting-mb {
        display: flex;
        margin-left: auto;
    }
    .navbar > .container {
        max-width: 95%;
    }
    .main-banner .button-wrapper {
        flex-wrap: wrap;
    }
    .counter-wrapper .each-counter {
        margin: auto auto 20px;
        width: auto;
        height: fit-content;
    }
    .counter-wrapper .primary-button {
        display: flex;
        flex-wrap: wrap;
        width: fit-content;
        margin: 30px auto auto;
    }
    .banner-content {
        height: fit-content;
        margin: auto auto 80px;
        text-align: center;
    }
    .badge-container {
        width: 100%;
        justify-content: center;
    }
    .main-banner .button-wrapper {
        width: 100%;
        justify-content: center;
    }
    .hero-form {
        margin: auto;
        max-width: unset;
        margin-right: auto !important;
    }
    .navbar .navbar-nav .primary-button {
        width: fit-content;
    }
    .navbar-nav {
        padding: 20px 0;
    }
    .meeting-mb .nav-link {
        display: flex;
        align-items: center;
    }
    .meeting-mb .nav-link span {
        font-size: 14px;
        font-weight: 600;
    }
}

@media (max-width: 767px) {
    .feature-card {
        width: calc(50% - 6px);
        margin-bottom: 15px;
    }
    .feature-card:nth-child(2n) {
        margin-right: 0;
    }
    .features-carousel {
        justify-content: space-between;
    }
    .step {
        width: 30%;
    }
    .navbar-nav {
        padding: 30px 0;
    }
    .navbar-nav > li.dropdown {
        margin-bottom: 10px;
    }
    .main-banner .button-wrapper {
        justify-content: center;
        width: 100%;
    }
    .badge-container {
        justify-content: center;
    }
    
    .testimonial-card{
        margin-bottom: 20px;
        height: auto;
    }
    .badge-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-info{
        margin: 0 0 30px 0;
    }
    .contact-form .submit-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    .footer-info{
        margin-bottom: 40px;
    }
    .contact-item a,
    .cta-banner p,
    .feature-card p,
    .testimonial-text,
    .faq-title p,
    .accordion-body,
    .form-control,
    .accordion-button,
    .badge,
    .step p,
    .secondary-button, 
    .secondary-button,
    .btn.border-,
    .btn,
    .accordion-button,
    p {
        font-size: 14px !important;
        line-height: 20px;
    }

    h1 {
        font-size: 50px;
        line-height: 51px;
    }
    .footer-info {
        width: 100%;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        max-width: unset;
        padding: 0 40px;
        text-align: center;
    }
    .footer-top {
        text-align: center;
    }
    .counter-wrapper .each-counter {
        height: 170px;
    }
    .counter-wrapper .primary-button {
        display: flex;
        flex-wrap: wrap;
        width: fit-content;
        margin: 30px auto 0;
    }
    .step h3 {
        font-size: 18px;
    }
    .btn.border-button {
        padding: 10px 16px;
    }
    .accordion-button,
    .accordion-body {
        padding: 15px;

    }
}
@media (max-width: 575px) {
    .meeting-mb span {
        display: none;
    }
    .meeting-mb .nav-link {
        padding: 0;
    }
    .meeting-mb .nav-link img {
        height: 30px;
        width: 30px;
        margin-right: 10px;
    }
    .navbar-toggler {
        padding: 3px 10px;
    }
    .faq-title h2 {
        margin-bottom: 10px;
    }
    .faq-title p {
        font-size: 14px;
    }
    h1 {
        font-size: 42px;
        line-height: 47px;
    }
    p,
    .write-to-us-email {
        font-size: 16px;
    }
    .step {
        width: 100%;
        max-width: 250px;
        margin: auto;
    }
    .process-steps {
        flex-wrap: wrap;
    }
    .process-steps::before {
        display: none;
    }
    .step p {
        font-size: 14px;
    }
    .contact-info {
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
    .contact-form {
        padding: 20px;
    }
    h2 {
        font-size: 28px;
        line-height: 30px;
    }
    .our-services,
    .stats,
    .process,
    .testimonials,
    .faq,
    .write-to-us,
    .counter-wrapper {
        padding: 40px 0;
    }
    .cta-banner {
        padding: 40px 0 50px;
    }
    .feature-card {
        width: 100%;
        max-width: 80%;
        margin: auto auto 20px;
    }
    .feature-card:nth-child(2n),
    .feature-card:last-child {
        margin-right: auto;
    }
    .counter-wrapper .each-counter {
        width: 250px;
        margin: auto auto 20px;
    }
    .hero-form h2 {
        font-size: 18px;
        line-height: 22px;
    }
    .submit-button {
        padding: 9px 24px;
    }
    .cta-banner h2 {
        font-size: 30px;
        line-height: 38px;
    }
    .footer-info {
        padding: 0;
    }
    .footer-info .footer-logo img {
        max-width: 210px;
    }
    .hero-form {
        padding: 20px;
    }
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
}

@media (max-width: 375px) {
    .navbar-brand img {
        max-width: 160px;
    }
    .write-to-us-container,
    .main-banner .hero-form {
        padding: 20px;
    }
    .feature-card {
        max-width: 100%;
    }
    .modal-content h2 {
        line-height: 22px;
    }
}
