*,
dl,
ol,
ul {
    padding: 0;
    margin: 0
}

a,
img {
    transition: .4s
}

* {
    box-sizing: border-box;
}

:root {
    --first-clr: #1a2c9c;
    --second-clr: #be1f73;
}

@font-face {
    font-family: 'Lucida Bright';
    src: url('../fonts/LucidaBright-Demi.woff2') format('woff2'),
        url('../fonts/LucidaBright-Demi.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



li {
    list-style: none
}

li,
p {
    font-family: 'Montserrat';
    font-size: 16px;
    color: #171717;
    line-height: 1.7;
    font-weight: 500;
    transition: .4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lucida Bright';
    color: #000;
    line-height: 1.4;
    font-weight: bold;
    transition: .4s ease;
}

a {
    font-family: 'Montserrat';
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .1px;
    color: #000;
}

.container {
    max-width: 1230px
}

.bg-color {
    background-color: #f3f7fa
}

img {
    max-width: 100%
}

.padd {
    padding: 60px 0
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20%;
}

.top-cont a i {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: #fff;
    border-radius: 100%;
    color: var(--second-clr);
}

.top-cont {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-icons ul {
    display: flex;
    align-items: center;
}

.social-icons ul li a {
    color: var(--first-clr);
    font-size: 17px;
    margin: 0 5px;
}

.top-bar {
    background-color: #ffffff;
    padding: 10px 0;
}

.top-cont a {
    /* color: white; */
}

a.navbar-brand {
    margin: 0;
    width: 200px;
    height: auto;
    background: #fff;
    padding: 10px;
    position: absolute;
    top: -69px;
    clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
}

a.navbar-brand img {
    width: 100%;
    height: 100%;
    padding: 10px;
}

header.header {
    background: #fff;
}

header.header.sticky {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 99;
}

.sticky a.navbar-brand {
    width: 165px;
    top: -48px;
}

.navbar-expand-lg .navbar-nav li a.nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
}

ul.navbar-nav.mx-auto.ps-5 {
    padding-left: 5rem !important;
}

.bottom-bar .nav-btn a {
    background-image: unset;
    background: var(--first-clr);
}


.nav-btn a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgb(216, 46, 136) 0%, rgb(174, 21, 102) 100%);
    border: 1px solid var(--second-clr);
    cursor: pointer;
}

/* Hover Effect */
.nav-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(216, 46, 136, 0.5);
}

/* Hover Gradient Animation */
.nav-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease-in-out;
}

.nav-btn a:hover::before {
    left: 100%;
}

/* Active Click Effect */
.nav-btn a:active {
    transform: scale(0.95);
    box-shadow: 0 5px 10px rgba(216, 46, 136, 0.3);
}


/* banner  */

.banner-sec {
    position: relative;
    overflow: hidden;
}

.slide {
    position: relative;
    background-size: cover;
}

.banner-sec .container {
    position: relative;
}

@keyframes fadeScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.banner-sec .container:before {
    position: absolute;
    content: "";
    width: 950px;
    height: 920px;
    background: var(--first-clr);
    border-radius: 50%;
    left: -25%;
    top: -33%;
    z-index: -1;
    opacity: 0;
    animation: fadeScaleIn 1s ease-in-out forwards;
}


@keyframes borderExpand {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
        border-width: 0;
    }

    100% {
        opacity: 0.4;
        transform: scale(1) rotate(360deg);
        border-width: 79px;
    }
}

.banner-sec .container:after {
    position: absolute;
    content: "";
    width: 370px;
    height: 370px;
    background: transparent;
    border-radius: 50%;
    right: -18%;
    bottom: -19%;
    z-index: -1;
    border: 79px solid var(--first-clr);
    opacity: 0;
    animation: borderExpand 1.2s ease-out forwards;
}


.slide__content--headings h2 {
    font-size: 43px;
    margin: 10px 0 20px;
    color: #fff;
    text-transform: capitalize;
}

.slide__content--headings p {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
}

.slide__content--headings .animated {
    transition: all 0.5s ease;
}


.slider [data-animation-in] {
    transition: opacity 0.5s ease 0.3s;
}

