@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700,800&display=swap);
@import url(../fonts/bignoodletitling_font.css);

* {
    margin: 0;
    padding: 0
}

:root {
    --clr-white: hsl(0, 0%, 100%);
    --clr-Off-white: hsl(0, 0%, 96%);
    --clr-grey: hsl(0, 0%, 55%);
    --clr-black: rgba(81, 82, 83, 1);
    --clr-black-blue: hsl(234.7, 45.9%, 14.5%);
    --clr-blue: rgb(7 155 203);
    --clr-blue-bright: rgb(8 189 232);
    --clr-blue-dark: rgb(9 130 182);
    --clr-orange: hsl(25, 100%, 60%);
    --clr-red: #f54748;
    --clr-green: #8dc96b;
    --shadow-light: 0 0 20px hsla(0, 0%, 0%, 0.05);
    --shadow-small: 0 0 20px hsla(0, 0%, 0%, 0.09);
    --shadow-regular: 7px 7px 20px hsla(0, 0%, 0%, 0.07);
    --gradient-transparent: linear-gradient(to bottom right, transparent, var(--clr-white));
    --gradient-blur: linear-gradient(to bottom right, hsla(0, 0%, 100%, 0.7), var(--clr-white));
    --font-primary: "Open Sans", sans-serif;
    --font-secondary: "BigNoodleTitling";
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-extra-bold: 900;
    --fs-xs: clamp(15rem, 1.04vw, 16rem);
    --fs-small: clamp(16.5rem, 1.17vw, 18rem);
    --fs-regular: clamp(17.75rem, 1.3vw, 20rem);
    --fs-medium: clamp(21rem, 1.62vw, 25rem);
    --fs-large: clamp(38rem, 2.92vw, 45rem);
    --fs-xl: clamp(62rem, 5.53vw, 82rem);
    --fs-bg: clamp(180rem, 13.99vw, 215rem);
    --lh-xs: clamp(22rem, 1.69vw, 26rem);
    --lh-small: clamp(24rem, 1.82vw, 28rem);
    --lh-regular: clamp(27rem, 2.08vw, 32rem);
    --lh-medium: clamp(32rem, 2.27vw, 35rem);
    --lh-large: clamp(48rem, 3.58vw, 55rem);
    --lh-xl: clamp(72rem, 5.85vw, 87rem);
    --lh-bg: clamp(190rem, 14.64vw, 225rem);
    --pad-page: 8%;
    --scrollbar-dimention: 15px
}

body {
    font-family: var(--font-primary) !important;
    font-size: 14px;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    color: var(--clr-black);
    font-size: 14px
}

a {
    text-decoration: none !important
}

a:hover {
    color: inherit
}

a:focus {
    outline: none
}

::selection {
    color: var(--clr-white);
    background-color: var(--clr-blue)
}

.Section-Details {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--clr-grey);
    text-align: center;
    margin: 10px auto;
    margin-bottom: 45px;
}

@media(max-width:768px) {
    .Section-Details {
        margin-bottom: 35px;
    }
}

.container {
    padding: 0px 15px !important;
}


.custom_pading {
    padding: 80px 0px;

}

@media(max-width:991px) {
    .custom_pading {
        padding: 60px 0px;

    }
}

@media(max-width:768px) {
    .custom_pading {
        padding: 40px 0px;

    }
}

@media (max-width: 850px) {
    .Side-Nav {
        background-color: hsla(0, 0%, 0%, 0.6);
    }
}

/* HERO SECTION  start */
.hero-section {
    padding-top: 90px;
    padding-bottom: 40;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #E6F0FA, #FFFFFF);
}


 .breadcrumb_box {
     margin-bottom: 20px;
 }

 .breadcrumb_box ul {
     display: flex;
     flex-wrap: wrap;
 }

 .breadcrumb_box ul li {
     padding-right: 5px;
 }

 .breadcrumb_box ul li a {
     color: var(--clr-black);
 }

 .breadcrumb_box ul li i {
     font-size: 16px;
     padding-left: 5px;
     color: var(--clr-black);
 }

.hero-section .bg-decoration {
    position: absolute;
    inset: 0;
}

.hero-section .bg-decoration::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 100%);
}


.hero-section .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.hero-section .text-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-section .description {
    font-size: 20px;
    color: var(--clr-grey);
    padding-top: 20px;
}

