/* Loader Style Starts ---------------------------------------*/
/* HTML: <div class="loader"></div> */
.loader {
    display: none;
    align-self: flex-start;
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side,var(--primary-color) 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}
@keyframes l7 {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}
/* Loader Style Starts */

/* QR Style Section Starts -------------------------------------------- */
section.qr_section {
    position: fixed;
    z-index: 998;
    right: 16px;
    bottom: 16px;
    width: 200px;
    height: 200px;
    padding: 12px;
    background-color: white;
    border-radius: 8px;
    border: 0.5px solid var(--primary-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.qr_section .logo_container {
    position: absolute;
    top: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0.5px solid var(--primary-color);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
    background-color: white;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.qr_section .logo_container img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

section.qr_section .cancel_btn {
    position: absolute;
    right: 0px;
    top: -25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 0.5px solid var(--primary-color);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
    background-color: white;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

section.qr_section .cancel_btn img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

section.qr_section h4 {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    font-family: var(--font-family-sbold);
    font-size: 16px;
    line-height: 12px;
    color: black;
}

section.qr_section p {
    width: 100%;
    text-align: center;
    font-family: var(--font-family-light);
    font-size: 12px;
    color: var(--text-color);
}

section.qr_section .qr {
    margin-top: 10px;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.qr_section .qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* QR Style Section Starts -------------------------------------------- */

/* Marquee Style Section Starts -------------------------------------------- */
marquee {
    background-color: var(--secondary-color);
    width: 100%;
    padding: 5px 0px;
    color: white;
    font-family: var(--font-family-sbold);
    font-size: 14px;
    margin-bottom: 0px;

    position: fixed;
    z-index: 999;
}

/* Marquee Style Section Ends -------------------------------------------- */

/* Hero Section Style Starts -------------------------------------------- */
section.hero_section {
    width: 100%;
    height: calc(100vh - 61px);
    padding-inline: var(--paddingHorizontal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;

    position: relative;
}

section.hero_section .hero_left {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

section.hero_section .hero_left h1 {
    width: 100%;
    text-wrap: wrap;
    font-family: var(--font-family-bold);
    font-size: 47px;
    line-height: 60px;
    color: var(--text-color);
}

section.hero_section .hero_left h1 span {
    font-size: 60px;
    color: var(--secondary-color-light);
}

section.hero_section .hero_left p {
    width: 100%;
    text-wrap: wrap;
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-color);
}

section.hero_section .hero_left a {
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 20px;
    letter-spacing: .04em;
    width: 200px;
    height: 48px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background-color .3s ease-in-out;
    cursor: pointer;
}

section.hero_section .hero_left a:hover {
    background-color: var(--secondary-color);
}

section.hero_section .hero_right {
    width: 48%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -10px 0px 25px rgba(0, 0, 0, 0.200);
    overflow-x: hidden;
}

section.hero_section .hero_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.hero_section .hero_right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section Style Ends -------------------------------------------- */

/* About Us Section Style Starts ---------------------------------------- */
section.about_us {
    width: 100%;
    padding-inline: var(--paddingHorizontal);
    margin-block: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
}

section.about_us .about_left {
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about_us .about_left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

section.about_us .about_right {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    overflow-x: hidden;
}

section.about_us .about_right h2 {
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
}

section.about_us .about_right h1 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--text-color);
    text-wrap: wrap;
}

section.about_us .about_right p {
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 16px;
    color: var(--text-color);
    text-wrap: wrap;
}

section.about_us .about_right a {
    text-decoration: none;
    padding: 10px 32px;
    padding-left: 30px;
    background-color: var(--secondary-color);
    border: 0.5px solid var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, border-radius 0.3s;
    border-radius: 5px;
}

section.about_us .about_right a:hover {
    border-radius: 25px;
    background-color: white;
    color: var(--secondary-color);
}

/* About Us Section Style Starts ---------------------------------------- */

/* Our Products Section Style Starts --------------------------------------*/
section.our_products {
    width: 100%;
    padding-inline: var(--paddingHorizontal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

section.our_products .heading_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.our_products .heading_container h2 {
    width: 100%;
    text-wrap: wrap;
    text-align: center;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    color: var(--secondary-color);
}

section.our_products .heading_container p {
    width: 100%;
    text-wrap: wrap;
    text-align: center;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--text-color);
}

section.our_products .products_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

section.our_products .products_container .product_card {
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 80%, rgba(1, 38, 83, 0.4) 100%);

    flex: 1 0 calc((100% - 20px) / 3);
    padding: 10px;
    border-top: 10px solid var(--secondary-color);
    height: 300px;
    /* background-color: var(--primary-color); */
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

section.our_products .products_container .product_card .image_container {
    height: 100%;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.our_products .products_container .product_card .image_container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: scale 0.3s ease;
}

section.our_products .products_container .product_card:hover>.image_container img {
    scale: 1.1;
}

section.our_products .products_container .product_card .content {
    flex: 1 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

section.our_products .products_container .product_card .content h3 {
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: var(--subheading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
    text-overflow: ellipsis;
}

section.our_products .products_container .product_card .content p {
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 15px;
    color: var(--text-color);
    text-wrap: wrap;
    display: flex;
    align-items: center;
}

section.our_products .products_container .product_card .content a {
    text-decoration: none;
    padding: 7px 24px;
    background-color: var(--secondary-color);
    border: 0.5px solid var(--secondary-color);
    color: #fff;
    font-size: 14px;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, border-radius 0.3s;
    border-radius: 5px;
}

section.our_products .products_container .product_card .content a:hover {
    border-radius: 25px;
    background-color: white;
    color: var(--secondary-color);
}

/* Our Products Section Style Ends --------------------------------------*/

/* Our Features Section Style Starts ----------------------------------------*/
section.our_features {
    width: 100%;
    padding-inline: var(--paddingHorizontal);
    padding-block: 50px;
    margin-block: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    background-color: rgba(0, 0, 0, 0.050);
}

section.our_features .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

section.our_features .heading h2 {
    width: 100%;
    text-align: center;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    line-height: calc(var(--heading-font-size) / 1.1);
    color: var(--secondary-color);
    text-wrap: wrap;
}

section.our_features .heading h1 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--text-color);
    text-wrap: wrap;
    text-align: center;
}

section.our_features .card_container {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

section.our_features .card_container .info_card {
    flex: 1 0 calc((100% - 15px) / 4);
    height: 275px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12), inset 0px 4px 2px 	hsla(32, 100%, 50%, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

section.our_features .card_container .info_card h3 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
    text-align: center;
}

section.our_features .card_container .info_card p {
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 14px;
    color: var(--text-color);
    text-wrap: wrap;
    text-align: center;
}

section.our_features .card_container .info_card img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

/* Our Features Section Style Ends ----------------------------------------*/

/* Why Choose Us Section  Style Starts ----------------------------------- */
section.chooseus_section {
    margin: 100px 0px;
    width: 100%;
    height: 45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

section.chooseus_section .chooseus_left {
    flex: 1 0;
    height: 100%;
    padding-left: var(--paddingHorizontal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

section.chooseus_section .chooseus_left .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

section.chooseus_section .chooseus_left .heading h2 {
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
}

section.chooseus_section .chooseus_left .heading h1 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--text-color);
    text-wrap: wrap;
}

section.chooseus_section .chooseus_left .heading h1 span {
    color: var(--primary-color);
    font-size: 25px;
}

section.chooseus_section .chooseus_left .card_container {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

section.chooseus_section .chooseus_left .card_container .info_card {
    flex: 1 0 calc((100% - 15px) / 2);
    height: 230px;
    /* default: 3 per row with gap */
    background-color: rgba(158, 179, 255, 0.150);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

section.chooseus_section .chooseus_left .card_container .info_card h3 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
}

section.chooseus_section .chooseus_left .card_container .info_card p {
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 16px;
    color: var(--text-color);
    text-wrap: wrap;
}

section.chooseus_section .chooseus_left .card_container .info_card img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

section.chooseus_section .chooseus_right {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: -10px 0px 25px rgba(0, 0, 0, 0.200); */
}

section.chooseus_section .chooseus_right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Us Section  Style Ends ----------------------------------- */

/* Testimonials Section Style Starts -------------------------------------- */
.testimonial-section {
    width: 100%;
    padding-inline: var(--paddingHorizontal);
    padding-block: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    background-color: rgba(0, 0, 0, 0.050);
}

.testimonial-section .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.testimonial-section .heading h2 {
    width: 100%;
    text-align: center;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
}

.testimonial-section .heading p {
    width: 100%;
    text-align: center;
    font-family: var(--font-family-light);
    font-size: 16px;
    color: var(--text-color);
    text-wrap: wrap;
}

.testimonial_outer {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    padding-block: 40px;
}

.testimonial-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.6s ease-in-out;
    cursor: grab;
}

.testimonial {
    flex: 0 0 calc((100% / 3) - 20px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin: 0 10px;
    text-align: center;
    min-height: 250px;
    scale: 0.95;
    opacity: 0.6;
    transition: scale 0.4s ease, transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
    user-select: none;
}

.testimonial.active {
    transform: scale(1.05);
    opacity: 1;
    z-index: 2;
    border: 0.5px solid var(--primary-color);
}

.testimonial p {
    margin-bottom: 20px;
    font-family: var(--font-family-light);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--secondary-color);
}

.dots {
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 2px;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.dot.active {
    border-radius: 15px;
    background: var(--primary-color);
    width: 25px;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial {
        flex: 0 0 calc(50% - 20px);
    }

    .testimonial-section {
        padding-inline: 60px;
    }
}

@media (max-width: 600px) {
    .testimonial {
        flex: 0 0 100%;
    }

    .testimonial-section {
        padding-inline: 30px;
    }

    .testimonial {
        padding: 20px;
        transform: scale(0.85);
    }

    .testimonial.active {
        transform: scale(0.95);
    }

}

/* Testimonials Section Style End -------------------------------------- */

/* FAQ Section Style Starts ----------------------------------------------*/
section.faq_section {
    width: 100%;
    margin-block: 75px;
    padding-inline: var(--paddingHorizontal);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.faq_section .faq_right {
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.faq_section .faq_right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

section.faq_section .faq_left {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

section.faq_section .faq_left h2 {
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: var(--heading-font-size);
    color: var(--secondary-color);
    text-wrap: wrap;
}

section.faq_section .faq_left h1 {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--text-color);
    text-wrap: wrap;
}

section.faq_section .faq_left p {
    width: 100%;
    font-family: var(--font-family-light);
    font-size: 16px;
    color: var(--text-color);
    text-wrap: wrap;
}

/* ---------- Accordion Styles ---------- */
.accordion {
    border-top: 1px solid var(--secondary-color);
    margin-top: 25px;
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid var(--secondary-color);
}

.accordion input {
    display: none;
}

.accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    font-family: var(--font-family-sbold);
    font-size: 1.05rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: background 0.3s ease;
}

.accordion-label:hover {
    background-color: #ff9c1a33;
}

.accordion-label::after {
    content: "+";
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.accordion input:checked+.accordion-label::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 18px;
    transition: all 0.3s ease;
}

.accordion input:checked~.accordion-content {
    max-height: 200px;
    padding: 15px 18px 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .faq-container {
        padding: 20px;
    }

    .accordion-label {
        font-size: 1rem;
        padding: 15px;
    }
}

/* FAQ Section Style End ------------------------------------------------*/

/* Contact Us Section Style Starts ---------------------------------------- */
section.contact_section {
    width: 100%;
    height:600px;
    padding-inline: calc(var(--paddingHorizontal) + 85px);
    padding-block: 30px;
    margin-block: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
}

section.contact_section .background {
    width: 65%;
    height: 100%;
    position: absolute;
    z-index: -1;
    right: calc(var(--paddingHorizontal) + 85px);
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.150);
}

section.contact_section .contactus_left {
    width: 40%;
    height: 100%;
    padding: 25px 40px;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.250);
}

section.contact_section .contactus_left h2 {
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: calc(var(--heading-font-size) - 10px);
    color: white;
    text-wrap: wrap;
}

section.contact_section .contactus_left .contact_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

section.contact_section .contactus_left .contact_info .info {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

section.contact_section .contactus_left .contact_info .info img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

section.contact_section .contactus_left .contact_info .info p {
    flex: 1 0;
    color: white;
    font-family: var(--font-family-sbold);
    font-size: 16px;
    text-wrap: wrap;
    text-transform: uppercase;
}

section.contact_section .contactus_left .social_links {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

section.contact_section .contactus_left .social_links .link {
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

section.contact_section .contactus_left .social_links .link img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

section.contact_section .contactus_left .social_links .link.facebook:hover {
    background-color: #1877F2;
}

section.contact_section .contactus_left .social_links .link.whatsapp:hover {
    background-color: #25D366;
}

section.contact_section .contactus_left .social_links .link.linkedin:hover {
    background-color: #0077B5;
}

section.contact_section .contactus_right {
    width: 60%;
    height: 100%;
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

section.contact_section .contactus_right .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.contact_section .contactus_right .heading h2 {
    width: 100%;
    font-family: var(--font-family-bold);
    font-size: calc(var(--heading-font-size) - 10px);
    color: var(--primary-color);
    text-wrap: wrap;
}

section.contact_section .contactus_right .heading p {
    width: 100%;
    font-family: var(--font-family-sbold);
    font-size: var(--subheading-font-size);
    color: var(--text-color);
    text-wrap: wrap;
}

section.contact_section .contactus_right .contact_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    overflow: hidden;
        padding: 15px;
}

section.contact_section .contactus_right .contact_form .row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

section.contact_section .contactus_right .contact_form .row input {
    flex: 1 0 calc((100% / 2) - 10px);

}

section.contact_section .contactus_right .contact_form input,
section.contact_section .contactus_right .contact_form textarea {
    width: 100%;
    outline: none;
    font-family: var(--font-family-light);
    font-size: 16px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #7c99c938;
    background-color: #7c99c938;
    border-radius: 3px;
    padding: 10px 18px;
    resize: none;
}

section.contact_section .contactus_right .contact_form button {
    padding: 10px 40px;
    border-radius: 25px;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-family-sbold);
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.30);
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    align-self: flex-start;
}

section.contact_section .contactus_right .contact_form button:hover {
    background-color: var(--secondary-color);
}

/* Contact Us Section Style End ---------------------------------------- */