.slide__content .nav-btn a {
    /* background: var(--second-clr); */
    /* color: #ffffff; */
    /* border: 1px solid var(--second-clr); */
}

.slide__content {
    padding: 110px 0;
    width: 100%;
}

.bottom-bar {
    padding: 10px 0;
    background: var(--second-clr);
}

span.title-span {
    display: inline-block;
    padding: 6px 15px;
    background-image: -webkit-linear-gradient(90deg, rgb(216, 46, 136) 0%, rgb(174, 21, 102) 100%);
    color: white;
    border-radius: 300px;
    font-family: 'Montserrat';
}

.banner-btns {
    display: flex;
    gap: 20px;
}

.banner-btns .nav-btn:last-child a {
    background: transparent;
    border: 1px solid white;
}

/* about sec  */

h1.title,
h2.title {
    font-size: 2.5rem;
    color: var(--first-clr);
}

h1.title span,
h2.title span {
    color: var(--second-clr);
}

.about-left {
    position: relative;
    width: 90%;
}

.ab-img {
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
}

.ab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-cont {
    width: 180px;
    height: 180px;
    display: grid;
    place-content: center;
    border-radius: 100%;
    background: var(--second-clr);
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 0;
    animation: floating 3s infinite ease-in-out;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-flex {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.ab-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-flex img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 2px;
}

.service-sec {
    background-image: -moz-linear-gradient(90deg, rgb(40, 60, 184) 0%, rgb(27, 44, 158) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(40, 60, 184) 0%, rgb(27, 44, 158) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(40, 60, 184) 0%, rgb(27, 44, 158) 100%);

}

.service-box {
    position: relative;
    width: 95%;
    overflow: hidden;
    border-radius: 15px;
    background: var(--second-clr);
    text-align: center;
    /* padding: 0 0 20px; */
    margin: 0 auto;
}

.ser-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ser-text {
    position: relative;
    margin-top: -30px;
    padding: 0 15px 15px;
}

.service-box h3 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: white;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp:1;
    -webkit-box-orient: vertical;
}

.service-box p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limits the text to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
}

.ser-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    text-decoration: underline;
}

.ser-arrow a i {
    font-size: 14px;
    transition: .4s ease;
}

.ser-arrow a:hover i {
    transform: translateX(5px);
}

.ser-icon {
    width: 80px;
    height: 80px;
    display: grid;
    place-content: center;
    background-color: var(--first-clr);
    border-radius: 100%;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    top: -40px;
}

.ser-main-img {
    position: relative;
}

.service-box:hover img {
    transform: scale(1.1);
}

.service-box:hover {
    background: white;
}

.service-box:hover h3,
.service-box:hover a {
    color: var(--first-clr);
}

.service-box:hover .ser-icon {
    background-color: var(--second-clr);
}

.ser-img {
    overflow: hidden;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
}

ul.slick-dots li button {
    width: 10px;
    height: 10px;
    border: none;
    margin: 0 4px;
    font-size: 0;
    border-radius: 100%;
    transition: .4s ease;
}

ul.slick-dots li.slick-active button {
    background: var(--second-clr);
    transform: scale(1.3);
}

.process-steps {
    margin-top: 35px;
    position: relative;
    z-index: 9;
}

.process-steps:before {
    position: absolute;
    content: "";
    left: 0;
    top: 15px;
    height: 1px;
    width: 100%;
    background-color: #ECECEC;
    z-index: -1;
}

.steps {
    text-align: center;
}