.hero-section .button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-section .primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-section .primary-button {
    background-color: var(--clr-blue);
    color: var(--clr-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
}

.hero-section .primary-button:hover {
    background-color: var(--clr-blue-bright);
}

.hero-section .primary-button::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.hero-section .primary-button:hover::after {
    transform: translateX(4px);
}

.hero-section .secondary-button {
    background-color: var(--clr-white);
    color: var(--clr-blue);
    border: 1px solid #BFDBFE;
}

.hero-section .secondary-button:hover {
    background-color: #EFF6FF;
}

.hero-section .secondary-button::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.hero-section .secondary-button:hover::after {
    transform: translateX(4px);
}

.hero-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid #E5E7EB;
}

.hero-section .stat-item {
    text-align: center;
}

.hero-section .stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--clr-black);
}

.hero-section .stat-label {
    font-size: 14px;
    color: var(--clr-grey);
}



.hero-section .hero-image {
    width: 100%;
    border-radius: 6px;
}

.hero-section .modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .modal-content {
    background-color: var(--clr-white);
    border-radius: 12px;
    width: 100%;
    max-width: 448px;
    padding: 24px;
    position: relative;
}

.hero-section .close-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    transition: color 0.2s ease;
}

.hero-section .close-button:hover {
    color: var(--clr-grey);
}

.hero-section .close-button::before {
    content: '×';
    font-size: 24px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 24px;
}

@media(max-width:768px) {
    .hero-section .grid-container {
        gap: 40px;
    }

    .hero-section .text-content .sectionTitle {
        font-size: 40px;
    }

    .hero-section .stat-number {
        font-size: 35px;
    }
}

@media (min-width: 640px) {
    .hero-section {
        padding-top: 160px;
        padding-bottom: 80px;
    }

    .hero-section .button-group {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {

    .hero-section .grid-container {
        grid-template-columns: 1fr 1fr;
    }

}

@media (min-width: 768px) {
    .hero-section .modal-content {
        padding: 32px;
    }
}

/* CHALLENGE SECTION */
.challenges-section {
    background-color: #f9fafb;
}


#challenges .header {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

#challenges .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    #challenges .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #challenges .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

}

#challenges .card {
    padding: 16px;
    background: linear-gradient(to right, #eff6ff, #eef2ff);
    border-radius: 12px;
    display: block !important;
}


#challenges .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 64px;
    border-radius: 12px;
    background-color: #dbeafe;
    margin-bottom: 24px;
}

#challenges .icon {
    width: 32px;
    height: 32px;
    color: var(--clr-blue);
}

#challenges .card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 12px;
}

#challenges .card p {
    color: var(--clr-black);
    line-height: 26px;
    font-size: 16px;
}

/* SERVICE SECTION */
.services-section {
    background-color: var(--clr-white);
}


#services .header {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}



#services .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 64px;
}


@media (min-width: 768px) {
    #services .services-grid {
        grid-template-columns: repeat(2, 1fr);

    }
}

@media (min-width: 1024px) {
    #services .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

#services .service-card {
    position: relative;
    padding: 24px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
}

#services .service-card:hover {
    border-color: #0b83d1;
    transition: all .3s ease-in;
}

#services .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background-color: #dbeafe;
    border-radius: 16px;
    margin-bottom: 24px;
}

#services .icon {
    width: 48px;
    height: 48px;
    color: var(--clr-blue);
}

#services .service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 8px;
}

#services .service-card p {
    color: var(--clr-grey);
    margin-bottom: 16px;
    font-size: 16px;
    margin-bottom: 0;
}

#services .features-list {
    list-style: none;
}

#services .features-list li {
    display: flex;
    align-items: center;
    color: #374151;
    margin-bottom: 12px;
}

#services .features-list li .arrow {
    width: 16px;
    height: 16px;
    color: var(--clr-blue);
    margin-right: 8px;
    flex-shrink: 0;
}

#services .cta-wrapper {
    margin-top: 64px;
    text-align: center;
}

#services .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-white);
    background-color: var(--clr-blue);
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 200ms ease;
}

#services .cta-button:hover {
    background-color: var(--clr-blue-bright);
}

#services .cta-button .arrow {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}



/* casestudy slider section start */
.casstudy_slider {
    display: block;
    background-color: #f9fafb;

}

.casstudy_slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: auto;
}

.casstudy_slider-slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.casstudy_slider-slide {
    min-width: 100%;
    padding: 30px 0px 60px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.casstudy_slider-slide-content {
    flex: 1;
    padding-right: 24px;
}

.casstudy_slider-logo {
    width: 200px;
    margin-bottom: 24px;
}

.casstudy_slider-title {
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--clr-black);
    line-height: 1.2;

}

.casstudy_slider-description {
    font-size: 20px;
    color: var(--clr-black);
    margin-bottom: 24px;
    line-height: 1.6;
}

.casstudy_slider-buttons {
    display: flex;
    gap: 16px;
}

