@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    text-decoration: none !important;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

:root {
    --main-color: #ff0204;
    --sub-color: black;
    --bg1: #f2f2f2;
    --bg2: #fbfbfb;

}

body {
    background-color: var(--bg1);
}

.headingblock {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    text-align: center;
}

h5.heading {
    /* font-size: 3rem; */
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--main-color);
    text-transform: uppercase;
}

h5.heading span {
    color: var(--sub-color);
}

h3 {
    font-size: 2.5rem !important;
}

p {
       font-size: clamp(1.2rem, 5vw, 1.5rem);
}


header {
    position: sticky;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 0;
    top: 0;
    z-index: 999;
    height: 75px;
    background: #f4f5f7;
    box-shadow: 0 0 10px 0 #6a6a6a;
    display: flex;
    align-items: center;
}

.logo,
.callphone {
    width: auto;
    height: auto;
}

.logo img {
    width: 150px;
}

.callphone a {
    font-size: 2rem;
    color: var(--sub-color);
    font-weight: bold;
}

.callphone a i {
    font-size: 2.5rem;
    color: var(--main-color);
}

.section {
    padding: 3rem 0;
}

.section:nth-child(even) {
    background-color: var(--bg2);
}

.banner-img {
    overflow: hidden;
    padding: 10px 0px;
    width: 100%;
}

.banner-img img {
    width: 100%;
    border-radius: 10px;
}

.formsection {
    background: #d9251f;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.formsection h5.heading {
    font-size: 2rem;
    text-transform: capitalize;
}

.formflex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.form-group {
    flex: 1 0 48%;
}

.form-group input,
.form-group select,
.btn-cstm button {
    width: 100%;
    height: 40px;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.error {
    font-size: 1.2rem;
    display: block;
    margin-top: 6px;
}

.btn-cstm {
    width: 100%;
}


.btn-cstm button {
    background-color: var(--sub-color);
    border: none;
    color: white;
}

.result-box {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid black;
}

.result-box,
.result-box img {
    width: 100%;
    height: 100%;
}

.align-self-stretch {
    align-self: stretch !important;
}

.service-box {
    border: 2px solid red;
    padding: 10px;
    background-color: #fff;
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

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

.service-box h3 {
    font-size: 1.5rem !important;
    color: var(--main-color);
}

.service-box img {
    width: 50px;
}


.bgstyle,
.formbg {
    position: relative;
    padding: 50px 0;
}

.bgstyle::after,
.bgstyle::before {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    content: ' ';
    width: 50px;
    height: 50px;
    background: url(../images/arrow.png) no-repeat;
    background-size: 50px;
    background-position: center;
    z-index: 111;
}

.bgstyle::before {
    background: url(../images/dots2.png) no-repeat;
    left: 50px;
    bottom: 10px;
    transform: translateX(auto);
}


.formbg {
    background: url(../images/form-bg.jpg) no-repeat center/cover fixed;
}

.formbg::after {
    background: url(../images/red-dots.png) no-repeat center/cover;
    right: 50px;
    bottom: 10px;
    position: absolute;
    content: ' ';
    width: 50px;
    height: 50px;
    z-index: 111;
}

.cta {
    margin: auto;
    text-align: center;
    padding: 1rem 1.5rem;
}

.cta a {
    background-color: var(--main-color);
    color: white;
    font-size: 1.6rem;
    display: inline-block;
    padding: 1rem 1.5rem;
    transition: all 0.5s ease;
}

.cta a:hover {
    background-color: darkred;
    text-decoration: none;
}

table {
    font-size: 1.4rem !important;
}

td,
th {
    padding: 10px !important;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
    border-color: transparent;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s ease;
    font-size: 1.8rem;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--main-color) !important;
}

.accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #000;
}

.accordion-body {
 font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: #444;
    font-weight: 500;
}



.copy-right {
    width: 100%;
    height: auto;
    font-size: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    margin-bottom: 48px;
    font-weight: 600;
}

.copy-right div img {
    width: 100px;
}


.copyright-text {
    width: 70%;
    text-align: right;
}


.footer{
        background: linear-gradient(to right, #000 0, #3a3a3a 100%);
        width:100%;
        height: auto;
}


.footer h5{
    color: white !important;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer p{
    margin-bottom: 15px;
}

.footer p a{
    color: white;
}

.footer p a i{
    padding-right: 10px;
}


.footer-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    right: 0;
    background: #fff9f9;
    z-index: 998;
    width: 100%;
    height: 48px;
    z-index: 99999999999999999;
}

.footer-mobile a {
    color: #000;
    text-decoration: none;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 60;
    font-size: 14px;
    text-transform: uppercase;
    margin: 1px 0 0 0;
    text-align: center;
    font-weight: 500;
    border-right: 1px solid #d3d3d3;
    ;
}


.footer-mobile a i {
    font-size: 18px;
    color: #383838;
}


.footer-mobile a:last-child {
    border: none;
}



.thankyouHeading {
    width: 100%;
    height: 300px;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.thankyouHeading h1 {
    font-size: clamp(3rem, 5vw, 8rem);
    position: relative;
    text-align: center;
    margin-top: -80px;
}

.sub-thankyouHeading {
    width: 90%;
    max-width: 560px;
    margin: auto;
    padding:50px 20px;
    background:var(--bg1);
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0rem rgb(223, 223, 223);
    margin-top: -100px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.sub-thankyouHeading p,
.sub-thankyouHeading .socialmedia {
    flex-basis: 100%;
}

.sub-thankyouHeading p {
    font-size: 1.5rem;
    text-align: center;
}



/* review */

.reviewmaincontainer {
    width: 100%;
    margin: auto;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.review-container {
    flex: 1;
    align-self: stretch;
    flex-basis: calc(25% - 20px);
    background-color: wheat;
    border-radius: 20px;
    box-shadow: 5px 10px var(--main-color);
    padding: 20px;
}

.review-name {
    display: flex;
    align-items: center;
    gap: 15px;
}

.name-icon {
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.review-name p {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
}


.star-content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.review-content {
    width: 100%;
    height: auto;
}


.review-content p {
    font-size: 1.5rem;
    padding: 5px;
}