.num {
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    background: #ffffff;
    border-radius: 100%;
    border: 1px solid var(--second-clr);
    margin: 0 auto 30px;
    font-family: 'Lucida Bright';
    color: var(--first-clr);
    font-size: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

.process-icon {
    width: 90px;
    height: 90px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    border-radius: 100%;
    margin: 0 auto 20px;
    transition: .4s ease;
}

.steps h5 {
    color: var(--first-clr);
	font-size: 17px;
}

.steps:hover .process-icon {
    background: var(--second-clr);
}

.steps:hover h5 {
    color: var(--second-clr);
}

.process-sec {
    background-image: url(../imgs/pattern-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}


.home-form-sec {
    background-image: url(../imgs/whychoose-bg.jpg);
    background-size: cover;
    overflow: hidden;
}

.home-form {
    width: 90%;
    margin: auto;
    background: white;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    position: relative;
    bottom: -60px;
}

.form-box input, .form-box textarea , .form-box select {
    border: none;
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #cdcdcd;
    outline: none;
    background: #fff;
}


.home-form h4 {
    text-align: center;
    background: var(--first-clr);
    color: #fff;
    padding: 12px 20px;
    margin-bottom: 30px;
}

.home-form form {
    padding: 0 40px 40px;
}

.form-box input[type="submit"] {
    border: none;
    background: var(--first-clr);
    border-radius: 30px;
    font-size: 18px;
    color: white;
}

.icon-flexes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 0;
    width: 90%;
}

.icon-box {
    width: 150px;
    height: 150px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    border-radius: 100%;
    text-align: center;
    padding: 10px;
}

span.title-span.form-span {
    background: var(--first-clr);
}

.blog-box {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-img {
    width: 100%;
    height: 503px;
    position: relative;
}

.blog-text {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 9;
    padding: 0 15px 15px;
}

.blog-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, #1a2c9c, transparent);
    bottom: 0;
    z-index: 9;
}

.blog-text h3 {
    color: white;
    font-size: 1.5rem;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limits the text to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ser-arrow.blog-arrow a {
    justify-content: start;
}

.blog-text .date {
    color: white;
}

.blog-flex {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid var(--second-clr);
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: rgb(190 31 115) -6px 6px 0px;
    align-items: center;
    transition: .4s ease;
}

.bl-img {
    width: 40%;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
}

.bl-text {
    width: 55%;
}

.bl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-2 i {
    color: var(--second-clr);
}

.date-2 {
    color: #474747;
    font-weight: 500;
    margin: 10px 0;
}

.bl-text h3 {
    font-size: 1.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limits the text to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--first-clr);
}

.blog-flex:hover {
    border-color: var(--first-clr);
    box-shadow: rgb(26 44 156) -6px 6px 0px;
}

.testimonial-sec {
    background-image: url(../imgs/testimonials-bg.jpg);
    background-size: cover;
}

.testimonial-box {
    width: 100%;
    position: relative;
    margin: 30px 0 0;
}

.test-para {
    background: white;
    padding: 25px;
    border-radius: 20px;
}

.test-para p {
    margin: 0;
    color: var(--first-clr);
    font-style: italic;
}

.test-info {
    display: flex;
    align-items: center;
    margin: 20px 0 0;
    gap: 14px;
}

.t-icon img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 100%;
}

.test-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-slider ul.slick-dots {
    justify-content: end;
}

.testimonial-slider ul.slick-dots li.slick-active button {
    background: var(--first-clr);
}

/* footer  */

.footer {
    padding: 60px 0 20px;
    background-image: -moz-linear-gradient(90deg, rgb(40, 60, 184) 0%, rgb(27, 44, 158) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(40, 60, 184) 0%, rgb(27, 44, 158) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(40, 60, 184) 0%, rgb(27, 44, 158) 100%);
}

.footer-img img {
    width: 170px;
    height: auto;
    margin-bottom: 10px;
}

h4.f-title {
    color: #fff;
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    position: relative;
}

h4.f-title:before {
    position: absolute;
    content: "";
    width: 55px;
    height: 2px;
    background: #fff;
    bottom: 0;
}

.footer-links ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.footer-links ul li a,
.footer p {
    color: #fff;
    font-size: 15px;
}

.footer-links ul li:before {
    position: absolute;
    content: ">";
    /* font-size: 18px; */
    left: 0;
    color: #fff;
    font-weight: bold;
    clip-path: polygon(56% 27%, 100% 50%, 55% 71%, 0% 100%, 17% 51%, 0% 0%);
    content: "";
    background: var(--second-clr);
    width: 10px;
    height: 10px;
    top: 7px;
}

ul.footer-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