.casstudy_slider-explore-btn,
.casstudy_slider-start-btn {
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    padding: 10px 30px;
}


.casstudy_slider-explore-btn {
    color: var(--clr-white);
    background-color: var(--clr-blue);
}

.casstudy_slider-explore-btn:hover {
    background-color: var(--clr-blue-bright);
    color: var(--clr-white);

}

.casstudy_slider-start-btn {
    background-color: var(--clr-blue);
    color: var(--clr-white);
}

.casstudy_slider-start-btn:hover {
    background-color: var(--clr-blue);
}

.casstudy_slider-slide-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.casstudy_slider-slide-image-border {
    width: 456px;
    height: 456px;
    border: 1px solid var(--clr-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.casstudy_slider-circle {
    width: 350px;
    height: 350px;
    background-color: var(--clr-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.casstudy_slider-laptop {
    width: 450px;
    position: relative;
    z-index: 2;
}

.casstudy_slider-nav-arrows {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 16px;
}

.casstudy_slider-nav-arrow-btn {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.casstudy_slider-nav-arrow-btn:hover {
    color: var(--clr-blue);
}

.casstudy_slider-nav-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.casstudy_slider-dot-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.casstudy_slider-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.casstudy_slider-dot.active {
    background-color: var(--clr-blue)
}

.casstudy_slider-dot-label:hover .casstudy_slider-dot {
    background-color: var(--clr-blue)
}

@media (max-width: 992px) {
    .casstudy_slider-slide {
        flex-direction: column-reverse;
        padding: 30px 0px 30px 0px;
    }

    .casstudy_slider-slide-content {
        padding-right: 0;
        margin-bottom: 24px;
    }

    .casstudy_slider-logo {
        width: 160px;
        margin: 0 auto 16px;
    }

    .casstudy_slider-title {
        font-size: 24px;
    }

    .casstudy_slider-description {
        font-size: 18px;
    }

    .casstudy_slider-explore-btn,
    .casstudy_slider-start-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .casstudy_slider-slide-image {
        width: 100%;
        padding-bottom: 20px;
    }

    .casstudy_slider-slide-image-border {
        width: 288px;
        height: 288px;
        display: none;

    }

    .casstudy_slider-circle {
        width: 192px;
        height: 192px;
        display: none;

    }

    .casstudy_slider-laptop {
        width: 288px;
    }

    .casstudy_slider-nav-arrows {
        bottom: -15px;
        gap: 8px;
    }

    .casstudy_slider-nav-dots {
        display: none;
    }

}

@media(max-width:768px) {
    .casstudy_slider-description {
        font-size: 16px;
    }
}

/* tesimonials section */

.testimonial-slider {
    margin-top: 40px;
    border-radius: 16px;
    padding: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../image/testimonials_banner.png);
}

.testimonial-slider .testimonial-card {
    display: flex !important;
    gap: 100px;
    height: auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

}

.testimonial-slider .testimonial-card .content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-slider .testimonial-card .testimonial-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 20px;
    line-height: 1.4;
}

.testimonial-slider .testimonial-card .quote-text {
    color: var(--clr-black);
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    padding-left: 30px;
    border-left: 3px solid var(--clr-blue-dark);
}

.testimonial-slider .testimonial-card .image-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
}

.testimonial-slider .testimonial-card .image-wrapper {
    width: 300px;
    height: 300px;
}

.testimonial-slider .testimonial-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-slider .testimonial-card .name-card {
    background-color: var(--clr-blue-dark);
    padding: 12px 20px;
    text-align: center;
    width: 300px;
}

.testimonial-slider .testimonial-card .name-text {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--clr-white);
}

.testimonial-slider .testimonial-card .role-text {
    font-size: 14px;
    color: var(--clr-white);
}

.testimonials .slick-slider {
    position: relative;
}

.testimonials .slick-arrow {
    position: absolute;
    bottom: 40px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--clr-blue-dark);
    font-size: 35px;
    border: 1px solid var(--clr-blue-dark);
}

.testimonials .slick-arrow:hover {
    background-color: var(--clr-blue-dark);
    color: var(--clr-white);
}

.testimonials .slick-prev {
    left: calc(50% - 50px);
}

.testimonials .slick-next {
    left: calc(50% - -20px);
}

.testimonials .slick-prev::before,
.testimonials .slick-next::before {
    display: none;
}

.testimonials .slick-next:focus,
.testimonials .slick-prev:focus {
    color: var(--clr-white) !important;
    background-color: var(--clr-blue-dark) !;
}

.testimonials .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonials .slick-slide {
    height: auto;
}

.testimonials .slick-slide>div {
    height: 100%;
}


