@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Regular.woff2') format('woff2'),
        url('../font/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-bold';
    src: url('../font/Poppins-Bold.woff2') format('woff2'),
        url('../font/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
html,
body{
    overflow-x: hidden;
}
body {
    font-family: 'Poppins';
}
.poppins-b {
    font-family: 'Poppins-bold';
}

:root {
    --bg-navy: #27253D;
    --bg-blue: #2563EB;
    --text-gray: #4f4d4e;
}

.bg-navy {
    background-color: var(--bg-navy);
}

.bg-blue {
    background-color: var(--bg-blue);
}

.block-pd {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-set {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.section-heading h2 {
    font-size: 46px;
    color: #27253D;
    font-weight: bold;
    font-family: 'Poppins-bold';
    margin-bottom: 25px;
}

.section-heading p {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: auto;
}

.navbar-custom {
    padding: 14px 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.nav-link:hover {
    color: #4EA5FF;
}

.consult-btn {
    background: linear-gradient(135deg, #0EA5E9, #6366F1);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
}

/* .consult-btn:hover {
    background: #1c54e8;
    color: #fff;
} */

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .3);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Hero Banner */

.hero-section {
    position: relative;
    background: url('../img/header-bg.png');
    overflow: hidden;
}

/* .hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
    rgba(25,35,72,.90),
    rgba(35,65,118,.82));
} */


.hero-section .trusted-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 40px;
    border: 2px solid transparent;
    background:
        linear-gradient(#24395d, #24395d) padding-box,
        linear-gradient(90deg, #00d4ff, #ff3cac) border-box;
    color: #fff;
    font-size: 14px;
    margin-bottom: 30px;
}

.hero-section .hero-title {
    font-size: 70px;
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 0;
}

.hero-section .hero-title span {
    color: #24D4E1;
}

.hero-section {
    padding: 40px 0;
}

.hero-section .hero-subtitle {
    color: #e4e4e4;
    font-size: 42px;
    margin-top: 10px;
    font-weight: 500;
}

.hero-section .hero-text {

    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    margin: 30px 0;

}

.hero-section .feature-list {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;

}

.hero-section .feature-list div {

    color: #fff;
    font-size: 17px;

}

.hero-section .feature-list i {

    color: #fff;
    margin-right: 10px;

}

.hero-section .btn-gradient {
    background: linear-gradient(90deg, #ff3cac, #2b8cff);
    border: none;
    color: #fff;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.hero-section .btn-outline-custom {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.hero-section .btn-outline-custom:hover {
    background: #fff;
    color: #222;
}

.hero-section .consultation-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-section .hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-section .hero-image img {
    width: 90%;
}

/*================ STATS ===============*/
.stats {

    background: #27253D;
    color: #fff;
    padding: 20px 0;

}

.stats .stat-box {
    text-align: center;
    border-right: 1px solid #fff;
    height: 100%;
}

.stats .stat-box h2 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stats .stat-box p {
    margin: 0;
    font-size: 18px;
}

/* problem section */

.problem-section {
    background: linear-gradient(180deg, rgba(6, 155, 217, 0.21) 10%, rgba(33, 101, 162, 0.03) 100%);
}

.problem-section .phone-box {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 30px 70px rgba(0, 0, 0, .30); */
}

.problem-section .phone-box img {
    width: 100%;
    display: block;
    transition: .6s;
    background: linear-gradient(
  to right,
  rgba(10,15,30,0.6) 0%,
  transparent 100%
);
}

/* .problem-section .phone-box:hover img {
    transform: scale(1.05);
} */

.problem-section .float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}
.hero-section .hero-image {

    animation: float 4s ease-in-out infinite;
}

@keyframes hero-image {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

.problem-section .problem-card {
    background: rgba(255, 255, 255, .95);
    border-radius: 18px;
    padding: 20px 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.problem-section .problem-card:hover {
    border: 1px solid #0B81C6;
}

.problem-section .problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .22);
}

.problem-section .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: #2165A2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
    margin-right: 0;
    transition: .4s;
}

.problem-section .problem-card:hover .icon-box {
    transform: rotate(-8deg) scale(1.1);
}

.problem-section .problem-card h4 {
    font-size: 22px;
    color: #27253D;
    font-weight: 700;
    margin-bottom: 6px;
}

.problem-section .problem-card p {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* tech-section */

.tech-section {
    background-image: url(../img/Technical-bg.png);
}

.tech-section .service-row {
    margin-top: 60px;
}

.tech-section .service-item {
    padding: 35px 35px;
    transition: .4s;
    height: 100%;
    border-right: 1px solid #ffffff21;
    border-bottom: 1px solid #ffffff21;
}

.tech-section .service-item:hover {
    background: rgba(255, 255, 255, .04);
}

.tech-section .box-4,
.tech-section .box-5,
.tech-section .box-6 {
    border-bottom: unset;
}

.tech-section .box-3,
.tech-section .box-6 {
    border-right: unset;
}

.tech-section .service-item h4 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
}

.tech-section .icon-box {
    margin-bottom: 25px;
}

.tech-section .service-item p {
    color: #d6d6df;
    line-height: 1.5;
    font-size: 17px;
}

.tech-section .title-line {
    width: 100px;
    height: 1px;
    background-color: #fff;
    margin: 0px auto 25px;
}

/* why us section */

.why-us {
    background-color: #F2FAFD;
}

.why-us .phone-area img.phone {
    width: 100%;
}

.why-us .floating-card {
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .18));
}

.why-us .feature-card {
    background: #fff;
    /* border: 1px solid #0093DE; */
    border-radius: 18px;
    padding: 35px;
    /* height: 100%; */
    transition: .4s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.why-us .feature-card.box2 {
    margin-top: 35px;
}

.why-us .feature-card.box3 {
    margin-top: -35px;
}

.why-us .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.why-us .feature-card.active {
    background: #0093DE;
    color: #fff;
    border: none;
}

.why-us .number {
    display: flex;
    align-items: center;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
    color: #0093DE;
}

.why-us .number span {
    width: 65px;
    height: 3px;
    background: currentColor;
    margin-left: 15px;
    opacity: .7;
}

.why-us .feature-card h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #27253D;
    /* font-family: 'Poppins-bold'; */
}

.why-us .feature-card p {
    margin: 0;
    line-height: 1.7;
    color: #666666;
}

.why-us .feature-card.active .number {
    color: #fff;
}

.why-us .feature-card.active h4,
.why-us .feature-card.active p {
    color: #fff;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* How We Work Section */

.how-work {
    background-image: url(../img/Work-bg.png);
}

.how-work .section-desc {
    color: rgba(255, 255, 255, .85);
    max-width: 650px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.how-work .timeline {
    position: relative;
    margin-top: 70px;
}

.how-work .timeline::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 85px;
    border-top: 2px dashed rgba(255, 255, 255, .45);
}

.how-work .step {
    position: relative;
    text-align: center;
    z-index: 2;
}

.how-work .step-number {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0EA5E9, #6366F1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 42px;
    font-weight: 300;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    transition: .4s;
}

.how-work .step:hover .step-number {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .35);
}

.how-work .step h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.how-work .step p {
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.8;
    max-width: 240px;
    margin: auto;
}

.how-work .section-heading h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: 'Poppins';
}

.how-work .title-line {
    height: 1px;
    background-color: #fff;
    margin: 0px auto 25px;
    width: 85px;
}


/* Testimonials Section */

.testimonials-section {
    background-color: #f8fafc;
}

.testimonials-section .section-heading span {
    color: #0b81c6;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.testimonials-section .testimonial-item {
    padding: 10px;
}

.testimonials-section .testimonial-card {
    transition: .4s;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
}

.testimonials-section .quote {
    margin-bottom: 15px;
}

.testimonials-section .testimonial-card p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.testimonials-section .stars {
    color: #f7b500;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonials-section .testimonial-card hr {
    margin: 20px 0;
    border-color: #27395069;
}

.testimonials-section .client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials-section .client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-section .client h5 {
    margin-bottom: 5px;
    color: #27253D;
    font-size: 20px;
    font-weight: 600;
}

.testimonials-section .client span {
    color: #2165A2;
    font-size: 16px;
}

.testimonials-section .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.testimonials-section .slick-dots li button {
    width: 30px;
    height: 3px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: #d0d0d0;
    color: transparent;
    cursor: pointer;
}

.testimonials-section .slick-dots li button:before {
    display: none;
}

.testimonials-section .slick-dots li.slick-active button {
    background: #0b81c6;
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    /* background: #090f1f; */
    background: radial-gradient(circle at 20% 15%, rgba(58, 123, 255, 0.35) 0%, transparent 35%),
radial-gradient(circle at 85% 10%, rgba(0, 217, 255, 0.18) 0%, transparent 30%),
linear-gradient(135deg, #050816 0%, #090f1f 45%, #111b36 100%);
}

.contact-section .section-tag {
    color: #20b5ff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.contact-section .contact-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.contact-section .contact-desc {
    color: #9fa9be;
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
}

.contact-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
}

.contact-section .feature-list li {
    display: flex;
    align-items: center;
    color: #bfc9d8;
    font-size: 18px;
    margin-bottom: 18px;
}

.contact-section .feature-list i {
    display: flex;
    color: #2bb0ff;
    margin-right: 12px;
}

.contact-section .contact-card {
    background: #202b40;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.contact-section .contact-card p {
    margin-bottom: 10px;
    color: #bfc9d8;
    font-size: 18px;
}

.contact-section .contact-card i {
    margin-right: 10px;
}

.contact-section .contact-card a {
    color: #1ea7ff;
    text-decoration: none;
}

.contact-section .proposal-card {
    background: #202b40;
    border-radius: 20px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.contact-section .proposal-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.contact-section .proposal-card p {
    color: #8f9ab2;
    margin-bottom: 30px;
}

.contact-section .form-label {
    color: rgb(170, 181, 199);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-section .form-control,
.contact-section .form-select {
    background: #11182c;
    border: 1px solid #364056;
    color: #fff;
    border-radius: 10px;
    height: 54px;
}

.contact-section textarea.form-control {
    height: 120px;
    resize: none;
}

.contact-section .form-control::placeholder {
    color: #6c7486;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
    background: #11182c;
    color: #fff;
    border-color: #3f8cff;
    box-shadow: none;
}

.contact-section .btn-gradient {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(90deg, #25b6ff, #6768ff);
    transition: .4s;
}

.contact-section .btn-gradient:hover {
    transform: translateY(-3px);
}

.contact-section .secure-text {
    color: #76839c;
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
}

/* Faq Section */
.faq-section {
    background-image: url('../img/faq-bg.png');
}

.faq-section .faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-section .faq-wrapper .accordion-item {
    border: none;
    margin-bottom: 22px;
    border-radius: 12px;
    overflow: hidden;
    background: #dcefff;
}

.faq-section .faq-wrapper .accordion-button {
    background: #dcefff;
    color: #27253D;
    font-size: 22px;
    font-weight: 600;
    padding: 24px 28px;
    box-shadow: none;
}

.faq-section .faq-wrapper .accordion-button:not(.collapsed) {
    background: #dcefff;
    color: #27253D;
    box-shadow: none;
}

.faq-section .faq-wrapper .accordion-body {
    background: #dcefff;
    padding: 0 25px 25px;
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
}

.faq-section .faq-wrapper .accordion-button::after {
    display: none;
}

.faq-section .faq-wrapper .accordion-button i {
    margin-left: auto;
    font-size: 22px;
    transition: .35s;
}

.faq-section .faq-wrapper .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-section .faq-wrapper .accordion-item:hover {
    transform: translateY(-2px);
    transition: .3s;
    box-shadow: 0 15px 35px rgba(39, 72, 148, .12);
}

/* Footer */

footer {
    position: relative;
    background: radial-gradient(ellipse 900px 500px at 12% 0%, rgb(124 92 255 / 12%), #0000003b 60%), radial-gradient(ellipse 700px 500px at 90% 10%, rgb(62 232 216 / 0%), #0000002e 55%), #2a2748;
    padding: 80px 15px 30px 15px;
}

/* faint wave signature line running across the top */
.footer .wave-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    opacity: 0.5;
    pointer-events: none;
}

.footer .bottom-row {
    text-align: center;
    color: #fff;
    border-top: 1px solid #ffffff30;
    padding-top: 35px;
}

.footer .footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.footer .top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 56px;
}

.footer .brand-block {
    max-width: 420px;
}

.footer .logo {
    margin-bottom: 25px;
}

.footer .logo .mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--pink), var(--purple) 55%, var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(124, 92, 255, 0.35);
}

.footer .logo .mark svg {
    width: 18px;
    height: 18px;
}

.footer .logo .accent {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer .tagline {
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.footer .badges {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.footer .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--hairline);
    padding: 7px 12px;
    border-radius: 100px;
}

.footer .badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    stroke: var(--cyan);
}

.footer .contact-block {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.footer .contact-col h4 {
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.footer .contact-col p,
.footer .contact-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: color .2s ease;
}

.footer .contact-col a:hover {
    color: #2cafff;
}

.stats .stat-box.stat4 {
    border-right: unset;
}
.consult-button {
    display: flex;
}

.annimate-btn {
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease,transform 0.2s ease;
    /* box-shadow: 0 4px 10px rgb(0 0 0 / .1); */
}
.annimate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgb(255 255 255 / .4),transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}
.annimate-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}
.annimate-btn:hover::before {
    left: 120%;
}
.quote-bubble {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #f39;
    color: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    max-width: 260px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgb(255 51 153 / .4);
}
@media only screen and (max-width: 1400px) {
 .hero-section .hero-subtitle {
    font-size: 30px;
}
.contact-section .contact-title {
    font-size: 46px;
}
.hero-section .hero-title {
    font-size: 60px;
}
.contact-section .contact-desc {
    font-size: 16px;
}
.contact-section .feature-list li {
    font-size: 16px;
}
.contact-section .proposal-card {
    padding: 30px;
}
.hero-section .feature-list div {
    font-size: 16px;
}
.hero-section .btn-gradient {
    padding: 15px 20px;
}
.stats .stat-box h2 {
    font-size: 40px;
}
.stats .stat-box p {
    margin: 0;
    font-size: 16px;
}
.section-heading h2 {
    font-size: 36px;
}
.section-heading p {
    font-size: 16px;
}
.why-us .feature-card h4 {
    font-size: 22px;
}
}
@media only screen and (max-width: 991px) {
    .block-pd {
    padding-top: 50px;
    padding-bottom: 50px;
}
.contact-section .contact-title {
    text-align: center;
}
.contact-section .contact-desc {
    max-width: 100%;
    text-align: center;
}
.tech-section .box-2, .tech-section .box-4, .tech-section .box-6 {
    border-right: unset;
}
.contact-section .contact-title br {
    display: none;
}
.tech-section .box-4 {
    border-bottom: 1px solid #ffffff21;
}
.tech-section .box-3 {
    border-right: 1px solid #ffffff21;
}
.contact-section {
    padding: 50px 0;
}
.contact-section .feature-list {
    margin: 0 0 0px;
}
.problem-section .problem-card {
    padding: 15px 15px;
}

.partner-box {
display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.problem-section .problem-card {
    margin-bottom: 0;
}
.why-us .feature-card.box2 {
    margin-top: 0;
}
.why-us .feature-card.box3 {
    margin-top: 0;
}
.why-us .feature-card {
    padding: 20px;
    height: 100%;
}
.how-work .timeline::before {
    content: unset;
    position: unset;
}
.how-work .step-number {
    width: 62px;
    height: 62px;
    font-size: 30px;
}
.how-work .step h4 {
    font-size: 20px;
}
.contact-section {
    padding: 50px 0;
}
.contact-section .proposal-card h3 {
    text-align: center;
}
.contact-section .proposal-card p {
    text-align: center;
}
/* 
 .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 90%;
        height: 100vh;
        background: #000;
        padding: 50px 20px 20px;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;

        display: block !important;
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 20px;
    }

    .consult-btn {
        display: inline-block;
        margin-top: 30px;
    }
    .consult-btn {
    padding: 14px 20px;
} */
}
@media only screen and (max-width: 767px) {
    .hero-section .hero-title {
    font-size: 36px;
    line-height: 1;
}
.main-content {
    text-align: center;
}
.hero-section .hero-title br {
    display: none;
}
.hero-section .consultation-btn {
    justify-content: center;
}
.consult-btn {
    padding: 14px 20px;
    font-size: 16px;
}
header .navbar-custom .container {
    flex-wrap: wrap;
    gap: 25px;
}
.tech-section .service-item {
    border-right: unset;
    border-bottom: 1px solid #ffffff21;
    padding: 20px 0px;
    text-align: center;
}
.tech-section .service-item h4 {
    font-size: 22px;
}
.how-work .section-heading h2 {
    font-size: 24px;
}
.contact-section .contact-title {
    line-height: 1.3;
    font-size: 36px;
}
.contact-section .proposal-card {
    padding: 30px 20px;
}
.contact-section .btn-gradient {
    padding: 15px 10px;
    font-size: 15px;
}
.testimonials-section .testimonial-card p {
    line-height: 1.5;
}
.testimonials-section .testimonial-card {
    padding: 20px;
}
.faq-section .faq-wrapper .accordion-button {
    font-size: 20px;
    line-height: 1.5;
    padding: 20px 20px;
}
.problem-section .problem-card {
    flex-direction: column;
    text-align: center;
}
.problem-section .icon-box {
    width: 55px;
    height: 55px;
    font-size: 22px;
    margin: 0 auto;
}
.section-heading h2 {
    font-size: 24px;
}
.hero-section .hero-subtitle {
    font-size: 20px;
}
.stats .stat-box.stat2 {
    border-right: unset;
}
.problem-section .problem-card h4 {
    font-size: 20px;
}
.footer .brand-block {
    max-width: 100%;
}
.footer .brand-block {
    max-width: 100%;
    text-align: center;
}
.footer .contact-col {
    text-align: center;
}
.footer .top-row {
    justify-content: center;
}
}
@media only screen and (max-width: 600px) {
    .hero-section .feature-list {
    grid-template-columns: repeat(1, 1fr);
}
.contact-section .contact-title {
    font-size: 28px;
}
.stats .stat-box {
    border: 1px solid #ffffff78 !important;
    padding: 10px;
    border-radius: 10px;
}
.partner-box {
    grid-template-columns: repeat(1, 1fr);
}
.quote-bubble {
    padding: 15px 15px;
    font-size: 14px;
    bottom: 15px;
}

}
@media only screen and (max-width: 430px) {
header .navbar-custom .container {
    justify-content: center;
}
}