ul.footer-box li i {
    width: 30px;
    height: 30px;
    background: var(--second-clr);
    border-radius: 50%;
    margin: 0 5px 0 0;
    color: #ffffff;
    font-size: 14px;
    display: grid;
    place-content: center;
    margin-right: 10px;
}

ul.footer-box li a {
    width: 75%;
    color: #fff;
}

/* footer.footer form input[type="email"] {
    border: none;
    background: transparent;
    width: 80%;
} */

/* footer.footer form {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    width: 100%;
}

footer.footer form input[type="email"]::placeholder {
    color: #fff;
    font-size: 13px;
}

footer.footer form input[type="submit"] {
    width: 25px;
    height: 25px;
    font-size: 0;
    background: var(--second-clr);
    border: none;
    /* border-radius: 100%; */
/* position: relative;
    clip-path: polygon(56% 27%, 100% 50%, 55% 71%, 0% 100%, 17% 51%, 0% 0%);
    transform: rotate(-30deg);
} */


.copyrights {
    padding: 20px 0 0;
    margin: 20px 0 0;
    /* background: var(--first-clr); */
    text-align: center;
    border-top: 1px solid #eee;
    color: white;
}

.copyrights a {
    text-align: center;
    color: #fff;
}

.footer-padding {
    padding-left: 50px;
}

.footer-social ul {
    justify-content: end;
    border-top: 1px solid #cdcdcd;
    padding-top: 15px;
}

.footer-social ul li a {
    margin: 0 10px;
    color: white;
}

/* Inner Pages  */

.inner-sec {
    position: relative;
    padding: 115px 0;
    /* background-image: -webkit-linear-gradient(90deg, rgb(216, 46, 136) 0%, rgb(174, 21, 102) 100%); */
    overflow: hidden;
    z-index: 9;
}


.inner-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    /* Circle size */
    height: 100%;
    background: #000;
    
    /* Circle border color */
    right: 0;
    /* Position to the right */
    bottom: 0;
    /* Adjust vertical position */
    opacity: .5;
    /* Start invisible */
    z-index: -1;
    /* Apply the slide-in animation */
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        /* Start from outside the right side */
        opacity: 0;
        /* Start invisible */
    }

    100% {
        transform: translateX(0);
        /* End at its original position */
        opacity: 1;
        /* Fully visible */
    }
}