@media(max-width:991px) {
    .testimonial-slider {
        padding: 40px 40px 60px 40px;
    }

    .testimonial-slider .testimonial-card {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .testimonials .slick-arrow {
        height: 40px;
        width: 40px;
        font-size: 25px;
        bottom: 10px;
    }

}

@media(max-width:768px) {
    .testimonial-slider {
        padding: 20px 20px 60px 20px;
    }

    .testimonial-slider .testimonial-card .testimonial-title {
        font-size: 20px;
    }

    .testimonial-slider .testimonial-card .image-wrapper {
        height: 250px;
    }


}

/* WHY US SECTION */
.why-choose-section {
    background-color: #f9fafb;
}

#why-us .content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;

}

@media (min-width: 1024px) {
    #why-us .content-wrapper {
        grid-template-columns: 5fr 7fr;
    }
}


#why-us .left-column .Section-Title,
#why-us .left-column .Section-Details {
    text-align: left !important;
}

@media (min-width: 1024px) {
    #why-us .left-column {
        margin-bottom: 0;

    }
}

#why-us .section-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #1f2937;
    margin-bottom: 24px;
}


#why-us .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media(min-width:575px) {
    #why-us .benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

#why-us .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

#why-us .check-icon svg {
    width: 20px;
    height: 20px;
    color: var(--clr-blue);
    flex-shrink: 0;
}

#why-us .benefit-item span {
    color: var(--clr-grey);
    font-size: 16px;
}

#why-us .cta-wrapper {
    margin-top: 40px;
}

#why-us .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-white);
    background-color: var(--clr-blue);
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

#why-us .cta-button:hover {
    background-color: var(--clr-blue-bright);
}

#why-us .reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;

}

@media (min-width: 640px) {
    #why-us .reasons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

#why-us .reason-card {
    position: relative;
}

#why-us .gradient-overlay {
    position: absolute;
    top: -16px;
    bottom: -16px;
    left: -16px;
    right: -16px;
    border-radius: 12px;
    background: linear-gradient(to right, #eff6ff, #eef2ff);
    opacity: 0;
    transition: opacity 0.3s ease;

}

#why-us .reason-card:hover .gradient-overlay {
    opacity: 1;
}

#why-us .reason-content {
    position: relative;
}

#why-us .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: #dbeafe;
    margin-bottom: 16px;
}

#why-us .icon svg {
    width: 32px;
    height: 32px;
    color: var(--clr-blue);
}

#why-us .reason-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 8px;
}

#why-us .reason-description {
    color: var(--clr-grey);
    font-size: 16px;
}

/* FAQ Section */

.faq-section .max-w-3xl {
    max-width: 768px;

    margin: 0 auto;
}

.faq-section .accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;

}

.faq-section .accordion-item {
    background-color: #ffffff;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 24px;

}

.faq-section .accordion-trigger {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-black);
    text-align: left;
}

.faq-section .accordion-trigger:hover {
    color: var(--clr-blue);
}

.faq-section .accordion-trigger::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.5s ease;
}

.faq-section .accordion-trigger.active::after {
    transform: rotate(45deg);
    transition: all 0.5s ease-in;
}

.faq-section .accordion-content {
    display: none;
    color: var(--clr-grey);
    line-height: 1.625;
    padding-top: 16px;
    font-size: 16px;
}

.faq-section .accordion-content.active {
    display: block;
    transition: all .5s ease-in;
}





/* CONTACT US SECTION */


.contact-section {
    background-color: #f9fafb;
}

.contact_flex {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    color: var(--clr-white);
    background-color: var(--clr-blue);
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form {
    position: relative;
}

.contact-info h2,
.contact-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;

}

.contact-info h2 {
    color: var(--clr-white);
}

.contact-form h2 {

    color: var(--clr-black);
}

.contact-info p {
    color: var(--clr-white);
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info .info-item a {
    font-size: 16px;
    color: var(--clr-white) !important;
}

.contact-info .info-item svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: var(--clr-white);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form form .flex_box {
    display: flex;
    gap: 10px;
}

.contact-form form .flex_box>div {
    width: 100%;
    position: relative;
}

.contact-form label {
    color: var(--clr-black);
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid var(--clr-blue);
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    margin: 0px auto 20px;
    max-width: fit-content;
    background-color: var(--clr-blue);
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: var(--clr-blue-bright);
}

@media (max-width: 768px) {
    .contact_flex {
        flex-direction: column;
    }
}

.contact-form .errormssgg {
    color: red;
    font-size: 12px;
    position: absolute;
    bottom: -20px;
}

.contact-form #messagesuccessmessgae {
    color: green;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
}