@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

p {
    font-family: "Poppins", serif !important;
}

.nav-link {
    font-weight: 900 !important;
}

.noMargin {
    margin: 0 !important;
}

.commonImg {
    width: 100%;
    height: auto;
}

::selection {
    color: #fff;
    background: #EC523F;
}

.navbar-brand {
    color: #124265;
    font-size: 30px;
    font-weight: 00;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-text {
    margin-left: 20px;
}

.headerNoAnch {
    background-color: #2487ce;
    padding: 10px 20px !important;
    /* font-size: 17px; */
    font-weight: 300;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    /* border: 3px solid #a72c48; */
    transition: all 0.3s ease-in-out;
}

.headerNoAnch:hover {
    /* color: #fff !important; */
    background-color: #206ea6;
    /* letter-spacing: 1px; */
}

.nav-link {
    position: relative;
    color: #000 !important;
    font-weight: 500;
    padding: 0px 15px !important;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.nav-link::before {
    position: absolute;
    content: "";
    border: 2px solid #EC523F;
    bottom: -10px;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all ease-in-out 0.3s
}

.nav-link:hover::before {
    width: 50%;
    opacity: 1;
}

.nav-link:hover {
    color: #EC523F !important;
}

.navbar {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navLogo {
    width: 150px;
}

.left-right {
    color: #000 !important;
}

.oneSec {
    margin-top: 75px;
}

.fadeC {
    /* background-color: rgba(0, 0, 0, 0.24); */
    /* background-color: rgba(255, 255, 255, 0.3); */
    background-color: rgba(0, 0, 0, 0.5);
    /* background-image: linear-gradient(to right, #f30000, #f30000, #f30000, #f30000, #f30000, #fd1b37, #ff375c, #ff507c, #fe84b9, #f4b3e4, #f0dcfa, #ffffff); */
}

.cContent {
    display: flex;
    flex-direction: column;
    padding: 25px 55px;
    gap: 10px;
    height: 600px;
    justify-content: center;
    align-items: start;
}

.carousel1 {
    background-image: url(images/c1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel2 {
    background-image: url(images/c2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel3 {
    background-image: url(images/c3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel4 {
    background-image: url(images/c4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.cTitle {
    /* color: #000; */
    color: #fff;
    /* color: #EC523F; */
    font-size: 35px;
    font-weight: 600;
    width: 50%;
}

.cPara {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    width: 50%;
}

.cBtnDiv {
    margin-top: 25px
}

.cAnchor {
    text-decoration: none;
    color: #fff;
    background-color: #EC523F;
    padding: 10px 20px;
    border-radius: 8px;
    /* border: 3px solid #a72c48; */
    transition: all 0.3s ease-in-out;
}

.cAnchor:hover {
    color: #fff;
    background-color: #e63a23;
    letter-spacing: 1px;
    /* border: 3px solid #EC523F; */
}

.marginDiv {
    margin: 0px 0px;
}

.paddingY {
    padding: 100px 0px;
}

.twoImg {
    width: 80%;
}

.twoRow {
    margin-top: 50px;
}

.twoRight {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 25px;
}

.twoTitle {
    color: #000;
    font-weight: 600;
    font-size: 40px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.twoTitle:hover {
    color: #EC523F;
}

.twoTitle::before {
    /* position: absolute;
    content: "";
    border: 2px solid #EC523F;
    bottom: -10px;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all ease-in-out 0.3s;
    transform-origin: bottom right; */
    transform-origin: bottom right;
    content: '';
    position: absolute;
    width: 30%;
    transform: scaleX(0);
    height: 2px;
    bottom: -10px;
    left: 0;
    background-color: #EC523F;
    transition: transform 0.25s ease-out;
}

.twoTitle:hover::before {
    /* width: 50%;
    opacity: 1;
    transform-origin: bottom left; */
    transform: scaleX(1);
    transform-origin: bottom left;
}

.twoPara {
    color: #000;
}

.twoTitleCenter {
    color: #000;
    font-weight: 600;
    font-size: 40px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.twoTitleCenter:hover {
    color: #EC523F;
}

.twoTitleCenter::before {
    position: absolute;
    content: "";
    border: 2px solid #EC523F;
    bottom: -10px;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all ease-in-out 0.3s
}

.twoTitleCenter:hover::before {
    width: 18%;
    opacity: 1;
}

.three {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.threeMainBox {
    margin-top: 25px;
}

.threeLeft {
    height: 100%;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.twoBoxShadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 25px;
}

.four {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fourBoxesMain {
    margin-top: 25px;
}

.fourBox {
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all 0.3s ease-in-out;
}

.fourBoxContent {
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    background-color: aliceblue;
    padding: 20px 20px;
    gap: 20px;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.fourBox:hover {
    background-image: linear-gradient(to right, #e07a36, #e58b4f, #ea9c68, #eead80, #f1bd9a);
}

.fourBoxContent:hover {
    background-color: transparent;
}

.commonCardImg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.fourBox:hover .commonCardImg {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.fourAnchor {
    text-decoration: none;
    color: #fff;
    padding: 4px 10px;
    background-color: #EC523F;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
}

.fourAnchor:hover {
    color: #fff;
    background-color: #e3260d;
    letter-spacing: 0.5px;
}

.fourBoxPara {
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

/* .fourBox:hover .fourBoxPara{
    color: #ffffffff;
} */

.twoTitleCenter2 {
    color: #000;
    font-weight: 600;
    font-size: 40px;
    position: relative;
    /* display: inline-block; */
    transition: all 0.3s ease-in-out;
}

.twoTitleCenter2:hover {
    color: #EC523F;
}

.twoTitleCenter2::before {
    position: absolute;
    content: "";
    border: 2px solid #EC523F;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    opacity: 1;
    transition: all ease-in-out 0.3s
}

.twoTitleCenter2:hover::before {
    opacity: 0;
    width: 0%;
}

.five {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.fiveRow {
    margin-top: 25px;
}





/* =======================  carousel code  ======================== */

.carousel-container {
    border-radius: 30px;
    overflow: hidden;
    max-width: 700px;
    position: relative;
    box-shadow: 0 0 60px -20px #223344;
    /* margin: auto; */
    z-index: 0;
}

img.slider-img {
    width: 100%;
    /* height: 414px; */
    height: 100%;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

.mySlides img {
    display: block;
    width: 100%;
}

/* image gradient overlay [optional] */
/*  .mySlides::after {
  content: "";
  position: absolute;
  inset: 0;
    background-image: linear-gradient(-45deg, rgba(110, 0, 255, .1), rgba(70, 0, 255, .2));
} */

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    border-radius: 0 8px 8px 0;
    background: rgba(173, 216, 230, 0.1);
    user-select: none;
    text-decoration: none;
}

.next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.prev:hover,
.next:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(173, 216, 230, 0.3);
}

/* Caption text */
.text {
    color: #f2f2f2;
    background-color: rgba(10, 10, 20, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}

/* Number text (1/3 etc) */
.number {
    color: #f2f2f2;
    font-size: 16px;
    background-color: rgba(173, 216, 230, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 8px 12px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
}

/* The dots/bullets/indicators */
.dots {
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin: 0 4px;
    background-color: rgba(173, 216, 230, 0.2);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.activee,
.dots:hover {
    background-color: rgba(240, 155, 57, 0.79);
}

/* transition animation */
.animate {
    -webkit-animation-name: animate;
    -webkit-animation-duration: 1s;
    animation-name: animate;
    animation-duration: 2s;
}

@keyframes animate {
    from {
        transform: scale(1.1) rotateY(10deg);
    }

    to {
        transform: scale(1) rotateY(0deg);
    }
}

/* =======================  carousel code  ======================== */

.sixRow {
    margin-top: 50px;
}

.contactGrad {
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all 0.3s ease-in-out;
}

.contactContent {
    display: flex;
    flex-direction: row;
    background-color: aliceblue;
    gap: 25px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    border-radius: 20px;
    height: 100px;
}

.contactIconDiv {
    /* background-color: cadetblue; */
    /* width: 25%; */
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 5px;
}

.contactIcon {
    background-color: #e58b4f;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50px;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cantactImg {
    width: 150px;
}

.contactSmPara {
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
}

.contactLgPara {
    font-size: 20px;
    font-weight: 600;
}

.paymentImg {
    width: 70px;
}

.contactDetailDiv {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* background-color: aqua; */
    justify-content: center;
    align-items: start;
}

.contactGrad:hover .contactContent {
    background-color: transparent;
}

.contactGrad:hover .contactIcon {
    background-color: #fff;
    color: #e58b4f;
}

.contactGrad {
    background-image: linear-gradient(to right, #e07a36, #e58b4f, #ea9c68, #eead80, #f1bd9a);
}

.contactGrad:hover {
    transform: translateY(-10px);
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    align-items: center;
    padding: 20px 30px;
    background-color: #e07a36;
    /* background-image: linear-gradient(to right, #e07a36, #e28547, #e49058, #e69a68, #e7a579); */
}

.footerPara {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.ssLink {
    color: #fff;
    text-decoration: none;
}

.topDiv {
    position: fixed;
    bottom: 55px;
    right: 5px;
    color: #fff;
    font-weight: 500;
    background-color: red;
    z-index: 5;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding: 5px 8px;
    border-radius: 5px;
    /* display: none; */
}

@media screen and (min-width: 425px) and (max-width: 768px) {

    .topDiv {
        bottom: 80px;
    }
}

@media screen and (max-width: 425px) {

    .topDiv {
        bottom: 25px;
    }
}










@media screen and (max-width:768px) and (min-width:426px) {
    /* Tablet width */

    .marginDiv {
        margin: px 0px;
    }

    .nav-link {
        padding: 5px 15px !important;
    }

    .nav-link::before {
        position: absolute;
        content: "";
        border: none;
    }

    .cTitle {
        font-size: 30px;
        width: 70%;
    }

    .cPara {
        font-size: 16px;
        width: 70%;
    }

    .twoImg {
        width: 60%
    }

    .twoTitle {
        font-size: 30px;
    }

    .twoTitle::before {
        width: 20%;
    }

    .carousel1 {
        background-image: url(images/tablet_c1.jpg);
    }

    .carousel2 {
        background-image: url(images/tablet_c2.jpg);
    }

    .carousel3 {
        background-image: url(images/tablet_c3.jpg);
    }

    .carousel4 {
        background-image: url(images/tablet_c4.jpg);
    }

    .fiveRow {
        margin-top: 15px;
    }

    .contactContent {
        display: flex;
        flex-direction: column;
        gap: 15px;
        height: 185px;
    }

    .cantactImg {
        width: 100px;
    }

    .contactLgPara {
        font-size: 17px;
    }

    .contactSmPara {
        font-size: 15px;
    }

}



@media (max-width: 640px) {
    .carouselButton {
        display: none;
    }

    /* Mobile width */
    .nav-link::before {
        position: absolute;
        content: "";
        border: none;
    }

    .oneSec {
        /* width: 100vw; */
        height: 500px !important;
        background-color: aqua;
    }

    .twoImg {
        width: 100%;
    }

    .twoPara {
        font-size: 15px;
    }

    .twoRow {
        margin-top: 30px;
    }

    /* .carousel-inner{height: 100%;}
    .carousel-item{height: 100%;} */

    .cContent {
        padding: 10px 10px;
        gap: 25px;
        height: 600px;
    }

    .cTitle {
        font-size: 28px;
        width: 100%;
    }

    .cPara {
        font-size: 14px;
        width: 100%;
    }

    .carousel1 {
        background-image: url(images/mobile_c1.jpg);
    }

    .carousel2 {
        background-image: url(images/mobile_c2.jpg);
    }

    .carousel3 {
        background-image: url(images/mobile_c3.jpg);
    }

    .carousel4 {
        background-image: url(images/mobile_c4.jpg);
    }

    .fiveRow {
        margin-top: 15px;
    }

    .carousel-container {
        border-radius: 20px;
        max-width: 666px !important;
    }

    .number {
        font-size: 11px;
        border-radius: 5px;
        padding: 5px 10px;
    }

    .prev,
    .next {
        padding: 10px;
        font-size: 20px;
        border-radius: 8px;
    }

    .text {
        color: #f2f2f2;
        /* background-color: rgba(10, 10, 20, 0.1); */
        /* backdrop-filter: blur(6px); */
        border-radius: 8px;
        font-size: 15px;
        padding: 5px 10px;
        bottom: 35px;
        /* position: absolute; */
        /* left: 50%; */
        /* transform: translate(-50%); */
        /* text-align: center; */
    }

    .dots-container {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translate(-50%);
    }

    /* The dots/bullets/indicators */
    .dots {
        height: 10px;
        width: 10px;
        margin: 0 4px;
    }

    .twoTitle {
        font-size: 30px;
    }

    .twoTitle::before {
        width: 30%;
    }

    .twoTitleCenter,
    .twoTitleCenter2 {
        font-size: 33px;
    }

    .twoTitleCenter:hover::before {
        width: 50%;
    }

    .twoTitleCenter2:hover::before {
        width: 90%;
    }

    .contactContent {
        display: flex;
        flex-direction: column;
        gap: 15px;
        height: 160px;
    }

    .cantactImg {
        width: 100px;
    }

    .contactLgPara {
        font-size: 17px;
    }

    .contactSmPara {
        font-size: 15px;
    }

    .footer {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        /* height: 100px; */
        height: auto;
        padding: 15px 30px;
        gap: 15px;
        margin: 0 !important;
    }

    .footerPara {
        font-size: 16px;
        letter-spacing: 0.3px;
    }

    .nav-link {
        padding: 10px 15px !important;
    }
}

.servicesBg {
    background: linear-gradient(to right, #f2f6fa, #dce3f1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 0;
}