.inner-sec h4 {
    color: white;
    font-size: 2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.inner-sec ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.inner-sec ul li a {
    color: white;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.service-page-box .service-box {
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.page-blog .blog-img {
    height: 350px;
}

.page-blog .blog-text h3 {
    font-size: 1.2rem;
}

.contact-box {
  display: flex;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 0px 6px 30px 0px rgb(0 0 0 / 15%);
    padding: 30px 20px;
    border-radius: 10px;
}

.contact-box i {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: var(--first-clr);
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 16px;
}

.contact-flex-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-box h6 {
    color: var(--second-clr);
    font-size: 21px;
}

.contact-form {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.cont-bg {
    padding: 15px 20px;
    background: var(--first-clr);
    text-align: center;
}

.contact-form form {
    padding: 20px 20px;
}

.service-detail {
    width: 100%;
}

.service-sidebar {
    width: 100%;
    position: sticky;
    position: -webkit-sticky;
    top: 100px;
}

.service-list {
    width: 100%;
    padding: 20px;
    border: 1px solid #dcdcda;
    border-radius: 10px;
}


.service-list ul {
    padding: 0;
    margin: 10px 0 0 0;
}

.service-list ul li {
    margin: 0 0 10px 0;
    background-color: #f1f1f1;
    position: relative;
    border-left: 4px solid var(--second-clr);
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    display: flex;
    gap: 10px;
    align-items: center;
}

.service-list li a {
    display: flex;
    padding: 15px;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    z-index: 9;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}


.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--second-clr);
    transition: all 0.5s;
    color: #000;
}

.service-list ul li:hover {
    border-left: 4px solid #bc1e58;
}

.service-list ul li:hover::before {
    width: 100%;
}

.service-list ul li:hover a {
    color: #fff;
}

.detail-text {
    width: 100%;
}

.detail-text h2 {
    font-size: 20px;
    margin: 15px 0 0;
}

.detail-text h3,
.detail-text h4,
.detail-text h1,
.detail-text h5,
.detail-text h6 {
    font-size: 18px;
    margin: 15px 0 0;
}

.detail-text h2 span,
.detail-text h3 span,
.detail-text h4 span,
.detail-text h1 span,
.detail-text h5 span,
.detail-text h6 span {
    color: var(--first-clr);
}

.detail-image {
    overflow: hidden;
}

.detail-image img:hover {
    transform: scale(1.1);
}

.detail-image {
    width: 100%;
    height: 400px;
    margin: 20px 0 0 0;
    border-radius: 10px;
    box-shadow: rgb(99 99 99 / 34%) 0px 2px 8px 0px;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.detail-text p {
    margin: 15px 0 0 0;
}

.detail-text ul {
    /* padding-left: 3%; */
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.detail-text li {
    margin: 13px 0 0 0;
    position: relative;
    padding-left: 20px;
    width: 100%;
    color: #000;
    /*font-style: italic;*/
}

.detail-text li:before {
    content: ">";
    position: absolute;
    color: var(--first-clr);
    background-repeat: no-repeat;
    font-size: 18px;
    left: 0;
    font-weight: bold;
    top: 0;
    font-family: cursive;
}


.detail-text ul li b {
    margin-right: 10px;
    color: var(--second-clr);
}

.service-form {
    width: 100%;
    /* padding: 20px; */
    /* border: 1px solid #dcdcda; */
    border-radius: 20px 20px 0 0;
    margin-top: 30px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-form h4 {
    padding: 15px 20px;
    background: var(--first-clr);
}

.service-form form {
    padding: 20px;
}

.la-event {
    width: 100%;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #dcdcda;
}

.la-event ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.la-event ul li img {
    width: 80px;
    height: 80px;
    max-width: inherit;
    border-radius: 100%;
    object-fit: cover;
    border: 2px solid var(--first-clr);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.evrnt-text p {
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.evrnt-text h5 {
    font-size: 14px;
    margin: 10px 0px;
    /* background: var(--second-clr); */
    color: var(--second-clr);
    /* padding: 8px 10px; */
    display: inline-block;
    border-radius: 30px;
}

.service-formbox {
    width: 100%;
    padding: 30px;
    background-color: #ffffff;
    background-image: url(../imgs/pattern-1.png);
    background-position: center center;
    background-size: cover;
    margin: 40px 0 0 0;
    position: sticky;
    top: 40px;
    border-radius: 20px 20px 0 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-formbox h3 {
    font-size: 22px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ffffff;
    /* color: #fff; */
}

.service-formbox p {
    margin: 0;
    /* color: #ffffff; */
    font-size: 15px;
}

.service-formbox form {
    margin: 20px 0 0 0;
}

.service-input {
    padding: 10px 10px;
    /* height: 40px; */
    width: 100%;
    font-size: 16px;
    color: #000000;
    outline: none;
    border: none;
    background: transparent;
    border-bottom: 1px solid #cb267e;
    /* border-radius: 30px; */
}

.service-submit {
    width: 100%;
    padding: 8px 0;
    background-color: var(--first-clr);
    color: #ffff;
    font-size: 18px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    margin: 20px 0 0 0;
    border-radius: 30px;
}

.service-submit:hover {
    color: #fff;
    background-color: #000;
}

.service-input::placeholder {
    color: rgb(0, 0, 0);
}

.hover-img-effect {
    position: relative;
    /* display: inline-block; */
    overflow: hidden;
    /* border-radius: 10px; */
    /* Optional rounded corners */
}

.hover-img-effect img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease, filter 0.5s ease;
    object-fit: cover;
}

/* Hover Effect */
.hover-img-effect:hover img {
    transform: scale(1.1) rotate(3deg);
    /* Slight zoom & tilt */
    filter: brightness(0.8) contrast(1.2);
    /* Darken & enhance contrast */
}

/* Overlay Effect */
.hover-img-effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hover-img-effect:hover::before {
    opacity: 1;
}

.about-pg-text {
    width: 85%;
}

.ab-pg-img {
    width: 100%;
    height: 440px;
    border-radius: 20px;
}

section {
    overflow-x: clip;
    position: relative;
    z-index: 9;
}

.call-to-action-section {
    position: relative;
    padding: 90px 0;
    background-color: #252727;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.call-to-action-section:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(to right, #000000 0%, rgb(40 40 40 / 29%) 100%);
}

.call-to-action-section h2 {
    position: relative;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
}

.call-to-action-section .text {
    position: relative;
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    max-width: 620px;
    margin: 20px 0;
}

.call-content {
    position: relative;
    width: 70%;
}

.why-box {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D5D5D5;
    padding: 0px 0 25px 0px;
    margin: 25px 0 0;
}

.wh-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.wh-text {
    width: 92%;
}

.why-choose-sec {
    background: #f6f6f6;
}

@keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.bg-img {
    height: 687px;
    left: auto;
    right: 0;
    top: 0;
    width: 842px;
    position: absolute;
    animation: bounce-y 7s infinite;
    z-index: -1;
}

.why-images {
    position: relative;
    width: 100%;
}

.wh-1 {
    width: 80%;
    height: 280px;
    overflow: hidden;
    margin-left: auto;
    border-radius: 20px;
    margin-bottom: 20px;
}

.why-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.wh-2 {
    width: 60%;
    height: 420px;
    overflow: hidden;
    margin-left: auto;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 5px solid #fff;
    position: relative;
    top: -115px;
    right: -45px;
}

.exp-box {
    background-color: rgb(190 31 115 / 45%);
    top: 43%;
    -webkit-box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
    box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
    border-radius: 10px;
    left: 30px;
    max-width: 295px;
    padding: 30px;
    position: absolute;
    z-index: 9;
    animation: bounce-y 7s infinite;
}

.why-box h5 {
    color: var(--first-clr);
}

.career-box {
    padding: 25px;
    overflow: hidden;
    /* border: 2px solid #d52c85; */
    -webkit-transition: 350ms ease all;
    transition: 350ms ease all;
    min-height: auto;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    background: white;
    box-shadow: rgb(26 44 156 / 17%) 0px 2px 8px 0px;
}

.career-box h4 {
    font-size: 21px;
}

.career-box-2 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 15px;
}

.career-box-2 i {
    width: 35px;
    height: 35px;
    background: var(--first-clr);
    display: grid;
    place-content: center;
    border-radius: 100%;
    color: #fff;
}

.career-box-2 h4 {
    font-size: 18px;
    /* width: 75%; */
}

.career-left {
    width: 55%;
}

.career-right {
    width: 40%;
}

.career-box:hover {
    background: var(--second-clr);
}

.career-box:hover h4 , .career-box:hover p {
    color: white;
}

.career-box:hover .nav-btn a {
    background-image: unset;
    background: var(--first-clr);
}

.modal-content.career-content {
    background: var(--second-clr);
}

h5#careerLabel {
    color: white;
}

.modal-content.career-content button.btn-close {
    background: var(--first-clr);
    opacity: 1;
    color: white;
    line-height: 0;
}

.form-box.career-form label {
    color: #fff;
    margin: 0 0 15px;
}

/*.form-box.career-form input[type="file"] {*/
/*    margin-bottom: 0;*/
/*}*/

textarea {
    height: 100px;
}

input[type="radio"] , input[type="checkbox"] {
    width: auto;
    height: auto;
}

.form-box input::placeholder , .form-box textarea::placeholder {
    color: #000;
}

.registration-form {
    width: 80%;
    margin: auto;
    /* padding: 0 35px 35px; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 30px;
    overflow: hidden;
}

.registration-form h4 {
    font-size: 17px;
    color: var(--first-clr);
}

.registration-form h4.text-white {
    padding: 20px 25px;
    background: var(--first-clr);
}

h4.text-white {}

.registration-form form {
    padding: 10px 35px 35px;
}

.registration-form label {
    color: #000;
    font-weight: 500;
    font-family: 'Montserrat';
    font-size: 14px;
    margin-bottom: 5px;
}

.registration-form label span {
    color: red;
}

/*============================*/

.cat-box {
    width: 100%;
    background: #ffffff;
    padding: 30px;
    transition: .4s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    z-index: 9999;
    /* margin-bottom: 25px; */
    border-radius: 10px;
    overflow: hidden;
    min-height: 340px;
}

.cat-icon {
    width: 75px;
    height: 75px;
    background: var(--first-clr);
    display: grid;
    place-content: center;
    border-radius: 100%;
    margin: 20px 0px;
    transition: .4s ease;
    position: relative;
}

.cat-icon img {
    padding: 10px;
    position: relative;
}

.cat-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: .4s ease;
    /* color: #ffffff; */
    position: relative;
}

a.read-mr {
    /* text-decoration: underline; */
    /* color: white; */
    transition: .4s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.cat-box p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    /* color: white; */
    position: relative;
}

.cat-box:hover h3,
.cat-box:hover a.read-mr {
    /* color: var(--secondary-color); */
}

.cat-box:hover .cat-icon {
    background: var(--second-clr);
    transform: scale(1.09);
    position: relative;
    z-index: 9;
}


.cat-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    opacity: 0;
    z-index: -1;
}

.cat-img {
    /* position: relative; */
    /* z-index: 9; */
}

.cat-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, black, transparent);
    opacity: 0;
    z-index: -1;
}

.cat-box:hover:before {
    opacity: 1;
    z-index: 9;
}

.cat-box:hover .cat img {
    opacity: 1;
    z-index: -1;
}

.cat-box:hover h3, .cat-box:hover a.read-mr ,.cat-box:hover p {
    color: #fff;
    position: relative;
    z-index: 9;
}

.cat-box:hover {
    transform: translateY(-30px);
}

.cat-box:hover .cat-img img {
    opacity: 1;
    z-index: -1;
}

a.read-mr i {
    width: 22px;
    height: 22px;
    display: grid;
    place-content: center;
    background: var(--second-clr);
    color: white;
    border-radius: 100%;
    font-size: 12px;
    transition: .4s ease;
}

a.read-mr:hover i {
    transform: translateX(10px);
}

form p {
    margin: 0;
}

.detail-text a {
    color: #be1f73;
    text-decoration: underline;
}


.contact-box>div {
    width: 85%;
}

.contact-box>div a {
    width: 100%;
    display: block;
/*     font-size: 14px; */
    word-break: auto-phrase;
}

.slick-prev, .slick-next {
  background: #be1f73;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-prev:hover, .slick-next:hover {
  background: #000;
}

.ndis-footer-img img {
    width: 99px !important;
    display: inline-block;
    margin-right: 10px
}


/*RESPONSIVE QUERY______*/


@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 991px) {
    
    .container, .container-md, .container-sm {
        max-width: 720px;
    }
    
    .navbar-toggler {
    order: 2;
    background: white;
    border: none !IMPORTANT;
}

.bottom-bar .nav-btn {
    margin-left: auto;
    margin-right: 10px;
}

.top-social.social-icons {
    display: none;
}

.top-bar .container {
    justify-content: end;
}

a.navbar-brand {
    width: 160px;
    top: -40px;
}

.slide__content--headings h2 {
    font-size: 35px;
    width: 60%;
}

.banner-sec .container:before {
    width: 850px;
    height: 850px;
}

.slide__content--headings p span {
    width: 55%;
    display: inline-block;
}

.slide__content {
    width: auto;
}

.sticky a.navbar-brand {
    width: 145px;
    top: -30px;
}

.navbar-collapse {
    position: absolute;
    top: 67px;
    z-index: 99;
    width: 100%;
    left: 0;
    background: var(--second-clr);
}

ul.navbar-nav.mx-auto.ps-5 {
    padding: 0 !important;
}

.process-sec {
    background-size: cover;
}

.home-form {
    bottom: 0;
    margin-top: 20px;
}

.blog-flex {
    margin: 20px 0 0;
}

.test-main-img {
    display: none;
}

.footer-padding {
    padding: 0;
}

section.testimonial-sec .container-fluid {
    max-width: 720px;
}

.col-lg-6.p-5.pb-0.wow.fadeInUp.animated {
    padding: 2rem !important;
}


.about-pg-text {
    width: 100%;
}

    .ps-md-5 {
        padding-left: 0rem !important;
    }
    
.ab-pg-img {
    height: 400px;
    margin: 20px 0;
}

.call-content {
    width: 100%;
}

.why-images {
    width: 90%;
    margin: 20px auto 0;
}

.wh-2 {
    top: -70px;
}    

h4.f-title {
 font-size: 20px;
 margin-top: 10px;
}


.cat-box {
    min-height: auto;
}

.registration-form {
    width: 100%;
}

.inner-sec {
    position: relative;
    padding: 90px 0;
    background-position: top;
}

.padd {
    padding: 40px 0;
}

.detail-image {
    width: 100%;
    height: auto;
}

.la-event {
    margin-top: 30px;
}

.service-sidebar {
    margin-top: 20px;
}







}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 767px) {
    
    h1.title, h2.title {
    font-size: 2rem;
    }
    
    .sticky a.navbar-brand {
        width: 145px;
        top: -39px;
    }
    
.contact-box {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.contact-box i {
    margin-right: 20px;
}

.map iframe {
    width: 100%;
    height: 250px;
}

.slide__content--headings p {
    display: none;
}

.banner-sec .container:before {
    width: 650px;
    height: 650px;
}

.slide__content {
    padding: 90px 0;
}

span.title-span {
    font-size: 11px;
}

.slide__content--headings h2 {
    font-size: 27px;
}

.nav-btn a {
    font-size: 13px;
    padding: 8px 18px;
}

.banner-sec .container:after {
    width: 120px;
    height: 120px;
    border-width: 50px;
}



    

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 575px) {
    
    .ab-img {
    width: 370px;
    height: 370px;
}

.ab-cont {
    width: 150px;
    height: 150px;
    right: 45px;
}

.w-75 {
    width: 100% !important;
}

.sticky a.navbar-brand {
        width: 145px;
        top: -39px;
    }

.home-form {
    width: 100%;
}

a.navbar-brand {
    width: 130px;
    top: -30px;
}

.top-cont a:last-child {
    display: none;
}

.navbar-collapse {
    top: 55px;
}

.sticky a.navbar-brand {
    width: 130px;
    top: -35px;
}

.slide__content {
    padding: 70px 0;
}

.banner-sec .container:before {
    width: 570px;
    height: 570px;
    left: -32%;
    background: #1a2c9cb5;
}

h1.title, h2.title {
    font-size: 1.5rem;
}

li, p {
    font-size: 15px;
}

a {
    font-size: 14px;
}

.process-steps:before {
    background: transparent;
}

.icon-flexes {
    width: 100%;
}

.footer {
    padding: 50px 0 10px;
}

.footer-img img {
    width: 130px;
    height: auto;
}

.footer-social ul {
    justify-content: start;
    border-top: none;
    padding: 0;
}

a.navbar-brand img {
    padding: 5px 0 0;
}

.slide {
    background-position: center;
    background-size: cover;
}
.icon-box {
    width: 130px;
    height: 130px;
}

.ndis-footer-img img {
    width: 70px !important; 
}
	
.call-to-action-section h2 {
   font-size: 1.8rem;
}
	
.call-to-action-section .text {
    font-size: 22px;
}	
	
.wh-2 {
  display: none;
}
	
.mt-5 {
    margin-top: 2rem !important;
}	
	
.inner-sec {
    padding: 60px 0;
    background-size: 100%;
}
	
.inner-sec h4 {
   font-size: 1.8rem;
}

.navbar-expand-lg .navbar-nav li a.nav-link {
    padding: 8px 10px;
    font-size: 14px;
    border-bottom: 1px solid #cdcdcd57;
}	
	

}

@media only screen and (max-width: 480px) {
    
    
    
    
    

}

@media only screen and (max-width: 414px) {
	
	.ab-cont {
    right: 0;
}

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}